soap4r_es 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/bin/wsdl2ruby.rb +140 -0
- data/bin/wsdl2ruby_rails.rb +140 -0
- data/bin/xsd2ruby.rb +92 -0
- data/lib/soap/attachment.rb +109 -0
- data/lib/soap/attrproxy.rb +35 -0
- data/lib/soap/baseData.rb +1095 -0
- data/lib/soap/element.rb +278 -0
- data/lib/soap/encodingstyle/aspDotNetHandler.rb +208 -0
- data/lib/soap/encodingstyle/handler.rb +121 -0
- data/lib/soap/encodingstyle/literalHandler.rb +196 -0
- data/lib/soap/encodingstyle/soapHandler.rb +560 -0
- data/lib/soap/filter/filterchain.rb +52 -0
- data/lib/soap/filter/handler.rb +32 -0
- data/lib/soap/filter/streamhandler.rb +30 -0
- data/lib/soap/filter.rb +14 -0
- data/lib/soap/generator.rb +299 -0
- data/lib/soap/header/handler.rb +64 -0
- data/lib/soap/header/handlerset.rb +78 -0
- data/lib/soap/header/mappinghandler.rb +48 -0
- data/lib/soap/header/simplehandler.rb +45 -0
- data/lib/soap/httpconfigloader.rb +140 -0
- data/lib/soap/mapping/encodedregistry.rb +541 -0
- data/lib/soap/mapping/factory.rb +389 -0
- data/lib/soap/mapping/literalregistry.rb +392 -0
- data/lib/soap/mapping/mapping.rb +577 -0
- data/lib/soap/mapping/registry.rb +297 -0
- data/lib/soap/mapping/rubytypeFactory.rb +446 -0
- data/lib/soap/mapping/schemadefinition.rb +171 -0
- data/lib/soap/mapping/typeMap.rb +107 -0
- data/lib/soap/mapping/wsdlencodedregistry.rb +212 -0
- data/lib/soap/mapping/wsdlliteralregistry.rb +249 -0
- data/lib/soap/mapping.rb +13 -0
- data/lib/soap/marshal.rb +60 -0
- data/lib/soap/mimemessage.rb +243 -0
- data/lib/soap/nestedexception.rb +43 -0
- data/lib/soap/netHttpClient.rb +242 -0
- data/lib/soap/ns.rb +39 -0
- data/lib/soap/parser.rb +253 -0
- data/lib/soap/processor.rb +67 -0
- data/lib/soap/property.rb +330 -0
- data/lib/soap/proxy.rb +15 -0
- data/lib/soap/rpc/cgistub.rb +249 -0
- data/lib/soap/rpc/driver.rb +222 -0
- data/lib/soap/rpc/element.rb +375 -0
- data/lib/soap/rpc/httpserver.rb +144 -0
- data/lib/soap/rpc/methodDef.rb +69 -0
- data/lib/soap/rpc/proxy.rb +573 -0
- data/lib/soap/rpc/router.rb +672 -0
- data/lib/soap/rpc/rpc.rb +26 -0
- data/lib/soap/rpc/soaplet.rb +201 -0
- data/lib/soap/rpc/standaloneServer.rb +44 -0
- data/lib/soap/soap.rb +163 -0
- data/lib/soap/streamHandler.rb +302 -0
- data/lib/soap/version.rb +12 -0
- data/lib/soap/wsdlDriver.rb +165 -0
- data/lib/wsdl/binding.rb +66 -0
- data/lib/wsdl/data.rb +65 -0
- data/lib/wsdl/definitions.rb +237 -0
- data/lib/wsdl/documentation.rb +33 -0
- data/lib/wsdl/import.rb +81 -0
- data/lib/wsdl/importer.rb +39 -0
- data/lib/wsdl/info.rb +51 -0
- data/lib/wsdl/message.rb +55 -0
- data/lib/wsdl/operation.rb +152 -0
- data/lib/wsdl/operationBinding.rb +241 -0
- data/lib/wsdl/param.rb +94 -0
- data/lib/wsdl/parser.rb +180 -0
- data/lib/wsdl/part.rb +53 -0
- data/lib/wsdl/port.rb +67 -0
- data/lib/wsdl/portType.rb +76 -0
- data/lib/wsdl/service.rb +62 -0
- data/lib/wsdl/soap/address.rb +41 -0
- data/lib/wsdl/soap/binding.rb +50 -0
- data/lib/wsdl/soap/body.rb +59 -0
- data/lib/wsdl/soap/cgiStubCreator.rb +93 -0
- data/lib/wsdl/soap/classDefCreator.rb +529 -0
- data/lib/wsdl/soap/classDefCreatorSupport.rb +242 -0
- data/lib/wsdl/soap/classNameCreator.rb +57 -0
- data/lib/wsdl/soap/clientSkeltonCreator.rb +107 -0
- data/lib/wsdl/soap/complexType.rb +174 -0
- data/lib/wsdl/soap/data.rb +43 -0
- data/lib/wsdl/soap/definitions.rb +201 -0
- data/lib/wsdl/soap/driverCreator.rb +121 -0
- data/lib/wsdl/soap/element.rb +34 -0
- data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +74 -0
- data/lib/wsdl/soap/fault.rb +57 -0
- data/lib/wsdl/soap/header.rb +87 -0
- data/lib/wsdl/soap/headerfault.rb +57 -0
- data/lib/wsdl/soap/literalMappingRegistryCreator.rb +116 -0
- data/lib/wsdl/soap/mappingRegistryCreator.rb +59 -0
- data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +380 -0
- data/lib/wsdl/soap/methodDefCreator.rb +200 -0
- data/lib/wsdl/soap/operation.rb +113 -0
- data/lib/wsdl/soap/servantSkeltonCreator.rb +92 -0
- data/lib/wsdl/soap/servletStubCreator.rb +105 -0
- data/lib/wsdl/soap/standaloneServerStubCreator.rb +101 -0
- data/lib/wsdl/soap/wsdl2ruby.rb +249 -0
- data/lib/wsdl/types.rb +45 -0
- data/lib/wsdl/wsdl.rb +25 -0
- data/lib/wsdl/xmlSchema/all.rb +25 -0
- data/lib/wsdl/xmlSchema/annotation.rb +35 -0
- data/lib/wsdl/xmlSchema/any.rb +62 -0
- data/lib/wsdl/xmlSchema/anyAttribute.rb +49 -0
- data/lib/wsdl/xmlSchema/attribute.rb +105 -0
- data/lib/wsdl/xmlSchema/attributeGroup.rb +69 -0
- data/lib/wsdl/xmlSchema/choice.rb +59 -0
- data/lib/wsdl/xmlSchema/complexContent.rb +98 -0
- data/lib/wsdl/xmlSchema/complexExtension.rb +120 -0
- data/lib/wsdl/xmlSchema/complexRestriction.rb +105 -0
- data/lib/wsdl/xmlSchema/complexType.rb +194 -0
- data/lib/wsdl/xmlSchema/content.rb +96 -0
- data/lib/wsdl/xmlSchema/data.rb +117 -0
- data/lib/wsdl/xmlSchema/element.rb +154 -0
- data/lib/wsdl/xmlSchema/enumeration.rb +37 -0
- data/lib/wsdl/xmlSchema/fractiondigits.rb +38 -0
- data/lib/wsdl/xmlSchema/group.rb +101 -0
- data/lib/wsdl/xmlSchema/import.rb +53 -0
- data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
- data/lib/wsdl/xmlSchema/importer.rb +103 -0
- data/lib/wsdl/xmlSchema/include.rb +48 -0
- data/lib/wsdl/xmlSchema/length.rb +38 -0
- data/lib/wsdl/xmlSchema/list.rb +49 -0
- data/lib/wsdl/xmlSchema/maxexclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/maxinclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/maxlength.rb +38 -0
- data/lib/wsdl/xmlSchema/minexclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/mininclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/minlength.rb +38 -0
- data/lib/wsdl/xmlSchema/parser.rb +168 -0
- data/lib/wsdl/xmlSchema/pattern.rb +37 -0
- data/lib/wsdl/xmlSchema/ref.rb +34 -0
- data/lib/wsdl/xmlSchema/schema.rb +179 -0
- data/lib/wsdl/xmlSchema/sequence.rb +55 -0
- data/lib/wsdl/xmlSchema/simpleContent.rb +70 -0
- data/lib/wsdl/xmlSchema/simpleExtension.rb +63 -0
- data/lib/wsdl/xmlSchema/simpleRestriction.rb +133 -0
- data/lib/wsdl/xmlSchema/simpleType.rb +88 -0
- data/lib/wsdl/xmlSchema/totaldigits.rb +38 -0
- data/lib/wsdl/xmlSchema/union.rb +36 -0
- data/lib/wsdl/xmlSchema/unique.rb +35 -0
- data/lib/wsdl/xmlSchema/whitespace.rb +38 -0
- data/lib/wsdl/xmlSchema/xsd2ruby.rb +177 -0
- data/lib/xsd/charset.rb +190 -0
- data/lib/xsd/codegen/classdef.rb +230 -0
- data/lib/xsd/codegen/commentdef.rb +35 -0
- data/lib/xsd/codegen/gensupport.rb +277 -0
- data/lib/xsd/codegen/methoddef.rb +71 -0
- data/lib/xsd/codegen/moduledef.rb +209 -0
- data/lib/xsd/codegen.rb +13 -0
- data/lib/xsd/datatypes.rb +1465 -0
- data/lib/xsd/datatypes1999.rb +21 -0
- data/lib/xsd/iconvcharset.rb +33 -0
- data/lib/xsd/mapping.rb +69 -0
- data/lib/xsd/namedelements.rb +133 -0
- data/lib/xsd/ns.rb +183 -0
- data/lib/xsd/qname.rb +80 -0
- data/lib/xsd/xmlparser/libxmlparser.rb +136 -0
- data/lib/xsd/xmlparser/nokogiriparser.rb +63 -0
- data/lib/xsd/xmlparser/ogaparser.rb +53 -0
- data/lib/xsd/xmlparser/oxparser.rb +97 -0
- data/lib/xsd/xmlparser/parser.rb +101 -0
- data/lib/xsd/xmlparser/rexmlparser.rb +54 -0
- data/lib/xsd/xmlparser.rb +81 -0
- metadata +240 -0
@@ -0,0 +1,242 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - Creating class code support from WSDL.
|
3
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
4
|
+
|
5
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
6
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
7
|
+
# either the dual license version in 2003, or any later version.
|
8
|
+
|
9
|
+
|
10
|
+
require 'wsdl/info'
|
11
|
+
require 'soap/mapping'
|
12
|
+
require 'soap/mapping/typeMap'
|
13
|
+
require 'xsd/codegen/gensupport'
|
14
|
+
|
15
|
+
|
16
|
+
module WSDL
|
17
|
+
module SOAP
|
18
|
+
|
19
|
+
|
20
|
+
# requires @defined_const, @simpletypes, @name_creator
|
21
|
+
module ClassDefCreatorSupport
|
22
|
+
include XSD::CodeGen::GenSupport
|
23
|
+
|
24
|
+
def mapped_class_name(qname, modulepath)
|
25
|
+
@name_creator.assign_name(qname, modulepath)
|
26
|
+
end
|
27
|
+
|
28
|
+
def mapped_class_basename(qname, modulepath)
|
29
|
+
classname = @name_creator.assign_name(qname, modulepath)
|
30
|
+
classname.sub(/\A.*:/, '')
|
31
|
+
end
|
32
|
+
|
33
|
+
def basetype_mapped_class(name)
|
34
|
+
::SOAP::TypeMap[name]
|
35
|
+
end
|
36
|
+
|
37
|
+
def dump_method_signature(name, operation, element_definitions)
|
38
|
+
methodname = safemethodname(name)
|
39
|
+
input = operation.input
|
40
|
+
output = operation.output
|
41
|
+
fault = operation.fault
|
42
|
+
signature = "#{methodname}#{dump_inputparam(input)}"
|
43
|
+
str = <<__EOD__
|
44
|
+
# SYNOPSIS
|
45
|
+
# #{methodname}#{dump_inputparam(input)}
|
46
|
+
#
|
47
|
+
# ARGS
|
48
|
+
#{dump_inout_type(input, element_definitions).chomp}
|
49
|
+
#
|
50
|
+
# RETURNS
|
51
|
+
#{dump_inout_type(output, element_definitions).chomp}
|
52
|
+
#
|
53
|
+
__EOD__
|
54
|
+
unless fault.empty?
|
55
|
+
str += <<__EOD__
|
56
|
+
# RAISES
|
57
|
+
#{dump_fault_type(fault, element_definitions)}
|
58
|
+
#
|
59
|
+
__EOD__
|
60
|
+
end
|
61
|
+
str
|
62
|
+
end
|
63
|
+
|
64
|
+
def dq(ele)
|
65
|
+
ele.dump
|
66
|
+
end
|
67
|
+
|
68
|
+
def ndq(ele)
|
69
|
+
ele.nil? ? 'nil' : dq(ele)
|
70
|
+
end
|
71
|
+
|
72
|
+
def sym(ele)
|
73
|
+
':' + ele.id2name
|
74
|
+
end
|
75
|
+
|
76
|
+
def nsym(ele)
|
77
|
+
ele.nil? ? 'nil' : sym(ele)
|
78
|
+
end
|
79
|
+
|
80
|
+
def dqname(qname)
|
81
|
+
if @defined_const.key?(qname.namespace)
|
82
|
+
qname.dump(@defined_const[qname.namespace])
|
83
|
+
else
|
84
|
+
qname.dump
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
def assign_const(value, prefix = '')
|
89
|
+
return if value.nil? or @defined_const.key?(value)
|
90
|
+
name = value.scan(/[^:\/]+\/?\z/)[0] || 'C'
|
91
|
+
tag = prefix + safeconstname(name)
|
92
|
+
if @defined_const.value?(tag)
|
93
|
+
idx = 0
|
94
|
+
while true
|
95
|
+
tag = prefix + safeconstname(name + "_#{idx}")
|
96
|
+
break unless @defined_const.value?(tag)
|
97
|
+
idx += 1
|
98
|
+
raise RuntimeError.new("too much similar names") if idx > 100
|
99
|
+
end
|
100
|
+
end
|
101
|
+
@defined_const[value] = tag
|
102
|
+
end
|
103
|
+
|
104
|
+
def create_type_name(modulepath, element)
|
105
|
+
if element.type == XSD::AnyTypeName
|
106
|
+
# nil means anyType.
|
107
|
+
nil
|
108
|
+
elsif simpletype = @simpletypes[element.type]
|
109
|
+
#MODIFICATO PER RESTRICTION NON GESTITE
|
110
|
+
if simpletype.restriction #and simpletype.restriction.enumeration?
|
111
|
+
mapped_class_name(element.type, modulepath)
|
112
|
+
else
|
113
|
+
nil
|
114
|
+
end
|
115
|
+
elsif klass = element_basetype(element)
|
116
|
+
klass.name
|
117
|
+
elsif element.type
|
118
|
+
mapped_class_name(element.type, modulepath)
|
119
|
+
elsif element.ref
|
120
|
+
mapped_class_name(element.ref, modulepath)
|
121
|
+
elsif element.anonymous_type?
|
122
|
+
# inner class
|
123
|
+
mapped_class_name(element.name, modulepath)
|
124
|
+
else
|
125
|
+
nil
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
private
|
130
|
+
|
131
|
+
def dump_inout_type(param, element_definitions)
|
132
|
+
if param
|
133
|
+
message = param.find_message
|
134
|
+
params = ""
|
135
|
+
message.parts.each do |part|
|
136
|
+
name = safevarname(part.name)
|
137
|
+
if part.type
|
138
|
+
typename = safeconstname(part.type.name)
|
139
|
+
qname = part.type
|
140
|
+
params << add_at("# #{name}", "#{typename} - #{qname}\n", 20)
|
141
|
+
elsif part.element
|
142
|
+
ele = element_definitions[part.element]
|
143
|
+
if ele.type
|
144
|
+
typename = safeconstname(ele.type.name)
|
145
|
+
qname = ele.type
|
146
|
+
else
|
147
|
+
typename = safeconstname(ele.name.name)
|
148
|
+
qname = ele.name
|
149
|
+
end
|
150
|
+
params << add_at("# #{name}", "#{typename} - #{qname}\n", 20)
|
151
|
+
end
|
152
|
+
end
|
153
|
+
unless params.empty?
|
154
|
+
return params
|
155
|
+
end
|
156
|
+
end
|
157
|
+
"# N/A\n"
|
158
|
+
end
|
159
|
+
|
160
|
+
def dump_inputparam(input)
|
161
|
+
message = input.find_message
|
162
|
+
params = ""
|
163
|
+
message.parts.each do |part|
|
164
|
+
params << ", " unless params.empty?
|
165
|
+
params << safevarname(part.name)
|
166
|
+
end
|
167
|
+
if params.empty?
|
168
|
+
""
|
169
|
+
else
|
170
|
+
"(#{ params })"
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
def add_at(base, str, pos)
|
175
|
+
if base.size >= pos
|
176
|
+
base + ' ' + str
|
177
|
+
else
|
178
|
+
base + ' ' * (pos - base.size) + str
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
def dump_fault_type(fault, element_definitions)
|
183
|
+
fault.collect { |ele|
|
184
|
+
dump_inout_type(ele, element_definitions).chomp
|
185
|
+
}.join("\n")
|
186
|
+
end
|
187
|
+
|
188
|
+
def element_basetype(ele)
|
189
|
+
if klass = basetype_class(ele.type)
|
190
|
+
klass
|
191
|
+
elsif ele.local_simpletype
|
192
|
+
basetype_class(ele.local_simpletype.base)
|
193
|
+
else
|
194
|
+
nil
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
def attribute_basetype(attr)
|
199
|
+
if klass = basetype_class(attr.type)
|
200
|
+
klass
|
201
|
+
elsif attr.local_simpletype
|
202
|
+
basetype_class(attr.local_simpletype.base)
|
203
|
+
else
|
204
|
+
nil
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
def basetype_class(type)
|
209
|
+
return nil if type.nil?
|
210
|
+
if simpletype = @simpletypes[type]
|
211
|
+
basetype_mapped_class(simpletype.base)
|
212
|
+
else
|
213
|
+
basetype_mapped_class(type)
|
214
|
+
end
|
215
|
+
end
|
216
|
+
|
217
|
+
def name_element(element)
|
218
|
+
return element.name if element.name
|
219
|
+
return element.ref if element.ref
|
220
|
+
raise RuntimeError.new("cannot define name of #{element}")
|
221
|
+
end
|
222
|
+
|
223
|
+
def name_attribute(attribute)
|
224
|
+
return attribute.name if attribute.name
|
225
|
+
return attribute.ref if attribute.ref
|
226
|
+
raise RuntimeError.new("cannot define name of #{attribute}")
|
227
|
+
end
|
228
|
+
|
229
|
+
# TODO: run MethodDefCreator just once in 1.6.X.
|
230
|
+
# MethodDefCreator should return parsed struct, not a String.
|
231
|
+
def collect_assigned_method(wsdl, porttypename, modulepath = nil)
|
232
|
+
name_creator = WSDL::SOAP::ClassNameCreator.new
|
233
|
+
methoddefcreator =
|
234
|
+
WSDL::SOAP::MethodDefCreator.new(wsdl, name_creator, modulepath, {})
|
235
|
+
methoddefcreator.dump(porttypename)
|
236
|
+
methoddefcreator.assigned_method
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
240
|
+
|
241
|
+
end
|
242
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - Class name creator.
|
3
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
4
|
+
|
5
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
6
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
7
|
+
# either the dual license version in 2003, or any later version.
|
8
|
+
|
9
|
+
|
10
|
+
require 'soap/mapping/typeMap'
|
11
|
+
require 'xsd/codegen/gensupport'
|
12
|
+
|
13
|
+
|
14
|
+
module WSDL
|
15
|
+
module SOAP
|
16
|
+
|
17
|
+
|
18
|
+
class ClassNameCreator
|
19
|
+
include XSD::CodeGen::GenSupport
|
20
|
+
|
21
|
+
def initialize
|
22
|
+
@classname = {}
|
23
|
+
end
|
24
|
+
|
25
|
+
def assign_name(qname, modulepath = nil)
|
26
|
+
key = [modulepath, qname]
|
27
|
+
unless @classname.key?(key)
|
28
|
+
if klass = ::SOAP::TypeMap[qname]
|
29
|
+
name =
|
30
|
+
::SOAP::Mapping::DefaultRegistry.find_mapped_obj_class(klass).name
|
31
|
+
else
|
32
|
+
name = safeconstname(qname.name)
|
33
|
+
if modulepath
|
34
|
+
name = [modulepath, name].join('::')
|
35
|
+
end
|
36
|
+
#MODIFICATO
|
37
|
+
#aggiunge degli _ al nome della classe per non fare lo stesso nome di classe
|
38
|
+
# while @classname.value?(name)
|
39
|
+
# name += '_'
|
40
|
+
# end
|
41
|
+
check_classname(name)
|
42
|
+
end
|
43
|
+
@classname[key] = name.freeze
|
44
|
+
end
|
45
|
+
@classname[key]
|
46
|
+
end
|
47
|
+
|
48
|
+
def check_classname(name)
|
49
|
+
if Object.constants.include?(name)
|
50
|
+
warn("created definition re-opens an existing toplevel class: #{name}. consider to use --module_path option of wsdl2ruby.rb")
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,107 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - Creating client skelton code from WSDL.
|
3
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
4
|
+
|
5
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
6
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
7
|
+
# either the dual license version in 2003, or any later version.
|
8
|
+
|
9
|
+
|
10
|
+
require 'wsdl/info'
|
11
|
+
require 'wsdl/soap/classDefCreatorSupport'
|
12
|
+
|
13
|
+
|
14
|
+
module WSDL
|
15
|
+
module SOAP
|
16
|
+
|
17
|
+
|
18
|
+
class ClientSkeltonCreator
|
19
|
+
include ClassDefCreatorSupport
|
20
|
+
|
21
|
+
attr_reader :definitions
|
22
|
+
|
23
|
+
def initialize(definitions, name_creator, modulepath = nil)
|
24
|
+
@definitions = definitions
|
25
|
+
@name_creator = name_creator
|
26
|
+
@modulepath = modulepath
|
27
|
+
end
|
28
|
+
|
29
|
+
def dump(service_name)
|
30
|
+
services = @definitions.service(service_name)
|
31
|
+
unless services
|
32
|
+
raise RuntimeError.new("service not defined: #{service_name}")
|
33
|
+
end
|
34
|
+
result = ""
|
35
|
+
if @modulepath
|
36
|
+
result << "\n"
|
37
|
+
modulepath = @modulepath.respond_to?(:lines) ? @modulepath.lines : @modulepath # RubyJedi: compatible with Ruby 1.8.6 and above
|
38
|
+
result << modulepath.collect { |ele| "module #{ele}" }.join("; ")
|
39
|
+
result << "\n\n"
|
40
|
+
end
|
41
|
+
services.ports.each do |port|
|
42
|
+
result << dump_porttype(port.porttype)
|
43
|
+
result << "\n"
|
44
|
+
end
|
45
|
+
if @modulepath
|
46
|
+
result << "\n\n"
|
47
|
+
modulepath = @modulepath.respond_to?(:lines) ? @modulepath.lines : @modulepath # RubyJedi: compatible with Ruby 1.8.6 and above
|
48
|
+
result << modulepath.collect { |ele| "end" }.join("; ")
|
49
|
+
result << "\n"
|
50
|
+
end
|
51
|
+
result
|
52
|
+
end
|
53
|
+
|
54
|
+
private
|
55
|
+
|
56
|
+
def dump_porttype(porttype)
|
57
|
+
assigned_method = collect_assigned_method(@definitions, porttype.name, @modulepath)
|
58
|
+
drv_name = mapped_class_basename(porttype.name, @modulepath)
|
59
|
+
|
60
|
+
result = ""
|
61
|
+
result << <<__EOD__
|
62
|
+
endpoint_url = ARGV.shift
|
63
|
+
obj = #{ drv_name }.new(endpoint_url)
|
64
|
+
|
65
|
+
# run ruby with -d to see SOAP wiredumps.
|
66
|
+
obj.wiredump_dev = STDERR if $DEBUG
|
67
|
+
|
68
|
+
__EOD__
|
69
|
+
element_definitions = @definitions.collect_elements
|
70
|
+
binding = porttype.find_binding
|
71
|
+
if binding
|
72
|
+
binding.operations.each do |op_bind|
|
73
|
+
operation = op_bind.find_operation
|
74
|
+
if operation.nil?
|
75
|
+
warn("operation not found for binding: #{op_bind}")
|
76
|
+
next
|
77
|
+
end
|
78
|
+
name = assigned_method[op_bind.boundid] || operation.name
|
79
|
+
result << dump_method_signature(name, operation, element_definitions)
|
80
|
+
result << dump_input_init(operation.input) << "\n"
|
81
|
+
result << dump_operation(name, operation) << "\n\n"
|
82
|
+
end
|
83
|
+
end
|
84
|
+
result
|
85
|
+
end
|
86
|
+
|
87
|
+
def dump_operation(name, operation)
|
88
|
+
input = operation.input
|
89
|
+
"puts obj.#{ safemethodname(name) }#{ dump_inputparam(input) }"
|
90
|
+
end
|
91
|
+
|
92
|
+
def dump_input_init(input)
|
93
|
+
result = input.find_message.parts.collect { |part|
|
94
|
+
safevarname(part.name)
|
95
|
+
}.join(" = ")
|
96
|
+
if result.empty?
|
97
|
+
""
|
98
|
+
else
|
99
|
+
result << " = nil"
|
100
|
+
end
|
101
|
+
result
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
|
106
|
+
end
|
107
|
+
end
|
@@ -0,0 +1,174 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - SOAP complexType definition for WSDL.
|
3
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
4
|
+
|
5
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
6
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
7
|
+
# either the dual license version in 2003, or any later version.
|
8
|
+
|
9
|
+
|
10
|
+
require 'wsdl/xmlSchema/complexType'
|
11
|
+
require 'soap/mapping'
|
12
|
+
require 'byebug'
|
13
|
+
|
14
|
+
module WSDL
|
15
|
+
module XMLSchema
|
16
|
+
|
17
|
+
|
18
|
+
class ComplexType < Info
|
19
|
+
def compoundtype
|
20
|
+
@compoundtype ||= check_type
|
21
|
+
end
|
22
|
+
|
23
|
+
def check_type
|
24
|
+
if have_any?
|
25
|
+
:TYPE_STRUCT
|
26
|
+
elsif content
|
27
|
+
if attributes.empty? and map_as_array?
|
28
|
+
if name == ::SOAP::Mapping::MapQName
|
29
|
+
:TYPE_MAP
|
30
|
+
else
|
31
|
+
:TYPE_ARRAY
|
32
|
+
end
|
33
|
+
else
|
34
|
+
:TYPE_STRUCT
|
35
|
+
end
|
36
|
+
elsif complexcontent
|
37
|
+
complexcontent.check_type
|
38
|
+
elsif simplecontent
|
39
|
+
:TYPE_SIMPLE
|
40
|
+
elsif !attributes.empty?
|
41
|
+
:TYPE_STRUCT
|
42
|
+
else # empty complexType definition (seen in partner.wsdl of salesforce)
|
43
|
+
:TYPE_EMPTY
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def child_type(name = nil)
|
48
|
+
case compoundtype
|
49
|
+
when :TYPE_STRUCT
|
50
|
+
if ele = find_element(name)
|
51
|
+
ele.type
|
52
|
+
elsif ele = find_element_by_name(name.name)
|
53
|
+
ele.type
|
54
|
+
end
|
55
|
+
when :TYPE_ARRAY
|
56
|
+
@contenttype ||= content_arytype
|
57
|
+
when :TYPE_MAP
|
58
|
+
item_ele = find_element_by_name("item") or
|
59
|
+
raise RuntimeError.new("'item' element not found in Map definition.")
|
60
|
+
content = item_ele.local_complextype or
|
61
|
+
raise RuntimeError.new("No complexType definition for 'item'.")
|
62
|
+
if ele = content.find_element(name)
|
63
|
+
ele.type
|
64
|
+
elsif ele = content.find_element_by_name(name.name)
|
65
|
+
ele.type
|
66
|
+
end
|
67
|
+
else
|
68
|
+
raise NotImplementedError.new("Unknown kind of complexType.")
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
def child_defined_complextype(name)
|
73
|
+
ele = nil
|
74
|
+
case compoundtype
|
75
|
+
when :TYPE_STRUCT, :TYPE_MAP
|
76
|
+
unless ele = find_element(name)
|
77
|
+
if name.namespace.nil?
|
78
|
+
ele = find_element_by_name(name.name)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
when :TYPE_ARRAY
|
82
|
+
e = elements
|
83
|
+
if e.size == 1
|
84
|
+
ele = e[0]
|
85
|
+
else
|
86
|
+
raise RuntimeError.new("Assert: must not reach.")
|
87
|
+
end
|
88
|
+
else
|
89
|
+
raise RuntimeError.new("Assert: Not implemented.")
|
90
|
+
end
|
91
|
+
unless ele
|
92
|
+
raise RuntimeError.new("Cannot find #{name} as a children of #{@name}.")
|
93
|
+
end
|
94
|
+
ele.local_complextype
|
95
|
+
end
|
96
|
+
|
97
|
+
def find_soapenc_arytype
|
98
|
+
unless compoundtype == :TYPE_ARRAY
|
99
|
+
raise RuntimeError.new("Assert: not for array")
|
100
|
+
end
|
101
|
+
if complexcontent
|
102
|
+
if complexcontent.restriction
|
103
|
+
complexcontent.restriction.attributes.each do |attribute|
|
104
|
+
if attribute.ref == ::SOAP::AttrArrayTypeName
|
105
|
+
return attribute.arytype
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
nil
|
111
|
+
end
|
112
|
+
|
113
|
+
def find_arytype
|
114
|
+
unless compoundtype == :TYPE_ARRAY
|
115
|
+
raise RuntimeError.new("Assert: not for array")
|
116
|
+
end
|
117
|
+
if arytype = find_soapenc_arytype
|
118
|
+
return arytype
|
119
|
+
end
|
120
|
+
if map_as_array?
|
121
|
+
return element_simpletype(elements[0])
|
122
|
+
end
|
123
|
+
raise RuntimeError.new("Assert: Unknown array definition.")
|
124
|
+
end
|
125
|
+
|
126
|
+
def find_aryelement
|
127
|
+
unless compoundtype == :TYPE_ARRAY
|
128
|
+
raise RuntimeError.new("Assert: not for array")
|
129
|
+
end
|
130
|
+
if map_as_array?
|
131
|
+
return nested_elements[0]
|
132
|
+
end
|
133
|
+
nil # use default item name
|
134
|
+
end
|
135
|
+
|
136
|
+
private
|
137
|
+
|
138
|
+
def element_simpletype(element)
|
139
|
+
case element
|
140
|
+
when XMLSchema::Element
|
141
|
+
if element.type
|
142
|
+
element.type
|
143
|
+
elsif element.local_simpletype
|
144
|
+
element.local_simpletype.base
|
145
|
+
else
|
146
|
+
# element definition
|
147
|
+
nil
|
148
|
+
end
|
149
|
+
when XMLSchema::Any
|
150
|
+
XSD::AnyTypeName
|
151
|
+
else
|
152
|
+
nil
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
def map_as_array?
|
157
|
+
e = nested_elements
|
158
|
+
e.size == 1 and e[0].map_as_array?
|
159
|
+
end
|
160
|
+
|
161
|
+
def content_arytype
|
162
|
+
if arytype = find_arytype
|
163
|
+
ns = arytype.namespace
|
164
|
+
name = arytype.name.sub(/\[(?:,)*\]$/, '')
|
165
|
+
XSD::QName.new(ns, name)
|
166
|
+
else
|
167
|
+
nil
|
168
|
+
end
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
|
173
|
+
end
|
174
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL SOAP binding data definitions.
|
3
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
4
|
+
|
5
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
6
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
7
|
+
# either the dual license version in 2003, or any later version.
|
8
|
+
|
9
|
+
|
10
|
+
require 'xsd/qname'
|
11
|
+
require 'wsdl/soap/definitions'
|
12
|
+
require 'wsdl/soap/binding'
|
13
|
+
require 'wsdl/soap/operation'
|
14
|
+
require 'wsdl/soap/body'
|
15
|
+
require 'wsdl/soap/element'
|
16
|
+
require 'wsdl/soap/header'
|
17
|
+
require 'wsdl/soap/headerfault'
|
18
|
+
require 'wsdl/soap/fault'
|
19
|
+
require 'wsdl/soap/address'
|
20
|
+
require 'wsdl/soap/complexType'
|
21
|
+
|
22
|
+
|
23
|
+
module WSDL
|
24
|
+
module SOAP
|
25
|
+
|
26
|
+
|
27
|
+
HeaderFaultName = XSD::QName.new(SOAPBindingNamespace, 'headerfault')
|
28
|
+
|
29
|
+
LocationAttrName = XSD::QName.new(nil, 'location')
|
30
|
+
StyleAttrName = XSD::QName.new(nil, 'style')
|
31
|
+
TransportAttrName = XSD::QName.new(nil, 'transport')
|
32
|
+
UseAttrName = XSD::QName.new(nil, 'use')
|
33
|
+
PartsAttrName = XSD::QName.new(nil, 'parts')
|
34
|
+
PartAttrName = XSD::QName.new(nil, 'part')
|
35
|
+
NameAttrName = XSD::QName.new(nil, 'name')
|
36
|
+
MessageAttrName = XSD::QName.new(nil, 'message')
|
37
|
+
EncodingStyleAttrName = XSD::QName.new(nil, 'encodingStyle')
|
38
|
+
NamespaceAttrName = XSD::QName.new(nil, 'namespace')
|
39
|
+
SOAPActionAttrName = XSD::QName.new(nil, 'soapAction')
|
40
|
+
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|