File: XdmfItem.cpp

package info (click to toggle)
xdmf 3.0%2Bgit20160803-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 35,388 kB
  • ctags: 36,627
  • sloc: ansic: 265,382; cpp: 162,889; python: 10,976; f90: 1,378; yacc: 687; fortran: 464; xml: 200; java: 187; lex: 125; makefile: 82; sh: 28
file content (155 lines) | stat: -rw-r--r-- 4,888 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*****************************************************************************/
/*                                    XDMF                                   */
/*                       eXtensible Data Model and Format                    */
/*                                                                           */
/*  Id : XdmfItem.cpp                                                        */
/*                                                                           */
/*  Author:                                                                  */
/*     Kenneth Leiter                                                        */
/*     kenneth.leiter@arl.army.mil                                           */
/*     US Army Research Laboratory                                           */
/*     Aberdeen Proving Ground, MD                                           */
/*                                                                           */
/*     Copyright @ 2011 US Army Research Laboratory                          */
/*     All Rights Reserved                                                   */
/*     See Copyright.txt for details                                         */
/*                                                                           */
/*     This software is distributed WITHOUT ANY WARRANTY; without            */
/*     even the implied warranty of MERCHANTABILITY or FITNESS               */
/*     FOR A PARTICULAR PURPOSE.  See the above copyright notice             */
/*     for more information.                                                 */
/*                                                                           */
/*****************************************************************************/

#include "XdmfInformation.hpp"
#include "XdmfItem.hpp"
#include "XdmfVisitor.hpp"
#include "XdmfError.hpp"
#include "string.h"

XDMF_CHILDREN_IMPLEMENTATION(XdmfItem, XdmfInformation, Information, Key)

XdmfItem::XdmfItem() :
  mIsChanged(true)
{
}

XdmfItem::XdmfItem(XdmfItem &refItem) :
  mInformations(refItem.mInformations),
  mIsChanged(true)
{
}

XdmfItem::~XdmfItem()
{
}

bool
XdmfItem::getIsChanged()
{
  return mIsChanged;
}

void
XdmfItem::setIsChanged(bool status)
{
  // No change if status is the same
  if (mIsChanged != status)
  {
    mIsChanged = status;
    // If it was changed all parents should be alerted
    if (status)
    {
      for (std::set<XdmfItem *>::iterator iter = mParents.begin();
           iter != mParents.end();
           ++iter)
      {
        (*iter)->setIsChanged(status);
      }
    }
  }
}

void
XdmfItem::populateItem(const std::map<std::string, std::string> &,
                       const std::vector<shared_ptr<XdmfItem > > & childItems,
                       const XdmfCoreReader * const)
{
  for(std::vector<shared_ptr<XdmfItem> >::const_iterator iter =
        childItems.begin();
      iter != childItems.end();
      ++iter) {
    if(shared_ptr<XdmfInformation> information = 
       shared_dynamic_cast<XdmfInformation>(*iter)) {
      this->insert(information);
    }
  }
}

void
XdmfItem::traverse(const shared_ptr<XdmfBaseVisitor> visitor)
{
  for (unsigned int i = 0; i < mInformations.size(); ++i)
  {
    mInformations[i]->accept(visitor);
  }
}

// C Wrappers

void XdmfItemAccept(XDMFITEM * item, XDMFVISITOR * visitor, int * status)
{
  XDMF_ERROR_WRAP_START(status)
  shared_ptr<XdmfVisitor> visitPointer((XdmfVisitor *)visitor, XdmfNullDeleter());
  ((XdmfItem *)(item))->accept(visitPointer);
  XDMF_ERROR_WRAP_END(status)
}

void XdmfItemFree(void * item)
{
  if (item != NULL) {
    delete ((XdmfItem *)item);
    item = NULL;
  }
}

XDMFINFORMATION * XdmfItemGetInformation(XDMFITEM * item, unsigned int index)
{
  return (XDMFINFORMATION *)((void *)(((XdmfItem *)(item))->getInformation(index).get()));
}

XDMFINFORMATION * XdmfItemGetInformationByKey(XDMFITEM * item, char * key)
{
  return (XDMFINFORMATION *)((void *)(((XdmfItem *)(item))->getInformation(key).get()));
}

unsigned int XdmfItemGetNumberInformations(XDMFITEM * item)
{
  return ((XdmfItem *)(item))->getNumberInformations();
}

void XdmfItemInsertInformation(XDMFITEM * item, XDMFINFORMATION * information, int passControl)
{
  if (passControl == 0) {
    ((XdmfItem *)(item))->insert(shared_ptr<XdmfInformation>((XdmfInformation *)information, XdmfNullDeleter()));
  }
  else {
    ((XdmfItem *)(item))->insert(shared_ptr<XdmfInformation>((XdmfInformation *)information));
  }
}

void XdmfItemRemoveInformation(XDMFITEM * item, unsigned int index)
{
  ((XdmfItem *)(item))->removeInformation(index);
}

void XdmfItemRemoveInformationByKey(XDMFITEM * item, char * key)
{
  ((XdmfItem *)(item))->removeInformation(std::string(key));
}

char * XdmfItemGetItemTag(XDMFITEM * item)
{
  char * returnPointer = strdup(((XdmfItem *)(item))->getItemTag().c_str());
  return returnPointer;
}