Version: 9.16.0
Visitor.hxx
Go to the documentation of this file.
1// Copyright (C) 2006-2026 CEA, EDF
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
27namespace 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;
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
86 };
87 }
88}
89#endif
Composed node to group elementary and composed nodes.
Definition: Bloc.hxx:36
Base class for all composed nodes.
Class for data parameters specification.
Definition: DataNode.hxx:38
Base class for dynamically (fully or semifully) built graphs.
Definition: DynParaLoop.hxx:41
Base class for all calculation nodes.
Loop node for parametric calculation.
Class for for loop node.
Definition: ForLoop.hxx:33
Class for calculation node (function) inlined (and executed) in the schema.
Definition: InlineNode.hxx:93
Class for calculation node (script) inlined (and executed) in the schema.
Definition: InlineNode.hxx:44
Base class for loop node.
Definition: Loop.hxx:147
Base class for all nodes.
Definition: Node.hxx:70
class to build optimization loops
Base class for all schema objects.
Definition: Proc.hxx:44
Class for calculation node associated with a component service.
Definition: ServiceNode.hxx:35
Control node that emulates the C switch.
Definition: Switch.hxx:85
Class for reference objects.
Definition: TypeCode.hxx:126
virtual void visitProc(Proc *node)=0
Visitor(ComposedNode *root)
Definition: Visitor.cxx:28
virtual void visitStudyOutNode(DataNode *node)=0
ComposedNode * _root
Definition: Visitor.hxx:85
virtual void visitLoop(Loop *node)=0
virtual void visitElementaryNode(ElementaryNode *node)=0
std::map< std::string, std::string > getNodeProperties(Node *node)
Definition: Visitor.cxx:32
std::map< std::string, Container * > getContainerMap(Proc *proc)
Definition: Visitor.cxx:42
virtual void visitForEachLoopDyn(ForEachLoopDyn *node)=0
virtual void visitForLoop(ForLoop *node)=0
virtual void visitServiceInlineNode(ServiceInlineNode *node)=0
virtual void visitDynParaLoop(DynParaLoop *node)=0
virtual void visitOutNode(DataNode *node)=0
virtual void visitServerNode(ServerNode *node)=0
virtual void visitWhileLoop(WhileLoop *node)=0
virtual void visitForEachLoop(ForEachLoop *node)=0
virtual void visitSwitch(Switch *node)=0
virtual void visitPresetNode(DataNode *node)=0
virtual void visitInlineFuncNode(InlineFuncNode *node)=0
std::list< TypeCodeObjref * > getListOfBases(TypeCodeObjref *objref)
Definition: Visitor.cxx:47
virtual void visitStudyInNode(DataNode *node)=0
virtual void visitInlineNode(InlineNode *node)=0
virtual void visitServiceNode(ServiceNode *node)=0
virtual void visitOptimizerLoop(OptimizerLoop *node)=0
std::map< std::string, TypeCode * > getTypeCodeMap(Proc *proc)
Definition: Visitor.cxx:37
virtual void visitBloc(Bloc *node)=0
Class for a while loop.
Definition: WhileLoop.hxx:39