Salome HOME
Fix a merge issue
[tools/yacsgen.git] / module_generator / astcompo.py
1 # Copyright (C) 2009-2014  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 """
21   This module defines the ASTERComponent class for ASTER component generation
22   An ASTER component comes in 3 flavors :
23    - implemented as a dynamic library (kind='lib')
24    - implemented as a standalone component (kind='exe')
25    - implemented as a specific container (kind='cexe')
26 """
27 import re, os, sys
28
29 from gener import Component, Invalid, makedirs
30
31 from pyth_tmpl import pyinitEXEService, pyinitCEXEService, pyinitService
32 import aster_tmpl
33 from aster_tmpl import asterCEXEService, asterEXEService
34 from aster_tmpl import asterService, asterEXECompo, asterCEXECompo, asterCompo
35 from aster_tmpl import comm, make_etude, cexe, exeaster
36 from aster_tmpl import container, component
37 from aster_tmpl import cmake_src_compo_aster, cmake_src_compo_aster_lib
38
39 class ASTERComponent(Component):
40   """
41    A :class:`ASTERComponent` instance represents an ASTER SALOME component (special component for Code_Aster that is a mix of
42    Fortran and Python code) with services given as a list of :class:`Service` instances with the parameter *services*.
43
44    :param name: gives the name of the component.
45    :type name: str
46    :param services: the list of services (:class:`Service`) of the component.
47    :param kind: If it is given and has the value "exe", the component will be built as a standalone
48       component (executable or shell script). The default is to build the component as a dynamic library.
49    :param libs: gives all the libraries options to add when linking the generated component (-L...).
50    :param rlibs: gives all the runtime libraries options to add when linking the generated component (-R...).
51    :param exe_path: is only used when kind is "exe" and gives the path to the standalone component.
52    :param aster_dir: gives the Code_Aster installation directory.
53    :param python_path: If it is given (as a list of paths), all the paths are added to the python path (sys.path).
54    :param argv: is a list of strings that gives the command line parameters for Code_Aster. This parameter is only useful when
55       kind is "lib".
56
57    For example, the following call defines a Code_Aster component named "mycompo" with one service s1 (it must have been defined before).
58    This standalone component takes some command line arguments::
59
60       >>> c1 = module_generator.ASTERComponent('mycompo', services=[s1,], kind="exe",
61                                                           exe_path="launch.sh",
62                                                           argv=["-memjeveux","4"])
63   """
64   def __init__(self, name, services=None, libs="", rlibs="", aster_dir="",
65                      python_path=None, argv=None, kind="lib", exe_path=None, aster_version_type="stable"):
66     """initialise component attributes"""
67     self.aster_dir = aster_dir
68     self.python_path = python_path or []
69     self.argv = argv or []
70     self.exe_path = exe_path
71     self.aster_version_type = aster_version_type
72     Component.__init__(self, name, services, impl="ASTER", libs=libs, 
73                              rlibs=rlibs, kind=kind)
74
75   def validate(self):
76     """validate the component definition"""
77     Component.validate(self)
78     if not self.aster_dir:
79       raise Invalid("aster_dir must be defined for component %s" % self.name)
80
81     kinds = ("lib", "cexe", "exe")
82     if self.kind not in kinds:
83       raise Invalid("kind must be one of %s for component %s" % (kinds,self.name))
84     if self.kind == "lib" and not self.python_path:
85       raise Invalid("python_path must be defined for component %s" % self.name)
86     if self.kind == "cexe" :
87       if not self.exe_path:
88         raise Invalid("exe_path must be defined for component %s" % self.name)
89     if self.kind == "exe" :
90       if not self.exe_path:
91         raise Invalid("exe_path must be defined for component %s" % self.name)
92
93     #Si un port de nom jdc n'est pas defini dans la liste des inports du service,
94     #on en ajoute un de type string en premiere position
95     for serv in self.services:
96       found=False
97       for port_name,port_type in serv.inport:
98         if port_name == "jdc":
99           found=True
100           break
101       if not found:
102         serv.inport.insert(0, ("jdc", "string"))
103
104   def libraryName(self):
105     """ Name of the target library
106         No library for an aster component
107     """
108     return ""
109     
110   def getAsterPythonPath(self):
111     """Directory of aster python modules
112     """
113     python_version_dir = 'python%s.%s' % (sys.version_info[0], sys.version_info[1])
114     aster_python_path = os.path.join(self.aster_dir, "lib", python_version_dir, "site-packages")
115
116     if not os.path.exists(aster_python_path) :
117       aster_python_path = os.path.join(self.aster_dir, "bibpyt")
118       
119     return aster_python_path
120
121   def makeCompo(self, gen):
122     """drive the generation of SALOME module files and code files
123        depending on the choosen component kind
124     """
125     filename = "%s.py" % self.name
126     #on suppose que les composants ASTER sont homogenes (utilisent meme install)
127     gen.aster = self.aster_dir
128
129     if self.kind == "lib":
130       f = self.name+".py"
131       return {"CMakeLists.txt":cmake_src_compo_aster_lib.substitute(sources=f),
132               filename:self.makeaster(gen)}
133     elif self.kind == "cexe":
134       fdict=self.makecexepath(gen)
135       sources = self.name + ".py\n  " + self.name + "_container.py"
136       d= {"CMakeLists.txt":cmake_src_compo_aster.substitute(
137                                             sources=sources,
138                                             module=gen.module.name,
139                                             resources=self.name+"_config.txt",
140                                             scripts=self.name+".exe"),
141            self.name+".exe":cexe.substitute(compoexe=self.exe_path),
142            filename:self.makecexeaster(gen)
143          }
144       d.update(fdict)
145       return d
146     elif self.kind == "exe":
147       fdict=self.makeexepath(gen)
148       sources =  self.name + "_module.py\n  "
149       sources =  sources + self.name + "_component.py"
150       d= {"CMakeLists.txt":cmake_src_compo_aster.substitute(
151                                             sources=sources,
152                                             module=gen.module.name,
153                                             resources=self.name+"_config.txt",
154                                             scripts=self.name+".exe"),
155            self.name+".exe":exeaster.substitute(compoexe=self.exe_path),
156            self.name+"_module.py":self.makeexeaster(gen)
157          }
158       d.update(fdict)
159       return d
160
161   def makeexepath(self, gen):
162     """standalone component: generate files for calculation code"""
163
164     fdict={}
165     fdict["%s_component.py" % self.name] = component.substitute(component=self.name)
166
167     return fdict
168
169   def makecexepath(self, gen):
170     """specific container: generate files"""
171
172     fdict={}
173     fdict["%s_container.py" % self.name] = container
174     return fdict
175
176   def getImportESuperv(self):
177     importesuperv="""
178 VERS="%s"
179 import os.path as osp
180 from asrun.run import AsRunFactory
181 from asrun.config import AsterConfig
182
183 run = AsRunFactory()
184 path = run.get_version_path(VERS)
185 cfg = AsterConfig(osp.join(path, 'config.txt'))
186 pypath = cfg['REPPY'][0]
187
188 sys.path.insert(0, pypath)
189 from Execution.E_SUPERV import SUPERV
190 """ % self.aster_version_type
191     return importesuperv
192
193
194   def makeexeaster(self, gen):
195     """standalone component: generate SALOME component source"""
196     services = []
197     inits = []
198     defs = []
199     for serv in self.services:
200       defs.append(serv.defs)
201       params = []
202       datas = []
203       for name, typ in serv.inport:
204         if typ=="file":continue #files are not passed through service interface
205         params.append(name)
206         if typ == "pyobj":
207           datas.append('"%s":cPickle.loads(%s)' % (name, name))
208         else:
209           datas.append('"%s":%s' % (name, name))
210       #ajout de l'adresse du composant
211       datas.append('"component":self.proxy.ptr()')
212       dvars = "{"+','.join(datas)+"}"
213       inparams = ",".join(params)
214
215       params = []
216       datas = []
217       for name, typ in serv.outport:
218         if typ=="file":continue #files are not passed through service interface
219         params.append(name)
220         if typ == "pyobj":
221           datas.append('cPickle.dumps(j.g_context["%s"],-1)'%name)
222         else:
223           datas.append('j.g_context["%s"]'%name)
224       outparams = ",".join(params)
225       rvars = ",".join(datas)
226
227       service = asterEXEService.substitute(component=self.name,
228                                            service=serv.name,
229                                            inparams=inparams,
230                                            outparams=outparams,
231                                            body=serv.body,
232                                            dvars=dvars, rvars=rvars)
233       streams = []
234       for name, typ, dep in serv.instream:
235         streams.append('       calcium.create_calcium_port(self.proxy,"%s","%s","IN","%s")'% (name, typ, dep))
236       instream = "\n".join(streams)
237       streams = []
238       for name, typ, dep in serv.outstream:
239         streams.append('       calcium.create_calcium_port(self.proxy,"%s","%s","OUT","%s")'% (name, typ, dep))
240       outstream = "\n".join(streams)
241
242       init = pyinitEXEService.substitute(component=self.name, service=serv.name,
243                                          instream=instream, outstream=outstream)
244       services.append(service)
245       inits.append(init)
246
247     importesuperv = self.getImportESuperv()
248
249     return asterEXECompo.substitute(component=self.name, module=gen.module.name,
250                                     servicesdef="\n".join(defs),
251                                     servicesimpl="\n".join(services),
252                                     initservice='\n'.join(inits),
253                                     aster_dir=self.aster_dir,
254                                     importesuperv=importesuperv,
255                                     )
256
257   def makecexeaster(self, gen):
258     """specific container: generate SALOME component source"""
259     services = []
260     inits = []
261     defs = []
262     for serv in self.services:
263       defs.append(serv.defs)
264       params = []
265       datas = []
266       for name, typ in serv.inport:
267         if typ=="file":continue #files are not passed through service interface
268         params.append(name)
269         if typ == "pyobj":
270           datas.append('"%s":cPickle.loads(%s)' % (name, name))
271         else:
272           datas.append('"%s":%s' % (name, name))
273       #ajout de l'adresse du composant
274       datas.append('"component":self.proxy.ptr()')
275       dvars = "{"+','.join(datas)+"}"
276       inparams = ",".join(params)
277
278       params = []
279       datas = []
280       for name, typ in serv.outport:
281         params.append(name)
282         if typ == "pyobj":
283           datas.append('cPickle.dumps(j.g_context["%s"],-1)'%name)
284         else:
285           datas.append('j.g_context["%s"]'%name)
286       outparams = ",".join(params)
287       rvars = ",".join(datas)
288
289       service = asterCEXEService.substitute(component=self.name,
290                                             service=serv.name,
291                                             inparams=inparams,
292                                             outparams=outparams,
293                                             body=serv.body,
294                                             dvars=dvars, rvars=rvars)
295       streams = []
296       for name, typ, dep in serv.instream:
297         streams.append('       calcium.create_calcium_port(self.proxy,"%s","%s","IN","%s")'% (name, typ, dep))
298       instream = "\n".join(streams)
299       streams = []
300       for name, typ, dep in serv.outstream:
301         streams.append('       calcium.create_calcium_port(self.proxy,"%s","%s","OUT","%s")'% (name, typ, dep))
302       outstream = "\n".join(streams)
303
304       init = pyinitCEXEService.substitute(component=self.name, 
305                                           service=serv.name,
306                                           instream=instream, 
307                                           outstream=outstream)
308       services.append(service)
309       inits.append(init)
310
311     importesuperv = self.getImportESuperv()
312
313     return asterCEXECompo.substitute(component=self.name, 
314                                      module=gen.module.name,
315                                      servicesdef="\n".join(defs), 
316                                      servicesimpl="\n".join(services), 
317                                      initservice='\n'.join(inits),
318                                      aster_dir=self.aster_dir,
319                                      importesuperv=importesuperv,
320                                      )
321
322   def getImpl(self):
323     if self.kind == "cexe":
324       return "CEXE", self.name+".exe"
325     else:
326       return "SO", ""
327
328   def makeaster(self, gen):
329     """library component: generate SALOME component source"""
330     services = []
331     inits = []
332     defs = []
333     for serv in self.services:
334       defs.append(serv.defs)
335       params = []
336       datas = []
337       for name, typ in serv.inport:
338         if typ=="file":continue #files are not passed through service interface
339         params.append(name)
340         if typ == "pyobj":
341           datas.append('"%s":cPickle.loads(%s)' % (name, name))
342         else:
343           datas.append('"%s":%s' % (name, name))
344       #ajout de l'adresse du composant
345       datas.append('"component":self.proxy.ptr()')
346       dvars = "{"+','.join(datas)+"}"
347       inparams = ",".join(params)
348
349       params = []
350       datas = []
351       for name, typ in serv.outport:
352         params.append(name)
353         if typ == "pyobj":
354           datas.append('cPickle.dumps(j.g_context["%s"],-1)'%name)
355         else:
356           datas.append('j.g_context["%s"]'%name)
357       outparams = ",".join(params)
358       rvars = ",".join(datas)
359
360       service = asterService.substitute(component=self.name, service=serv.name, 
361                                         inparams=inparams, outparams=outparams, 
362                                         body=serv.body, 
363                                         dvars=dvars, rvars=rvars)
364       streams = []
365       for name, typ, dep in serv.instream:
366         streams.append('       calcium.create_calcium_port(self.proxy,"%s","%s","IN","%s")'% (name, typ, dep))
367       instream = "\n".join(streams)
368       streams = []
369       for name, typ, dep in serv.outstream:
370         streams.append('       calcium.create_calcium_port(self.proxy,"%s","%s","OUT","%s")'% (name, typ, dep))
371       outstream = "\n".join(streams)
372
373       init = pyinitService.substitute(component=self.name, service=serv.name,
374                                       instream=instream, outstream=outstream)
375       services.append(service)
376       inits.append(init)
377
378     python_path = ",".join([repr(p) for p in self.python_path])
379     argv = ",".join([repr(p) for p in self.argv])
380     return asterCompo.substitute(component=self.name, module=gen.module.name,
381                                  servicesdef="\n".join(defs), 
382                                  servicesimpl="\n".join(services), 
383                                  initservice='\n'.join(inits),
384                                  aster_dir=self.aster_dir, 
385                                  python_path=python_path, argv=argv)
386