Salome HOME
Merge branch 'omu/workloadmanager'
[modules/yacs.git] / src / engine / Visitor.hxx
1 // Copyright (C) 2006-2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __VISITOR_HXX__
21 #define __VISITOR_HXX__
22
23 #include <string>
24 #include <map>
25 #include <list>
26
27 namespace YACS
28 {
29   namespace ENGINE
30   {
31     class Node;
32     class Bloc;
33     class ElementaryNode;
34     class ComposedNode;
35     class ForEachLoop;
36     class ForEachLoopDyn;
37     class OptimizerLoop;
38     class DynParaLoop;
39     class InlineNode;
40     class InlineFuncNode;
41     class Loop;
42     class ForLoop;
43     class Proc;
44     class ServiceNode;
45     class ServerNode;
46     class ServiceInlineNode;
47     class DataNode;
48     class Switch;
49     class WhileLoop;
50     class TypeCode;
51     class TypeCodeObjref;
52     class Container;
53
54     class Visitor
55     {
56     public:
57       Visitor(ComposedNode *root);
58       virtual void visitBloc(Bloc *node) = 0;
59       virtual void visitElementaryNode(ElementaryNode *node) = 0;
60       virtual void visitForEachLoop(ForEachLoop *node) = 0;
61       virtual void visitForEachLoopDyn(ForEachLoopDyn *node) = 0;
62       virtual void visitOptimizerLoop(OptimizerLoop *node) = 0;
63       virtual void visitDynParaLoop(DynParaLoop *node) = 0;
64       virtual void visitForLoop(ForLoop *node) = 0;
65       virtual void visitInlineNode(InlineNode *node) = 0;
66       virtual void visitInlineFuncNode(InlineFuncNode *node) = 0;
67       virtual void visitLoop(Loop *node) = 0;
68       virtual void visitProc(Proc *node) = 0;
69       virtual void visitServiceNode(ServiceNode *node) = 0;
70       virtual void visitServerNode(ServerNode *node) = 0;
71       virtual void visitServiceInlineNode(ServiceInlineNode *node) = 0;
72       virtual void visitSwitch(Switch *node) = 0;
73       virtual void visitWhileLoop(WhileLoop *node) = 0;
74       virtual void visitPresetNode(DataNode *node) = 0;
75       virtual void visitOutNode(DataNode *node) = 0;
76       virtual void visitStudyInNode(DataNode *node) = 0;
77       virtual void visitStudyOutNode(DataNode *node) = 0;
78
79     protected:
80       std::map<std::string, std::string> getNodeProperties(Node *node);
81       std::map<std::string, TypeCode*> getTypeCodeMap(Proc *proc);
82       std::map<std::string, Container*> getContainerMap(Proc *proc);
83       std::list<TypeCodeObjref *> getListOfBases(TypeCodeObjref *objref);
84
85       ComposedNode *_root;
86     };
87   }
88 }
89 #endif