Salome HOME
Copyright update 2020
[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 OptimizerLoop;
37     class DynParaLoop;
38     class InlineNode;
39     class InlineFuncNode;
40     class Loop;
41     class ForLoop;
42     class Proc;
43     class ServiceNode;
44     class ServerNode;
45     class ServiceInlineNode;
46     class DataNode;
47     class Switch;
48     class WhileLoop;
49     class TypeCode;
50     class TypeCodeObjref;
51     class Container;
52
53     class Visitor
54     {
55     public:
56       Visitor(ComposedNode *root);
57       virtual void visitBloc(Bloc *node) = 0;
58       virtual void visitElementaryNode(ElementaryNode *node) = 0;
59       virtual void visitForEachLoop(ForEachLoop *node) = 0;
60       virtual void visitOptimizerLoop(OptimizerLoop *node) = 0;
61       virtual void visitDynParaLoop(DynParaLoop *node) = 0;
62       virtual void visitForLoop(ForLoop *node) = 0;
63       virtual void visitInlineNode(InlineNode *node) = 0;
64       virtual void visitInlineFuncNode(InlineFuncNode *node) = 0;
65       virtual void visitLoop(Loop *node) = 0;
66       virtual void visitProc(Proc *node) = 0;
67       virtual void visitServiceNode(ServiceNode *node) = 0;
68       virtual void visitServerNode(ServerNode *node) = 0;
69       virtual void visitServiceInlineNode(ServiceInlineNode *node) = 0;
70       virtual void visitSwitch(Switch *node) = 0;
71       virtual void visitWhileLoop(WhileLoop *node) = 0;
72       virtual void visitPresetNode(DataNode *node) = 0;
73       virtual void visitOutNode(DataNode *node) = 0;
74       virtual void visitStudyInNode(DataNode *node) = 0;
75       virtual void visitStudyOutNode(DataNode *node) = 0;
76
77     protected:
78       std::map<std::string, std::string> getNodeProperties(Node *node);
79       std::map<std::string, TypeCode*> getTypeCodeMap(Proc *proc);
80       std::map<std::string, Container*> getContainerMap(Proc *proc);
81       std::list<TypeCodeObjref *> getListOfBases(TypeCodeObjref *objref);
82
83       ComposedNode *_root;
84     };
85   }
86 }
87 #endif