Salome HOME
Merge master branch into V9_dev
[modules/yacs.git] / src / py2yacs / py2yacs.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 *-
3 # Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 # This library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License, or (at your option) any later version.
12 #
13 # This library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # Lesser General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with this library; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #
24 import ast
25
26 class FunctionProperties:
27   def __init__(self, function_name):
28     self.name = function_name
29     self.inputs=[]
30     self.outputs=None
31     self.errors=[]
32     self.imports=[]
33     pass
34   def __str__(self):
35     result = "Function:" + self.name + "\n"
36     result+= "  Inputs:" + str(self.inputs) + "\n"
37     result+= "  Outputs:"+ str(self.outputs) + "\n"
38     result+= "  Errors:" + str(self.errors) + "\n"
39     result+= "  Imports:"+ str(self.imports) + "\n"
40     return result
41
42 class v(ast.NodeVisitor):
43   def visit_Module(self, node):
44     #print(type(node).__name__, ":")
45     accepted_tokens = ["Import", "ImportFrom", "FunctionDef", "ClassDef"]
46     #print "module body:"
47     self.global_errors=[]
48     for e in node.body:
49       type_name = type(e).__name__
50       if type_name not in accepted_tokens:
51         error="py2yacs error at line %s: not accepted statement '%s'." % (
52                e.lineno, type_name)
53         self.global_errors.append(error)
54       #print(type_name)
55     #print("------------------------------------------------------------------")
56     self.functions=[]
57     self.lastfn=""
58     self.infunc=False
59     self.inargs=False
60     self.generic_visit(node)
61     pass
62   def visit_FunctionDef(self, node):
63     #print(type(node).__name__, ":", node.name)
64     if not self.infunc:
65       self.lastfn = FunctionProperties(node.name)
66       self.functions.append(self.lastfn)
67       self.infunc=True
68       #
69       self.generic_visit(node)
70       #
71       self.lastfn = None
72       self.infunc=False
73     pass
74   def visit_arg(self, node):
75     #print(type(node).__name__, ":", node.arg)
76     self.lastfn.inputs.append(node.arg)
77     pass
78   def visit_Return(self, node):
79     #print(type(node).__name__, ":", node.value)
80     if self.lastfn.outputs is not None :
81       error="py2yacs error at line %s: multiple returns." % node.lineno
82       self.lastfn.errors.append(error)
83       return
84     self.lastfn.outputs = []
85     if node.value is None :
86       pass
87     elif 'Tuple' == type(node.value).__name__ :
88       for e in node.value.elts:
89         if 'Name' == type(e).__name__ :
90           self.lastfn.outputs.append(e.id)
91         else :
92           error="py2yacs error at line %s: invalid type returned '%s'." % (
93                   node.lineno, type(e).__name__)
94           self.lastfn.errors.append(error)
95     else:
96       if 'Name' == type(node.value).__name__ :
97         self.lastfn.outputs.append(node.value.id)
98       else :
99         error="py2yacs error at line %s: invalid type returned '%s'." %(
100                   node.lineno, type(node.value).__name__)
101         self.lastfn.errors.append(error)
102         pass
103       pass
104     pass
105
106   def visit_ClassDef(self, node):
107     # just ignore classes
108     pass
109
110   def visit_Import(self, node):
111     if self.infunc:
112       for n in node.names:
113         self.lastfn.imports.append(n.name)
114   def visit_ImportFrom(self, node):
115     if self.infunc:
116       m=node.module
117       for n in node.names:
118         self.lastfn.imports.append(m+"."+n.name)
119
120 class vtest(ast.NodeVisitor):
121   def generic_visit(self, node):
122     #print type(node).__name__
123     ast.NodeVisitor.generic_visit(self, node)
124
125 def create_yacs_schema(text, fn_name, fn_args, fn_returns, file_name):
126   import pilot
127   import SALOMERuntime
128   #import loader
129   SALOMERuntime.RuntimeSALOME_setRuntime()
130   runtime = pilot.getRuntime()
131   schema = runtime.createProc("schema")
132   node = runtime.createFuncNode("", "default_name")
133   schema.edAddChild(node)
134   fncall = "\n%s=%s(%s)\n"%(",".join(fn_returns),
135                             fn_name,
136                             ",".join(fn_args))
137   node.setScript(text+fncall)
138   node.setFname(fn_name)
139   td=schema.getTypeCode("double")
140   for p in fn_args:
141     node.edAddInputPort(p, td)
142   for p in fn_returns:
143     node.edAddOutputPort(p, td)
144   schema.saveSchema(file_name)
145
146 def get_properties(text_file):
147   bt=ast.parse(text_file)
148   w=v()
149   w.visit(bt)
150   return w.functions, w.global_errors
151
152 if __name__ == '__main__':
153   import argparse
154   parser = argparse.ArgumentParser(description="Generate a YACS schema from a python file containing a function to run.")
155   parser.add_argument("file", help='Path to the python file')
156   parser.add_argument("-o","--output",
157         help='Path to the output file (yacs_schema.xml by default)',
158         default='yacs_schema.xml')
159   parser.add_argument("-d","--def_name",
160         help='Name of the function to call in the yacs node (_exec by default)',
161         default='_exec')
162   args = parser.parse_args()
163   with open(args.file, 'r') as f:
164     text_file = f.read()
165   #bt=ast.parse(text_file)
166   #w=vtest()
167   #w=v()
168   #w.visit(bt)
169   #print "global errors:", w.global_errors
170   #for f in w.functions:
171   #  print f
172   
173   fn_name = args.def_name
174   functions,errors = get_properties(text_file)
175   print("global errors:", errors)
176   for f in functions:
177     print(f)
178   
179   fn_properties = next((f for f in functions if f.name == fn_name), None)
180   if fn_properties is not None :
181     if not fn_properties.errors :
182       create_yacs_schema(text_file, fn_name,
183                        fn_properties.inputs, fn_properties.outputs,
184                        args.output)
185     else:
186       print("\n".join(fn_properties.errors))
187   else:
188     print("Function not found:", fn_name)