soap2r 1.5.8

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