Class Reference for E1039 Core & Analysis Software
PHCompositeNode.cc
Go to the documentation of this file.
1 //-----------------------------------------------------------------------------
2 //
3 // The PHOOL's Software
4 // Copyright (C) PHENIX collaboration, 1999
5 //
6 // Implementation of class PHCompositeNode
7 //
8 //-----------------------------------------------------------------------------
9 #include "PHCompositeNode.h"
10 #include "PHPointerListIterator.h"
11 #include "phooldefs.h"
12 
13 #include <iostream>
14 
15 using namespace std;
16 
18 {}
19 
20 PHCompositeNode::PHCompositeNode(const string& name) :
21  PHNode(name,"PHCompositeNode"),
22  deleteMe(0)
23 {
24  type = "PHCompositeNode";
25 }
26 
28 {
29  // we need to mark this node to be to deleted
30  // The recursive taking out of deleted subnodes via
31  // forgetMe interferes with the way the PHPointerList::clearAndDestroy()
32  // works but it has to be executed in case the PHCompositeNode is
33  // a parent and supposed to stay. Then the deleted node has to take itself
34  // out of the node list
35  deleteMe = 1;
37 }
38 
41 {
42  //
43  // Check all existing subNodes for name-conflict.
44  //
46  PHNode* thisNode;
47  while ((thisNode = nodeIter()))
48  {
49  if (thisNode->getName() == newNode->getName())
50  {
51  cout << PHWHERE << "Node " << newNode->getName()
52  << " already exists" << endl;
53  return False;
54  }
55  }
56  //
57  // No conflict, so we can append the new node.
58  //
59  newNode->setParent(this);
60  return (subNodes.append(newNode));
61 }
62 
63 void
65 {
67  PHNode* thisNode;
68  while ((thisNode = nodeIter()))
69  {
70  if (!thisNode->isPersistent())
71  {
72  subNodes.removeAt(nodeIter.pos());
73  --nodeIter;
74  delete thisNode;
75  }
76  else
77  {
78  thisNode->prune();
79  }
80  }
81 }
82 
83 void
85 {
86 // if this PHCompositeNode is supposed to be deleted,
87 // do not remove the child from the list,
88 // otherwise the clearanddestroy() bookkeeping gets
89 // confused and deletes only every other node
90  if (deleteMe)
91  {
92  return;
93  }
95  PHNode* thisNode;
96  while (child && (thisNode = nodeIter()))
97  {
98  if (thisNode == child)
99  {
100  subNodes.removeAt(nodeIter.pos());
101  child = 0;
102  }
103  }
104 }
105 
106 bool
107 PHCompositeNode::write(PHIOManager * IOManager, const std::string &path)
108 {
109  string newPath = name;
110  if (!path.empty())
111  {
112  newPath = path + phooldefs::branchpathdelim + name;
113  }
115  PHNode* thisNode;
116  bool success = true;
117  while ((thisNode = nodeIter()))
118  {
119  if (!(thisNode->write(IOManager, newPath)))
120  {
121  success = false;
122  }
123  }
124  return success;
125 }
126 
127 void
128 PHCompositeNode::print(const string &path)
129 {
130  string newPath = " " + path;
131  cout << path << name << " (" << type << ")/" << endl;
133  PHNode* thisNode;
134  while ((thisNode = nodeIter()))
135  {
136  thisNode->print(newPath);
137  }
138 }
virtual void forgetMe(PHNode *)
virtual void prune()
PHPointerList< PHNode > subNodes
void print(const std::string &="")
virtual bool write(PHIOManager *, const std::string &="")
PHCompositeNode(const std::string &)
PHBoolean addNode(PHNode *)
virtual ~PHCompositeNode()
Definition: PHNode.h:15
virtual void print(const std::string &)=0
virtual bool write(PHIOManager *, const std::string &="")=0
const std::string getName() const
Definition: PHNode.h:32
std::string type
Definition: PHNode.h:55
PHBoolean isPersistent() const
Definition: PHNode.h:27
void setParent(PHNode *p)
Definition: PHNode.h:35
std::string name
Definition: PHNode.h:57
virtual void prune()=0
void clearAndDestroy()
T * removeAt(size_t)
PHBoolean append(T *)
static const std::string branchpathdelim
Definition: phooldefs.h:8
int PHBoolean
Definition: phool.h:13
#define PHWHERE
Definition: phool.h:23
static const int False
Definition: phool.h:9