Salome HOME
Copyright update 2021
[modules/yacs.git] / src / runtime / Test / xmlrun_orig.sh
1 #!/usr/bin/env python3
2 # Copyright (C) 2006-2021  CEA/DEN, EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 import xmlrpc.client,sys
22
23 data="""
24 <methodCall>
25   <methodName>echo</methodName>
26   <params>
27     <param><value>hello, world</value></param>
28     <param><value><double>3.5</double></value></param>
29     <param><value><string>coucou</string></value></param>
30   </params>
31 </methodCall>
32 """
33 def echo(args):
34   print(args)
35   return args
36
37 with open("input",'r') as f:
38   data=f.read()
39 print(data)
40
41 class Objref:
42   """Wrapper for objrefs """
43   def __init__(self,data=None):
44     self.data=data
45   def __str__(self):
46     return self.data or ""
47
48 # __cmp__ is not defined in Python 3 : strict ordering
49   def __le__(self, other):
50     if isinstance(other, Binary):
51       other = other.data
52     return self.data <= other
53   def __lt__(self, other):
54     if isinstance(other, Binary):
55       other = other.data
56     return self.data < other
57   def __ge__(self, other):
58     if isinstance(other, Binary):
59       other = other.data
60     return self.data >= other
61   def __gt__(self, other):
62     if isinstance(other, Binary):
63       other = other.data
64     return self.data > other
65   def __eq__(self, other):
66     if isinstance(other, Binary):
67       other = other.data
68     return self.data == other
69   def __ne__(self, other):
70     if isinstance(other, Binary):
71       other = other.data
72     return self.data != other
73
74   def decode(self, data):
75     self.data = data
76
77   def encode(self, out):
78     out.write("<value><objref>")
79     out.write(self.data or "")
80     out.write("</objref></value>\n")
81
82 xmlrpc.client.WRAPPERS=xmlrpc.client.WRAPPERS+(Objref,)
83
84 def end_objref(self,data):
85   self.append(Objref(data))
86   self._value=0
87
88 xmlrpc.client.Unmarshaller.end_objref=end_objref
89 xmlrpc.client.Unmarshaller.dispatch["objref"]=end_objref
90
91 params, method = xmlrpc.client.loads(data)
92
93 try:
94   call=eval(method)
95   response=call(params)
96   response = (response,)
97 except:
98   # report exception back to server
99   response = xmlrpc.client.dumps( xmlrpc.client.Fault(1, "%s:%s" % sys.exc_info()[:2]))
100 else:
101   response = xmlrpc.client.dumps( response, methodresponse=1)
102
103 print(response)
104 with open("output",'w') as f:
105   f.write(response)