Salome HOME
Synchronize adm files
[modules/yacs.git] / src / yacsloader / inlineParsers.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 _INLINEPARSERS_HXX_
21 #define _INLINEPARSERS_HXX_
22
23 #include "parserBase.hxx"
24 #include "containerParsers.hxx"
25 #include "dataParsers.hxx"
26 #include "portParsers.hxx"
27 #include "codeParsers.hxx"
28 #include "propertyParsers.hxx"
29
30 #include "Proc.hxx"
31 #include "TypeCode.hxx"
32 #include "InlineNode.hxx"
33 #include "Exception.hxx"
34 #include "Runtime.hxx"
35 #include "Container.hxx"
36 #include "ComponentInstance.hxx"
37 #include "OutputDataStreamPort.hxx"
38 #include "InputDataStreamPort.hxx"
39 #include "ComponentInstance.hxx"
40 #include "factory.hxx"
41
42 extern YACS::ENGINE::Proc* currentProc;
43 extern YACS::ENGINE::Runtime* theRuntime;
44
45 namespace YACS
46 {
47
48 static std::string t1[]={"script","function",""};
49
50 template <class T=YACS::ENGINE::InlineNode*>
51 struct inlinetypeParser:public nodetypeParser<T>
52 {
53   static inlinetypeParser<T> inlineParser;
54
55   virtual void onStart(const XML_Char* el, const XML_Char** attr);
56   virtual void onEnd(const char *el,parser* child)
57     {
58       DEBTRACE( "inlinetypeParser::onEnd: " << el )             
59       std::string element(el);
60       if(element == "kind")kind(((stringtypeParser*)child)->post());
61       else if(element == "script")script(((codetypeParser*)child)->post());
62       else if(element == "function")function(((functypeParser*)child)->post());
63       else if(element == "property")this->property(((propertytypeParser*)child)->post());
64       else if(element == "inport") inport(((inporttypeParser<myinport>*)child)->post());
65       else if(element == "outport") outport(((outporttypeParser<myoutport>*)child)->post());
66     }
67   virtual void buildAttr(const XML_Char** attr)
68     {
69       this->required("name",attr);
70       for (int i = 0; attr[i]; i += 2) 
71       {
72         if(std::string(attr[i]) == "name")this->name(attr[i+1]);
73         if(std::string(attr[i]) == "state")this->state(attr[i+1]);
74       }
75     }
76   virtual void pre ()
77     {
78       this->_node=0;
79       _kind="";
80       this->_state="";
81       this->_container="";
82     }
83   virtual void kind (const std::string& name)
84     {
85       DEBTRACE( "inline_kind " << name )             
86       _kind=name;
87     }
88
89   virtual void script (const myfunc& f){}
90   virtual void function (const myfunc& f) {}
91
92   virtual void inport (const myinport& p)
93     {
94       DEBTRACE( "inline_inport: " << p._name <<":"<<p._type)             
95       if(this->_node==0)
96         throw YACS::Exception("Node must be completely defined before defining its ports");
97
98       if(currentProc->typeMap.count(p._type)==0)
99       {
100         //Check if the typecode is defined in the runtime
101         YACS::ENGINE::TypeCode* t=theRuntime->getTypeCode(p._type);
102         if(t==0)
103         {
104           std::string msg="Unknown InPort Type: ";
105           msg=msg+p._type+" for node: "+this->_node->getName()+" port name: "+p._name;
106           throw YACS::Exception(msg);
107         }
108         else
109         {
110           currentProc->typeMap[p._type]=t;
111           t->incrRef();
112         }
113       }
114       this->_node->edAddInputPort(p._name,currentProc->typeMap[p._type]);
115     }
116   virtual void outport (const myoutport& p)
117     {
118       DEBTRACE( "inline_outport: " << p._name <<":"<<p._type)             
119       if(this->_node==0)
120         throw YACS::Exception("Node must be completely defined before defining its ports");
121
122       if(currentProc->typeMap.count(p._type)==0)
123       {
124         YACS::ENGINE::TypeCode* t=theRuntime->getTypeCode(p._type);
125         if(t==0)
126         {
127           std::string msg="Unknown OutPort Type: ";
128           msg=msg+p._type+" for node: "+this->_node->getName()+" port name: "+p._name;
129           throw YACS::Exception(msg);
130         }
131         else
132         {
133           currentProc->typeMap[p._type]=t;
134           t->incrRef();
135         }
136       }
137       this->_node->edAddOutputPort(p._name,currentProc->typeMap[p._type]);
138     }
139   virtual T post()
140     {
141       DEBTRACE( "inline_post " << this->_node->getName() )             
142       if(this->_state == "disabled")this->_node->exDisabledState();
143       /*
144       std::list<OutputPort *>::iterator iter;
145       std::list<OutputPort *> s=_node->getSetOfOutputPort();
146       for(iter=s.begin();iter!=s.end();iter++)
147         {
148           std::cerr << "port name: " << (*iter)->getName() << std::endl;
149           std::cerr << "port kind: " << (*iter)->edGetType()->kind() << std::endl;
150         }
151         */
152       return this->_node;
153     }
154   std::string _kind;
155 };
156
157 template <class T> inlinetypeParser<T> inlinetypeParser<T>::inlineParser;
158
159 template <>
160 void inlinetypeParser<YACS::ENGINE::InlineNode*>::script (const myfunc& f)
161 {
162   DEBTRACE( "inline_script: " << f._code )             
163   _node=theRuntime->createScriptNode(_kind,_name);
164   _node->setScript(f._code);
165 }
166
167 template <>
168 void inlinetypeParser<YACS::ENGINE::InlineNode*>::function (const myfunc& f)
169 {
170   DEBTRACE( "inline_function: " << f._code )             
171   YACS::ENGINE::InlineFuncNode *fnode;
172   fnode=theRuntime->createFuncNode(_kind,_name);
173   fnode->setScript(f._code);
174   fnode->setFname(f._name);
175   _node=fnode;
176 }
177
178 template <class T>
179 void inlinetypeParser<T>::onStart(const XML_Char* el, const XML_Char** attr)
180
181     {
182       DEBTRACE( "inlinetypeParser::onStart: " << el )
183       std::string element(el);
184       parser* pp=&parser::main_parser;
185       this->maxcount("kind",1,element);
186       this->maxcount("script",1,element);
187       this->maxcount("function",1,element);
188       this->maxchoice(t1,1,element);
189       if(element == "kind")pp=&stringtypeParser::stringParser;
190       else if(element == "script")pp=&codetypeParser::codeParser;
191       else if(element == "function")pp=&functypeParser::funcParser;
192       else if(element == "property")pp=&propertytypeParser::propertyParser;
193       else if(element == "inport")pp=&inporttypeParser<>::inportParser;
194       else if(element == "outport")pp=&outporttypeParser<>::outportParser;
195       this->SetUserDataAndPush(pp);
196       pp->init();
197       pp->pre();
198       pp->buildAttr(attr);
199     }
200
201 } // end of namespace YACS
202
203 #endif