Salome HOME
318f260834f59f52afd1a6e1644a5c10b6335f1e
[modules/yacs.git] / src / engine / Runtime.cxx
1 // Copyright (C) 2006-2023  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 #include "Runtime.hxx"
21
22 #include<cassert>
23 #include "WhileLoop.hxx"
24 #include "ForLoop.hxx"
25 #include "ForEachLoop.hxx"
26 #include "OptimizerLoop.hxx"
27 #include "Switch.hxx"
28 #include "Bloc.hxx"
29 #include "Proc.hxx"
30 #include "InputDataStreamPort.hxx"
31 #include "OutputDataStreamPort.hxx"
32 #include "Catalog.hxx"
33 #include "TypeCode.hxx"
34 #include "Executor.hxx"
35
36 #include<iostream>
37 #include<cstdlib>
38
39 //#define _DEVDEBUG_
40 #include "YacsTrace.hxx"
41
42 using namespace YACS::ENGINE;
43 using namespace std;
44
45 Runtime* Runtime::_singleton = 0;
46 TypeCode* Runtime::_tc_double = 0;
47 TypeCode* Runtime::_tc_int = 0;
48 TypeCode* Runtime::_tc_bool = 0;
49 TypeCode* Runtime::_tc_string = 0;
50 TypeCode* Runtime::_tc_file = 0;
51 TypeCode* Runtime::_tc_stringpair = 0;
52 TypeCode* Runtime::_tc_propvec = 0;
53
54 // --- init typecodes for edInit with C++ Any
55
56
57 const char Runtime::RUNTIME_ENGINE_INTERACTION_IMPL_NAME[]="Neutral";
58
59 // singleton creation must be done before by a derived class
60
61 Runtime* YACS::ENGINE::getRuntime() 
62 {
63   if ( !  Runtime::_singleton )
64     throw Exception("Runtime is not yet initialized");
65   return Runtime::_singleton;
66 }
67
68 Runtime::Runtime()
69 {
70   DEBTRACE("Runtime::Runtime");
71   Runtime::_tc_double = new TypeCode(Double);
72   Runtime::_tc_int    = new TypeCode(Int);
73   Runtime::_tc_bool   = new TypeCode(Bool);
74   Runtime::_tc_string = new TypeCode(String);
75   Runtime::_tc_file = new TypeCodeObjref("file", "file");
76   TypeCodeStruct * stringpair = new TypeCodeStruct("stringpair", "stringpair");
77   stringpair->addMember("name", Runtime::_tc_string);
78   stringpair->addMember("value", Runtime::_tc_string);
79   Runtime::_tc_stringpair = stringpair;
80   Runtime::_tc_propvec = new TypeCodeSeq("propvec", "propvec", Runtime::_tc_stringpair);
81   DEBTRACE( "_tc_double refcnt: " << Runtime::_tc_double->getRefCnt() );
82   DEBTRACE( "_tc_int refcnt: " << Runtime::_tc_int->getRefCnt() );
83   DEBTRACE( "_tc_bool refcnt: " << Runtime::_tc_bool->getRefCnt() );
84   DEBTRACE( "_tc_string refcnt: " << Runtime::_tc_string->getRefCnt() );
85   DEBTRACE( "_tc_file refcnt: " << Runtime::_tc_file->getRefCnt() );
86   DEBTRACE( "_tc_stringpair refcnt: " << Runtime::_tc_stringpair->getRefCnt() );
87   DEBTRACE( "_tc_propvec refcnt: " << Runtime::_tc_propvec->getRefCnt() );
88   _builtinCatalog = new Catalog("builtins");
89   std::map<std::string,TypeCode*>& typeMap=_builtinCatalog->_typeMap;
90   /* All composed node creations are moved to RuntimeSALOME::initBuiltins.
91      It is not safe to have all those calls to virtual functions (create*)
92      in the constructor. */
93   Runtime::_tc_double->incrRef();
94   typeMap["double"]=Runtime::_tc_double;
95   Runtime::_tc_int->incrRef();
96   typeMap["int"]=Runtime::_tc_int;
97   Runtime::_tc_bool->incrRef();
98   typeMap["bool"]=Runtime::_tc_bool;
99   Runtime::_tc_string->incrRef();
100   typeMap["string"]=Runtime::_tc_string;
101   Runtime::_tc_file->incrRef();
102   typeMap["file"]=Runtime::_tc_file;
103   Runtime::_tc_stringpair->incrRef();
104   typeMap["stringpair"]=Runtime::_tc_stringpair;
105   Runtime::_tc_propvec->incrRef();
106   typeMap["propvec"]=Runtime::_tc_propvec;
107
108   // Get dynamic trace level
109   YACS::traceLevel=0;
110   char* valenv=getenv("YACS_TRACELEVEL");
111   if(valenv)
112     {
113       std::istringstream iss(valenv);
114       int temp;
115       if (iss >> temp)
116         YACS::traceLevel=temp;
117     }
118
119   // Get max threads number
120   char *maxThreadStr = getenv("YACS_MAX_THREADS");
121   if (maxThreadStr != NULL)
122     {
123       int maxThreads = atoi(maxThreadStr);
124       DEBTRACE("maxThreads = " << maxThreads);
125       if (maxThreads > 0) Executor::_maxThreads = maxThreads;
126     }
127
128   // Get thread stack size
129   char *threadStackSizeStr = getenv("YACS_THREADS_STACK_SIZE");
130   if (threadStackSizeStr != NULL)
131     {
132       size_t threadStackSize = strtoul(threadStackSizeStr, NULL, 0);
133       DEBTRACE("threadStackSize = " << threadStackSize);
134       if (threadStackSize > 0) Executor::_threadStackSize = threadStackSize;
135     }
136 }
137
138 void Runtime::removeRuntime()
139 {
140   delete this;
141 }
142
143 Runtime::~Runtime()
144 {
145   delete _builtinCatalog;
146   DEBTRACE( "_tc_double refcnt: " << Runtime::_tc_double->getRefCnt() );
147   DEBTRACE( "_tc_int refcnt: " << Runtime::_tc_int->getRefCnt() );
148   DEBTRACE( "_tc_bool refcnt: " << Runtime::_tc_bool->getRefCnt() );
149   DEBTRACE( "_tc_string refcnt: " << Runtime::_tc_string->getRefCnt() );
150   DEBTRACE( "_tc_file refcnt: " << Runtime::_tc_file->getRefCnt() );
151   Runtime::_tc_double->decrRef();
152   Runtime::_tc_int->decrRef();
153   Runtime::_tc_bool->decrRef();
154   Runtime::_tc_string->decrRef();
155   Runtime::_tc_file->decrRef();
156   for(std::vector<Catalog *>::iterator it=_catalogs.begin();it !=_catalogs.end();it++)
157     (*it)->decrRef();
158   Runtime::_singleton=0;
159   DEBTRACE( "Total YACS::ENGINE::Refcount: " << RefCounter::_totalCnt );
160 }
161
162 TypeCode * Runtime::createInterfaceTc(const std::string& id, const std::string& name,
163                                       std::list<TypeCodeObjref *> ltc)
164 {
165   return TypeCode::interfaceTc(id.c_str(),name.c_str(),ltc);
166 }
167
168 TypeCode * Runtime::createSequenceTc(const std::string& id,
169                                      const std::string& name,
170                                      TypeCode *content)
171 {
172   return TypeCode::sequenceTc(id.c_str(),name.c_str(),content);
173 };
174
175 TypeCodeStruct * Runtime::createStructTc(const std::string& id, const std::string& name)
176 {
177   return (TypeCodeStruct *)TypeCode::structTc(id.c_str(),name.c_str());
178 }
179
180 DataNode* Runtime::createInDataNode(const std::string& kind,const std::string& name)
181 {
182   throw Exception("InDataNode factory not implemented");
183 }
184
185 DataNode* Runtime::createOutDataNode(const std::string& kind,const std::string& name)
186 {
187   throw Exception("OutDataNode factory not implemented");
188 }
189
190 InlineFuncNode* Runtime::createFuncNode(const std::string& kind,const std::string& name)
191 {
192   throw Exception("FuncNode factory not implemented");
193 }
194
195 InlineNode* Runtime::createScriptNode(const std::string& kind,const std::string& name)
196 {
197   throw Exception("ScriptNode factory not implemented");
198 }
199
200 ServiceNode* Runtime::createRefNode(const std::string& kind,const std::string& name)
201 {
202   throw Exception("RefNode factory not implemented");
203 }
204
205 ServiceNode* Runtime::createCompoNode(const std::string& kind,const std::string& name)
206 {
207   throw Exception("CompoNode factory not implemented");
208 }
209
210 ServiceInlineNode *Runtime::createSInlineNode(const std::string& kind, const std::string& name)
211 {
212   throw Exception("SInlineNode factory not implemented");
213 }
214
215 ComponentInstance* Runtime::createComponentInstance(const std::string& name,
216                                                     const std::string& kind)
217 {
218   throw Exception("ComponentInstance factory not implemented");
219 }
220
221 Container *Runtime::createContainer(const std::string& kind)
222 {
223   throw Exception("Container factory not implemented");
224 }
225
226 Proc* Runtime::createProc(const std::string& name)
227 {
228   return new Proc(name);
229 }
230
231 Bloc* Runtime::createBloc(const std::string& name)
232 {
233   return new Bloc(name);
234 }
235
236 Switch* Runtime::createSwitch(const std::string& name)
237 {
238   return new Switch(name);
239 }
240
241 WhileLoop* Runtime::createWhileLoop(const std::string& name)
242 {
243   return new WhileLoop(name);
244 }
245
246 ForLoop* Runtime::createForLoop(const std::string& name)
247 {
248   return new ForLoop(name);
249 }
250
251 ForEachLoop* Runtime::createForEachLoop(const std::string& name,TypeCode *type)
252 {
253   ForEachLoop* ret = new ForEachLoop(name,type);
254   ret->edGetNbOfBranchesPort()->edInit(1);
255   return ret;
256 }
257
258 ForEachLoopDyn* Runtime::createForEachLoopDyn(const std::string& name,TypeCode * type)
259 {
260   return new ForEachLoopDyn(name,type);
261 }
262
263 OptimizerLoop* Runtime::createOptimizerLoop(const std::string& name,const std::string& algLib,const std::string& factoryName,bool algInitOnFile,
264                                             const std::string& kind, Proc * procForTypes)
265 {
266   return new OptimizerLoop(name,algLib,factoryName,algInitOnFile, true, procForTypes);
267 }
268
269 InputDataStreamPort* Runtime::createInputDataStreamPort(const std::string& name,Node *node,TypeCode *type)
270 {
271   return new InputDataStreamPort(name,node,type);
272 }
273
274 OutputDataStreamPort* Runtime::createOutputDataStreamPort(const std::string& name,Node *node,TypeCode *type)
275 {
276   return new OutputDataStreamPort(name,node,type);
277 }
278
279 //! Load a catalog of calculation to use as factory
280 /*!
281  * \param sourceKind: the kind of catalog source. It depends on runtime. It could be a file, a server, a directory
282  * \param path: the path to the catalog. 
283  * \return the loaded Catalog
284  */
285 Catalog* Runtime::loadCatalog(const std::string& sourceKind,const std::string& path)
286 {
287   if (_catalogLoaderFactoryMap.find(sourceKind) == _catalogLoaderFactoryMap.end())
288     {
289       throw Exception("This type of catalog loader does not exist: " + sourceKind);
290     }
291   else
292     {
293       Catalog* cata=new Catalog(path);
294       CatalogLoader* proto=_catalogLoaderFactoryMap[sourceKind];
295       proto->load(cata,path);
296       return cata;
297     }
298 }
299
300 //! Add a catalog loader factory to the map _catalogLoaderFactoryMap under the name name
301 /*!
302  * \param name: name under which the factory is registered
303  * \param factory: the factory
304  */
305 void Runtime::setCatalogLoaderFactory(const std::string& name, CatalogLoader* factory)
306 {
307   _catalogLoaderFactoryMap[name]=factory;
308 }
309
310 //! Get the catalog of base nodes (elementary and composed)
311 /*!
312  * \return the builtin Catalog
313  */
314 Catalog* Runtime::getBuiltinCatalog()
315 {
316   return _builtinCatalog;
317 }
318
319 //! Add a catalog of types and nodes to the runtime
320 /*!
321  * These catalogs are searched when calling getTypeCode method
322  */
323 void Runtime::addCatalog(Catalog* catalog)
324 {
325   _catalogs.push_back(catalog);
326   catalog->incrRef();
327 }
328
329 //! Get a typecode by its name from runtime catalogs
330 /*!
331  * \return the typecode if it exists or NULL
332  */
333 TypeCode* Runtime::getTypeCode(const std::string& name)
334 {
335   if (_builtinCatalog->_typeMap.count(name) != 0)
336     return _builtinCatalog->_typeMap[name];
337   for(std::vector<Catalog *>::const_iterator it=_catalogs.begin();it !=_catalogs.end();it++)
338     {
339       if ((*it)->_typeMap.count(name) != 0)
340         return (*it)->_typeMap[name];
341     }
342   return 0;
343 }
344
345 //! Convert a YACS::ENGINE::Any object to an external object with type type
346 /*!
347  * This method is used to convert Neutral objects to script languages. For example
348  * Python language. The runtime has one external script language.
349  * The object is returned as a void * because engine knows nothing about external script language.
350  *
351  * \param type: the type of the converted object if the conversion is possible
352  * \param data: the object to convert
353  * \return the converted object
354  */
355 void* Runtime::convertNeutral(TypeCode * type, Any *data)
356 {
357   throw Exception("convertNeutral is not implemented by your runtime");
358 }
359
360 //! Convert a YACS::ENGINE::Any object to a string to be used in GUI for example
361 /*!
362  * engine package does not provide a conversion to string. It has to be implemented in the 
363  * runtime package.
364  *
365  * \param type: the type of the object to convert
366  * \param data: the object to convert
367  * \return the string representation of the object
368  */
369 std::string Runtime::convertNeutralAsString(TypeCode * type, Any *data)
370 {
371   throw Exception("convertNeutralAsString is not implemented by your runtime");
372 }
373