Salome HOME
Save/Load manages HPContainers.
[modules/yacs.git] / src / yacsloader / procParsers.hxx
1 // Copyright (C) 2006-2014  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 _PROCPARSER_HXX_
21 #define _PROCPARSER_HXX_
22
23 #include "blocParsers.hxx"
24 #include "typeParsers.hxx"
25 #include "containerParsers.hxx"
26 #include "componentinstanceParsers.hxx"
27 #include "nodeParsers.hxx"
28
29 #include "Proc.hxx"
30 #include "Container.hxx"
31 #include "TypeCode.hxx"
32
33 extern YACS::ENGINE::Proc* currentProc;
34
35 namespace YACS
36 {
37
38 template <class T=YACS::ENGINE::Proc*>
39 struct proctypeParser: bloctypeParser<T>
40 {
41
42   static proctypeParser<T> procParser;
43
44   proctypeParser():bloctypeParser<T>()
45   {
46     this->_orders["type"]=1;
47     this->_orders["sequence"]=1;
48     this->_orders["objref"]=1;
49   }
50   void onStart(const XML_Char* el, const XML_Char** attr);
51   virtual void onEnd(const char *el,parser* child);
52   virtual void buildAttr(const XML_Char** attr)
53     {
54       for (int i = 0; attr[i]; i += 2) 
55         {
56           if(std::string(attr[i]) == "state")
57             this->state(attr[i+1]);
58           if(std::string(attr[i]) == "name")
59             name(attr[i+1]);
60         }
61     }
62   virtual void pre()
63     {
64         std::string name("proc");
65         currentProc=theRuntime->createProc(name);
66         this->_bloc=currentProc;
67         currentProc->names.push_back("");
68     }
69
70   virtual void name(const std::string& name)
71     {
72       currentProc->setName(name);
73     }
74
75   virtual void type(const mytype& t)
76     {
77         DEBTRACE( "type_set" );
78         YACS::ENGINE::TypeCode* tt=currentProc->createType(t._name,t._kind);
79         tt->decrRef();
80     }
81   virtual void sequence(ENGINE::TypeCode* const& t)
82     {
83         DEBTRACE( "sequence_set" );
84         t->decrRef();
85     }
86   virtual void objref(ENGINE::TypeCode* const& t)
87     {
88         DEBTRACE( "objref_set" );
89         t->decrRef();
90     }
91   virtual void struct_(ENGINE::TypeCode* const& t)
92     {
93         DEBTRACE( "struct_set" );
94         t->decrRef();
95     }
96
97   virtual void componentinstance(const mycomponentinstance& t)
98     {
99       DEBTRACE( "componentinstance: " << t._name );
100       YACS::ENGINE::ComponentInstance* inst=currentProc->createComponentInstance(t._component,t._name,t._kind);
101
102       // Set all properties for this component instance
103       std::map<std::string, std::string>::const_iterator pt;
104       for(pt=t._props.begin();pt!=t._props.end();pt++)
105         inst->setProperty((*pt).first,(*pt).second);
106
107       //associate a container to the component instance
108       if(currentProc->containerMap.count(t._container) != 0)
109         {
110           inst->setContainer(currentProc->containerMap[t._container]);
111         }
112       else if(t._container == "")
113         {
114           if(currentProc->containerMap.count("DefaultContainer") != 0)
115           {
116             //a default container is defined : use it if supported
117             try
118             {
119               currentProc->containerMap["DefaultContainer"]->checkCapabilityToDealWith(inst);
120               inst->setContainer(currentProc->containerMap["DefaultContainer"]);
121             }
122             catch(YACS::Exception){}
123           }
124         }
125       else
126         {
127           std::cerr << "WARNING: Unknown container " << t._container << " ignored" << std::endl;
128         }
129
130       inst->decrRef();
131     }
132
133   virtual void container(const mycontainer& t)
134     {
135       DEBTRACE( "container_set: " << t._name )             
136       std::vector<machine>::const_iterator iter;
137       for(iter=t._machs.begin();iter!=t._machs.end();iter++)
138         {
139           DEBTRACE( "machine name: " << (*iter)._name )             
140         }
141
142       if(currentProc->containerMap.count(t._name) != 0 && t._name != "DefaultContainer")
143         {
144           std::cerr << "Warning: container " << t._name << " already defined. It will be ignored" << std::endl;
145         }
146       else
147         {
148           // Set all properties for this container
149           std::string kindOfContainer;
150           std::map<std::string, std::string>::const_iterator pt(t._props.find(std::string(ENGINE::Container::KIND_ENTRY)));
151           if(pt!=t._props.end())
152             kindOfContainer=pt->second;
153           YACS::ENGINE::Container *cont(currentProc->createContainer(t._name,kindOfContainer));
154           for(pt=t._props.begin();pt!=t._props.end();pt++)
155             if((*pt).second!=ENGINE::Container::KIND_ENTRY)
156               cont->setProperty((*pt).first,(*pt).second);
157           cont->decrRef();
158         }
159     }
160
161   T post() { return this->_bloc; }
162 };
163
164 template <class T> proctypeParser<T> proctypeParser<T>::procParser;
165
166 }
167
168 namespace YACS
169 {
170 template <class T>
171 void proctypeParser<T>::onStart(const XML_Char* el, const XML_Char** attr)
172   {
173     DEBTRACE( "proctypeParser::onStart: " << el )
174     std::string element(el);
175     this->checkOrder(element);
176     parser* pp=&parser::main_parser;
177     if(element == "property")pp=&propertytypeParser::propertyParser;
178     else if(element == "type")pp=&typetypeParser::typeParser;
179     else if(element == "sequence")pp=&seqtypeParser::seqParser;
180     else if(element == "objref")pp=&objtypeParser::objParser;
181     else if(element == "struct")pp=&structtypeParser::structParser;
182     else if(element == "container")pp=&containertypeParser::containerParser;
183     else if(element == "componentinstance")pp=&componentinstancetypeParser::componentinstanceParser;
184
185     else if(element == "inline")pp=&inlinetypeParser<>::inlineParser;
186     else if(element == "sinline")pp=&sinlinetypeParser<>::sinlineParser;
187     else if(element == "service")pp=&servicetypeParser<>::serviceParser;
188     else if(element == "server")pp=&servertypeParser<>::serverParser;
189     else if(element == "remote")pp=&remotetypeParser<>::remoteParser;
190     else if(element == "node")pp=&nodetypeParser<>::nodeParser;
191     else if(element == "datanode")pp=&presettypeParser<>::presetParser;
192     else if(element == "outnode")pp=&outnodetypeParser<>::outnodeParser;
193
194     else if(element == "bloc")pp=&bloctypeParser<>::blocParser;
195     else if(element == "forloop")pp=&forlooptypeParser<>::forloopParser;
196     else if(element == "foreach")pp=&foreachlooptypeParser<>::foreachloopParser;
197     else if(element == "optimizer")pp=&optimizerlooptypeParser<>::optimizerloopParser;
198     else if(element == "while")pp=&whilelooptypeParser<>::whileloopParser;
199     else if(element == "switch")pp=&switchtypeParser::switchParser;
200
201     else if(element == "control")pp=&controltypeParser<>::controlParser;
202     else if(element == "datalink")pp=&linktypeParser<>::linkParser;
203     else if(element == "stream")pp=&streamtypeParser<>::streamParser;
204     else if(element == "parameter")pp=&parametertypeParser::parameterParser;
205     else
206       {
207         // OCC: san -- Allow external parsers for handling of unknown elements
208         // and attributes. This capability is used by YACS GUI to read
209         // graph presentation data
210         if ( this->_defaultParsersMap )
211           {
212             if((this->_defaultParsersMap)->count(element) != 0)
213               {
214                 pp=(*(this->_defaultParsersMap))[element];
215               }
216             else
217               {
218                 std::cerr << "There is no parser for this element type. It will be ignored! " << element << std::endl;
219               }
220           }
221       }
222     this->SetUserDataAndPush(pp);
223     pp->init();
224     pp->pre();
225     pp->buildAttr(attr);
226   }
227
228 template <class T>
229 void proctypeParser<T>::onEnd(const char *el,parser* child)
230     {
231       DEBTRACE( "proctypeParser::onEnd: " << el )
232       std::string element(el);
233       if(element == "property")this->property(((propertytypeParser*)child)->post());
234       else if(element == "type")type(((typetypeParser*)child)->post());
235       else if(element == "sequence")sequence(((seqtypeParser*)child)->post());
236       else if(element == "objref")objref(((objtypeParser*)child)->post());
237       else if(element == "struct")struct_(((structtypeParser*)child)->post());
238       else if(element == "container")container(((containertypeParser*)child)->post());
239       else if(element == "componentinstance")componentinstance(((componentinstancetypeParser*)child)->post());
240
241       else if(element == "inline")this->inline_(((inlinetypeParser<>*)child)->post());
242       else if(element == "sinline")this->sinline(((sinlinetypeParser<>*)child)->post());
243       else if(element == "service")this->service(((servicetypeParser<>*)child)->post());
244       else if(element == "server")this->server(((servertypeParser<>*)child)->post());
245       else if(element == "remote")this->remote(((remotetypeParser<>*)child)->post());
246       else if(element == "node")this->node(((nodetypeParser<>*)child)->post());
247       else if(element == "datanode")this->preset(((presettypeParser<>*)child)->post());
248       else if(element == "outnode")this->outnode(((outnodetypeParser<>*)child)->post());
249
250       else if(element == "bloc")this->bloc(((bloctypeParser<>*)child)->post());
251       else if(element == "forloop")this->forloop(((forlooptypeParser<>*)child)->post());
252       else if(element == "foreach")this->foreach(((foreachlooptypeParser<>*)child)->post());
253       else if(element == "optimizer")this->optimizer(((optimizerlooptypeParser<>*)child)->post());
254       else if(element == "while")this->while_(((whilelooptypeParser<>*)child)->post());
255       else if(element == "switch")this->switch_(((switchtypeParser*)child)->post());
256  
257       else if(element == "control") this->control(((controltypeParser<>*)child)->post());
258       else if(element == "datalink") this->datalink(((linktypeParser<>*)child)->post());
259       else if(element == "stream") this->stream(((streamtypeParser<>*)child)->post());
260       else if(element == "parameter") this->parameter(((parametertypeParser*)child)->post());
261     }
262
263 }
264
265 #endif