Version: 8.3.0
Runtime.cxx
Go to the documentation of this file.
1 // Copyright (C) 2006-2016 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 #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 
53 
54 // --- init typecodes for edInit with C++ Any
55 
56 
58 
59 // singleton creation must be done before by a derived class
60 
62 {
63  if ( ! Runtime::_singleton )
64  throw Exception("Runtime is not yet initialized");
65  return Runtime::_singleton;
66 }
67 
69 {
70  DEBTRACE("Runtime::Runtime");
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. */
94  typeMap["double"]=Runtime::_tc_double;
96  typeMap["int"]=Runtime::_tc_int;
98  typeMap["bool"]=Runtime::_tc_bool;
100  typeMap["string"]=Runtime::_tc_string;
102  typeMap["file"]=Runtime::_tc_file;
104  typeMap["stringpair"]=Runtime::_tc_stringpair;
106  typeMap["propvec"]=Runtime::_tc_propvec;
107 
108  // Get dynamic trace level
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 
139 {
140  delete this;
141 }
142 
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() );
156  for(std::vector<Catalog *>::iterator it=_catalogs.begin();it !=_catalogs.end();it++)
157  (*it)->decrRef();
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 
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 OptimizerLoop* Runtime::createOptimizerLoop(const std::string& name,const std::string& algLib,const std::string& factoryName,bool algInitOnFile,
259  const std::string& kind, Proc * procForTypes)
260 {
261  return new OptimizerLoop(name,algLib,factoryName,algInitOnFile, true, procForTypes);
262 }
263 
265 {
266  return new InputDataStreamPort(name,node,type);
267 }
268 
270 {
271  return new OutputDataStreamPort(name,node,type);
272 }
273 
275 
280 Catalog* Runtime::loadCatalog(const std::string& sourceKind,const std::string& path)
281 {
282  if (_catalogLoaderFactoryMap.find(sourceKind) == _catalogLoaderFactoryMap.end())
283  {
284  throw Exception("This type of catalog loader does not exist: " + sourceKind);
285  }
286  else
287  {
288  Catalog* cata=new Catalog(path);
289  CatalogLoader* proto=_catalogLoaderFactoryMap[sourceKind];
290  proto->load(cata,path);
291  return cata;
292  }
293 }
294 
296 
300 void Runtime::setCatalogLoaderFactory(const std::string& name, CatalogLoader* factory)
301 {
302  _catalogLoaderFactoryMap[name]=factory;
303 }
304 
306 
310 {
311  return _builtinCatalog;
312 }
313 
315 
319 {
320  _catalogs.push_back(catalog);
321  catalog->incrRef();
322 }
323 
325 
328 TypeCode* Runtime::getTypeCode(const std::string& name)
329 {
330  if (_builtinCatalog->_typeMap.count(name) != 0)
331  return _builtinCatalog->_typeMap[name];
332  for(std::vector<Catalog *>::const_iterator it=_catalogs.begin();it !=_catalogs.end();it++)
333  {
334  if ((*it)->_typeMap.count(name) != 0)
335  return (*it)->_typeMap[name];
336  }
337  return 0;
338 }
339 
341 
351 {
352  throw Exception("convertNeutral is not implemented by your runtime");
353 }
354 
356 
364 std::string Runtime::convertNeutralAsString(TypeCode * type, Any *data)
365 {
366  throw Exception("convertNeutralAsString is not implemented by your runtime");
367 }
368