Class Reference for E1039 Core & Analysis Software
PHNodeIterator.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 PHNodeIterator
7 //
8 // Author: Matthias Messer
9 //-----------------------------------------------------------------------------
10 #include "PHNodeIterator.h"
11 #include "PHPointerListIterator.h"
12 #include "PHNodeOperation.h"
13 #include "phooldefs.h"
14 
15 #include <boost/algorithm/string.hpp>
16 
17 #include <iostream>
18 #include <vector>
19 
20 using namespace std;
21 
23  currentNode(node)
24 {}
25 
27  currentNode(NULL)
28 {}
29 
32 {
35  PHNode *thisNode;
36  while ((thisNode = iter()))
37  {
38  subNodeList.append(thisNode);
39  }
40  return subNodeList;
41 }
42 
43 void
45 {
46  currentNode->print();
47 }
48 
49 PHNode*
50 PHNodeIterator::findFirst(const string& requiredType, const string& requiredName)
51 {
53  PHNode *thisNode;
54  while ((thisNode = iter()))
55  {
56  if (thisNode->getType() == requiredType && thisNode->getName() == requiredName)
57  {
58  return thisNode;
59  }
60  else
61  {
62  if (thisNode->getType() == "PHCompositeNode")
63  {
64  PHNodeIterator nodeIter(static_cast<PHCompositeNode*>(thisNode));
65  PHNode *nodeFoundInSubTree = nodeIter.findFirst(requiredType.c_str(), requiredName.c_str());
66  if (nodeFoundInSubTree) return nodeFoundInSubTree;
67  }
68  }
69  }
70  return 0;
71 }
72 
73 PHNode*
74 PHNodeIterator::findFirst(const string& requiredName)
75 {
77  PHNode *thisNode;
78  while ((thisNode = iter()))
79  {
80  if (thisNode->getName() == requiredName)
81  {
82  return thisNode;
83  }
84  else
85  {
86  if (thisNode->getType() == "PHCompositeNode")
87  {
88  PHNodeIterator nodeIter(static_cast<PHCompositeNode*>(thisNode));
89  PHNode *nodeFoundInSubTree = nodeIter.findFirst(requiredName.c_str());
90  if (nodeFoundInSubTree)
91  {
92  return nodeFoundInSubTree;
93  }
94  }
95  }
96  }
97  return 0;
98 }
99 
100 PHBoolean
101 PHNodeIterator::cd(const string &pathString)
102 {
103  PHBoolean success = True;
104  if (pathString.empty())
105  {
106  while (currentNode->getParent())
107  {
108  currentNode = static_cast<PHCompositeNode*>(currentNode->getParent());
109  }
110  }
111  else
112  {
113  vector<string> splitpath;
114  boost::split(splitpath, pathString, boost::is_any_of(phooldefs::nodetreepathdelim));
115  PHBoolean pathFound;
116  PHNode *subNode;
117  int i=0;
118  for (vector<string>::const_iterator iter = splitpath.begin(); iter != splitpath.end(); ++iter)
119  {
120  i++;
121  if (*iter == "..")
122  {
123  if (currentNode->getParent())
124  {
125  currentNode = static_cast<PHCompositeNode*>(currentNode->getParent());
126  }
127  else
128  {
129  success = False;
130  }
131  }
132  else
133  {
135  pathFound = False;
136  while ((subNode = subNodeIter()))
137  {
138  if (subNode->getType() == "PHCompositeNode" && subNode->getName() == *iter)
139  {
140  currentNode = static_cast<PHCompositeNode*>(subNode);
141  pathFound = True;
142  }
143  }
144  if (!pathFound)
145  {
146  success = False;
147  }
148  }
149  }
150  }
151  return success;
152 }
153 
154 PHBoolean
156 {
157  return currentNode->addNode(newNode);
158 }
159 
160 void
162 {
163  operation(currentNode);
165  PHNode *thisNode;
166  while ((thisNode = iter()))
167  {
168  if (thisNode->getType() == "PHCompositeNode")
169  {
170  PHNodeIterator subNodeIter(static_cast<PHCompositeNode*>(thisNode));
171  subNodeIter.forEach(operation);
172  }
173  else
174  {
175  operation(thisNode);
176  }
177  }
178 }
179 
180 void
182 {
183  forEach(operation);
184 }
#define NULL
Definition: Pdb.h:9
PHPointerList< PHNode > subNodes
void print(const std::string &="")
PHBoolean addNode(PHNode *)
void for_each(PHNodeOperation &)
PHPointerList< PHNode > & ls()
PHBoolean addNode(PHNode *)
PHBoolean cd(const std::string &pathString="")
PHPointerList< PHNode > subNodeList
PHCompositeNode * currentNode
PHNode * findFirst(const std::string &, const std::string &)
void forEach(PHNodeOperation &)
Definition: PHNode.h:15
const std::string getType() const
Definition: PHNode.h:31
const std::string getName() const
Definition: PHNode.h:32
PHNode * getParent() const
Definition: PHNode.h:25
PHBoolean append(T *)
static const std::string nodetreepathdelim
Definition: phooldefs.h:9
int PHBoolean
Definition: phool.h:13
static const int True
Definition: phool.h:10
static const int False
Definition: phool.h:9