--lite version of the WSDL file
[sfa.git] / wsdl / gw2wsdl.py
1 #!/usr/bin/python
2 #
3 # Sapan Bhatia <sapanb@cs.princeton.edu>
4 #
5 # Generates a WSDL for geniwrapper
6
7
8 import os, sys
9 import time
10 import pdb
11 import xml.dom.minidom
12 import xml.dom.ext
13 import apistub
14 import inspect
15
16 from types import *
17 from optparse import OptionParser
18
19 from sfa.trust.auth import Auth
20 from sfa.util.parameter import Parameter,Mixed
21
22 import globals
23
24 complex_types = {}
25 services = {}
26
27 num_types = 0
28
29 class SoapError(Exception):
30      def __init__(self, value):
31          self.value = value
32      def __str__(self):
33          return repr(self.value)
34 try:
35     set
36 except NameError:
37     from sets import Set
38     set = Set
39
40 def fold_complex_type_names(acc, arg):
41     name = arg.doc
42     if (type(acc)==list):
43         acc.append(name)
44     else:
45         python_is_braindead = acc.doc
46         acc = [python_is_braindead,name]
47     return acc
48
49 def fold_complex_type(acc, arg):
50     global complex_types
51     name = name_complex_type(arg)
52     complex_types[arg]=name
53     if (type(acc)==list):
54         acc.append(name)
55     else:
56         python_is_braindead = name_complex_type(acc)
57         acc = [python_is_braindead,name]
58     return acc
59
60 def name_complex_type(arg):
61     global num_types
62     global types
63
64     types_section = types.getElementsByTagName("xsd:schema")[0]
65
66     #pdb.set_trace()
67     if (isinstance(arg, Mixed)):
68         inner_types = reduce(fold_complex_type, arg)
69         inner_names = reduce(fold_complex_type_names, arg)
70         if (inner_types[-1]=="none"):
71             inner_types=inner_types[:-1]
72             min_args = 0
73         else:
74             min_args = 1
75     
76         num_types=num_types+1
77         type_name = "Type%d"%num_types
78         complex_type = types_section.appendChild(types.createElement("xsd:complexType"))
79         complex_type.setAttribute("name", type_name)
80
81         choice = complex_type.appendChild(types.createElement("xsd:choice"))
82         for n,t in zip(inner_names,inner_types):
83             element = choice.appendChild(types.createElement("element"))
84             element.setAttribute("name", n)
85             element.setAttribute("type", "%s"%t)
86             element.setAttribute("minOccurs","%d"%min_args)
87         return "xsdl:%s"%type_name
88     elif (isinstance(arg, Parameter)):
89         return (name_simple_type(arg.type))
90     elif type(arg) == ListType or type(arg) == TupleType:
91         inner_type = name_complex_type(arg[0]) 
92         num_types=num_types+1
93         type_name = "Type%d"%num_types
94         complex_type = types_section.appendChild(types.createElement("xsd:simpleType"))
95         complex_type.setAttribute("name", type_name)
96         complex_content = complex_type.appendChild(types.createElement("xsd:list"))
97         complex_content.setAttribute("itemType",inner_type)
98         return "xsdl:%s"%type_name
99     elif type(arg) == DictType or arg == DictType or (inspect.isclass(arg) and issubclass(arg, dict)):
100         num_types=num_types+1
101         type_name = "Type%d"%num_types
102         complex_type = types_section.appendChild(types.createElement("xsd:complexType"))
103         complex_type.setAttribute("name", type_name)
104         complex_content = complex_type.appendChild(types.createElement("xsd:sequence"))
105  
106         for k in arg.fields:
107             inner_type = name_complex_type(arg.fields[k]) 
108             element=complex_content.appendChild(types.createElement("xsd:element"))
109             element.setAttribute("name",k)
110             element.setAttribute("type",inner_type)
111
112         return "xsdl:%s"%type_name 
113     else:
114         return (name_simple_type(arg))
115
116 def name_simple_type(arg_type):
117     # A Parameter is reported as an instance, even though it is serialized as a type <>
118     if type(arg_type) == InstanceType:
119         return (name_simple_type(arg_type.type))
120     if arg_type == None:
121         return "none"
122     if arg_type == DictType:
123         return "xsd:anyType"
124     elif arg_type == IntType or arg_type == LongType:
125         return "xsd:int"
126     elif arg_type == bool:
127         return "xsd:boolean"
128     elif arg_type == FloatType:
129         return "xsd:double"
130     elif arg_type in StringTypes:
131         return "xsd:string"
132     else:
133        pdb.set_trace()
134        raise SoapError, "Cannot handle %s objects" % arg_type
135
136 def param_type(arg):
137     return (name_complex_type(arg))
138
139 def add_wsdl_ports_and_bindings (wsdl):
140     for method in apistub.methods:
141
142         # Skip system. methods
143         if "system." in method:
144             continue
145
146         function = apistub.callable(method) # Commented documentation
147         #lines = ["// " + line.strip() for line in function.__doc__.strip().split("\n")]
148         #print "\n".join(lines)
149         #print
150
151         
152         in_el = wsdl.firstChild.appendChild(wsdl.createElement("message"))
153         in_el.setAttribute("name", method + "_in")
154
155         for service_name in function.interfaces:
156             if (services.has_key(service_name)):
157                 if (not method in services[service_name]):
158                     services[service_name].append(method)
159             else:
160                 services[service_name]=[method]
161
162         # Arguments
163
164         if (function.accepts):
165             (min_args, max_args, defaults) = function.args()
166             for (argname,argtype) in zip(max_args,function.accepts):
167                 global interface_options
168                 if (not interface_options.lite or (argname!="cred")):
169                     arg_part = in_el.appendChild(wsdl.createElement("part"))
170                     arg_part.setAttribute("name", argname)
171                     arg_part.setAttribute("type", param_type(argtype))
172                 
173         # Return type            
174         return_type = function.returns
175         out_el = wsdl.firstChild.appendChild(wsdl.createElement("message"))
176         out_el.setAttribute("name", method + "_out")
177         ret_part = out_el.appendChild(wsdl.createElement("part"))
178         ret_part.setAttribute("name", "returnvalue")
179         ret_part.setAttribute("type", param_type(return_type))
180
181         # Port connecting arguments with return type
182
183         port_el = wsdl.firstChild.appendChild(wsdl.createElement("portType"))
184         port_el.setAttribute("name", method + "_port")
185         
186         op_el = port_el.appendChild(wsdl.createElement("operation"))
187         op_el.setAttribute("name", method)
188         inp_el=wsdl.createElement("input")
189         inp_el.setAttribute("message","tns:" + method + "_in")
190         inp_el.setAttribute("name",method+"_request")
191         op_el.appendChild(inp_el)
192         out_el = wsdl.createElement("output")
193         out_el.setAttribute("message","tns:" + method + "_out")
194         out_el.setAttribute("name",method+"_response")
195         op_el.appendChild(out_el)
196
197         # Bindings
198
199         bind_el = wsdl.firstChild.appendChild(wsdl.createElement("binding"))
200         bind_el.setAttribute("name", method + "_binding")
201         bind_el.setAttribute("type", "tns:" + method + "_port")
202         
203         soap_bind = bind_el.appendChild(wsdl.createElement("soap:binding"))
204         soap_bind.setAttribute("style", "rpc")
205         soap_bind.setAttribute("transport","http://schemas.xmlsoap.org/soap/http")
206
207         
208         wsdl_op = bind_el.appendChild(wsdl.createElement("operation"))
209         wsdl_op.setAttribute("name", method)
210         wsdl_op.appendChild(wsdl.createElement("soap:operation")).setAttribute("soapAction",
211                 "urn:" + method)
212
213         
214         wsdl_input = wsdl_op.appendChild(wsdl.createElement("input"))
215         input_soap_body = wsdl_input.appendChild(wsdl.createElement("soap:body"))
216         input_soap_body.setAttribute("use", "encoded")
217         input_soap_body.setAttribute("namespace", "urn:" + method)
218         input_soap_body.setAttribute("encodingStyle","http://schemas.xmlsoap.org/soap/encoding/")
219
220         
221         wsdl_output = wsdl_op.appendChild(wsdl.createElement("output"))
222         output_soap_body = wsdl_output.appendChild(wsdl.createElement("soap:body"))
223         output_soap_body.setAttribute("use", "encoded")
224         output_soap_body.setAttribute("namespace", "urn:" + method)
225         output_soap_body.setAttribute("encodingStyle","http://schemas.xmlsoap.org/soap/encoding/")
226         
227
228 def add_wsdl_service(wsdl):
229     for service in services.keys():
230         global interface_options
231         if (getattr(interface_options,service)):
232             service_el = wsdl.firstChild.appendChild(wsdl.createElement("service"))
233             service_el.setAttribute("name", service)
234
235             for method in services[service]:
236                     name=method
237                     servport_el = service_el.appendChild(wsdl.createElement("port"))
238                     servport_el.setAttribute("name", name + "_port")
239                     servport_el.setAttribute("binding", "tns:" + name + "_binding")
240
241                     soapaddress = servport_el.appendChild(wsdl.createElement("soap:address"))
242                     soapaddress.setAttribute("location", "%s/%s" % (globals.plc_ns,service))
243
244
245 def get_wsdl_definitions():
246     wsdl_text_header = """
247         <wsdl:definitions
248         name="geniwrapper_autogenerated"
249         targetNamespace="%s/2009/07/sfa.wsdl"
250         xmlns="http://schemas.xmlsoap.org/wsdl/"
251         xmlns:xsd="http://www.w3.org/2001/XMLSchema"
252         xmlns:xsdl="%s/2009/07/schema"
253         xmlns:tns="%s/2009/07/sfa.wsdl"
254         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
255         xmlns:soapenc="http://schemas.xmlsoap.org/wsdl/soap/encoding"
256         xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"/>
257         """ % (globals.plc_ns,globals.plc_ns,globals.plc_ns)
258         
259     wsdl = xml.dom.minidom.parseString(wsdl_text_header)
260     
261     return wsdl
262
263 def get_wsdl_definitions_and_types():
264     wsdl_text_header = """
265     <wsdl:definitions
266         name="geniwrapper_autogenerated"
267         targetNamespace="%s/2009/07/sfa.wsdl"
268         xmlns="http://schemas.xmlsoap.org/wsdl/"
269         xmlns:xsd="http://www.w3.org/2001/XMLSchema"
270         xmlns:xsdl="%s/2009/07/schema"
271         xmlns:tns="%s/2009/07/sfa.wsdl"
272         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
273         xmlns:soapenc="http://schemas.xmlsoap.org/wsdl/soap/encoding"
274         xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
275         <types>
276             <xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="%s/2009/07/schema"/>
277         </types>
278     </wsdl:definitions> """ % (globals.plc_ns, globals.plc_ns, globals.plc_ns, globals.plc_ns)
279     wsdl = xml.dom.minidom.parseString(wsdl_text_header)
280     return wsdl
281
282 def main():
283     global types
284     global interface_options
285
286     parser = OptionParser()
287     parser.add_option("-r", "--registry", dest="registry", action="store_true", 
288                               help="Generate registry.wsdl", metavar="FILE")
289     parser.add_option("-s", "--slice-manager",
290                               action="store_true", dest="slicemgr", 
291                               help="Generate sm.wsdl")
292     parser.add_option("-a", "--aggregate", action="store_true", dest="aggregate",
293                               help="Generate am.wsdl")
294     parser.add_option("-l", "--lite", action="store_true", dest="lite",
295                               help="Generate LITE version of the interface, in which calls exclude credentials")
296     (interface_options, args) = parser.parse_args()
297
298     types = get_wsdl_definitions_and_types()
299     wsdl = get_wsdl_definitions()
300     add_wsdl_ports_and_bindings(wsdl)
301     wsdl_types = wsdl.importNode(types.getElementsByTagName("types")[0], True)
302     wsdl.firstChild.appendChild(wsdl_types)
303     add_wsdl_service(wsdl)
304
305     xml.dom.ext.PrettyPrint(wsdl)
306
307 if __name__ == "__main__":
308         main()