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,164 @@
1
+ # SOAP4R - SOAP WSDL driver
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/parser'
10
+ require 'wsdl/importer'
11
+ require 'xsd/qname'
12
+ require 'xsd/codegen/gensupport'
13
+ require 'soap/attrproxy'
14
+ require 'soap/mapping/wsdlencodedregistry'
15
+ require 'soap/mapping/wsdlliteralregistry'
16
+ require 'soap/rpc/driver'
17
+ require 'wsdl/soap/methodDefCreator'
18
+ require 'wsdl/soap/classDefCreatorSupport'
19
+ require 'wsdl/soap/classNameCreator'
20
+
21
+
22
+ module SOAP
23
+
24
+
25
+ class WSDLDriverFactory
26
+ include WSDL::SOAP::ClassDefCreatorSupport
27
+
28
+ class FactoryError < StandardError; end
29
+
30
+ attr_reader :wsdl
31
+
32
+ def initialize(wsdl)
33
+ @wsdl = import(wsdl)
34
+ end
35
+
36
+ def inspect
37
+ sprintf("#<%s:%s:0x%x\n\n%s>", self.class.name, @wsdl.name, __id__, dump_method_signatures)
38
+ end
39
+
40
+ def create_rpc_driver(servicename = nil, portname = nil)
41
+ port = find_port(servicename, portname)
42
+ drv = SOAP::RPC::Driver.new(port.soap_address.location)
43
+ if binding = port.find_binding
44
+ init_driver(drv, binding)
45
+ add_operation(drv, binding)
46
+ end
47
+ drv
48
+ end
49
+
50
+ def dump_method_signatures(servicename = nil, portname = nil)
51
+ targetservice = XSD::QName.new(@wsdl.targetnamespace, servicename) if servicename
52
+ targetport = XSD::QName.new(@wsdl.targetnamespace, portname) if portname
53
+ sig = []
54
+ element_definitions = @wsdl.collect_elements
55
+ @wsdl.services.each do |service|
56
+ next if targetservice and service.name != targetservice
57
+ service.ports.each do |port|
58
+ next if targetport and port.name != targetport
59
+ if porttype = port.porttype
60
+ assigned_method = collect_assigned_method(porttype.name)
61
+ if binding = port.porttype.find_binding
62
+ sig << binding.operations.collect { |op_bind|
63
+ operation = op_bind.find_operation
64
+ name = assigned_method[op_bind.boundid] || op_bind.name
65
+ str = "= #{safemethodname(name)}\n\n"
66
+ str << dump_method_signature(name, operation, element_definitions)
67
+ str.gsub(/^#/, " ")
68
+ }.join("\n")
69
+ end
70
+ end
71
+ end
72
+ end
73
+ sig.join("\n")
74
+ end
75
+
76
+ private
77
+
78
+ def collect_assigned_method(porttypename)
79
+ name_creator = WSDL::SOAP::ClassNameCreator.new
80
+ methoddefcreator =
81
+ WSDL::SOAP::MethodDefCreator.new(@wsdl, name_creator, nil, {})
82
+ methoddefcreator.dump(porttypename)
83
+ methoddefcreator.assigned_method
84
+ end
85
+
86
+ def find_port(servicename = nil, portname = nil)
87
+ service = port = nil
88
+ if servicename
89
+ service = @wsdl.service(
90
+ XSD::QName.new(@wsdl.targetnamespace, servicename))
91
+ else
92
+ service = @wsdl.services[0]
93
+ end
94
+ if service.nil?
95
+ raise FactoryError.new("service #{servicename} not found in WSDL")
96
+ end
97
+ if portname
98
+ port = service.ports[XSD::QName.new(@wsdl.targetnamespace, portname)]
99
+ if port.nil?
100
+ raise FactoryError.new("port #{portname} not found in WSDL")
101
+ end
102
+ else
103
+ port = service.ports.find { |port| !port.soap_address.nil? }
104
+ if port.nil?
105
+ raise FactoryError.new("no ports have soap:address")
106
+ end
107
+ end
108
+ if port.soap_address.nil?
109
+ raise FactoryError.new("soap:address element not found in WSDL")
110
+ end
111
+ port
112
+ end
113
+
114
+ def init_driver(drv, binding)
115
+ wsdl_elements = @wsdl.collect_elements
116
+ wsdl_types = @wsdl.collect_complextypes + @wsdl.collect_simpletypes
117
+ rpc_decode_typemap = wsdl_types +
118
+ @wsdl.soap_rpc_complextypes(binding)
119
+ drv.proxy.mapping_registry =
120
+ Mapping::WSDLEncodedRegistry.new(rpc_decode_typemap)
121
+ drv.proxy.literal_mapping_registry =
122
+ Mapping::WSDLLiteralRegistry.new(wsdl_types, wsdl_elements)
123
+ end
124
+
125
+ def add_operation(drv, binding)
126
+ name_creator = WSDL::SOAP::ClassNameCreator.new
127
+ modulepath = 'WSDLDriverFactory'
128
+ methoddefcreator =
129
+ WSDL::SOAP::MethodDefCreator.new(@wsdl, name_creator, modulepath, {})
130
+ mdefs = methoddefcreator.create(binding.name)
131
+ if mdefs.nil?
132
+ raise FactoryError.new("no method definition found in WSDL")
133
+ end
134
+ mdefs.each do |mdef|
135
+ opt = {
136
+ :request_style => mdef.style,
137
+ :response_style => mdef.style,
138
+ :request_use => mdef.inputuse,
139
+ :response_use => mdef.outputuse
140
+ }
141
+ qname = mdef.qname
142
+ soapaction = mdef.soapaction
143
+ name = mdef.name
144
+ if mdef.style == :rpc
145
+ drv.add_rpc_operation(qname, soapaction, name, mdef.parameters, opt)
146
+ else
147
+ drv.add_document_operation(soapaction, name, mdef.parameters, opt)
148
+ end
149
+ orgname = mdef.qname.name
150
+ if orgname != name and orgname.capitalize == name.capitalize
151
+ ::SOAP::Mapping.define_singleton_method(drv, orgname) do |*arg|
152
+ __send__(name, *arg)
153
+ end
154
+ end
155
+ end
156
+ end
157
+
158
+ def import(location)
159
+ WSDL::Importer.import(location)
160
+ end
161
+ end
162
+
163
+
164
+ end
@@ -0,0 +1,65 @@
1
+ # WSDL4R - WSDL binding definition.
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 'xsd/namedelements'
11
+
12
+
13
+ module WSDL
14
+
15
+
16
+ class Binding < Info
17
+ attr_reader :name # required
18
+ attr_reader :type # required
19
+ attr_reader :operations
20
+ attr_reader :soapbinding
21
+
22
+ def initialize
23
+ super
24
+ @name = nil
25
+ @type = nil
26
+ @operations = XSD::NamedElements.new
27
+ @soapbinding = nil
28
+ end
29
+
30
+ def targetnamespace
31
+ parent.targetnamespace
32
+ end
33
+
34
+ def parse_element(element)
35
+ case element
36
+ when OperationName
37
+ o = OperationBinding.new
38
+ @operations << o
39
+ o
40
+ when SOAPBindingName
41
+ o = WSDL::SOAP::Binding.new
42
+ @soapbinding = o
43
+ o
44
+ when DocumentationName
45
+ o = Documentation.new
46
+ o
47
+ else
48
+ nil
49
+ end
50
+ end
51
+
52
+ def parse_attr(attr, value)
53
+ case attr
54
+ when NameAttrName
55
+ @name = XSD::QName.new(targetnamespace, value.source)
56
+ when TypeAttrName
57
+ @type = value
58
+ else
59
+ nil
60
+ end
61
+ end
62
+ end
63
+
64
+
65
+ end
@@ -0,0 +1,64 @@
1
+ # WSDL4R - WSDL data definitions.
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 'xsd/qname'
10
+ require 'wsdl/documentation'
11
+ require 'wsdl/definitions'
12
+ require 'wsdl/types'
13
+ require 'wsdl/message'
14
+ require 'wsdl/part'
15
+ require 'wsdl/portType'
16
+ require 'wsdl/operation'
17
+ require 'wsdl/param'
18
+ require 'wsdl/binding'
19
+ require 'wsdl/operationBinding'
20
+ require 'wsdl/service'
21
+ require 'wsdl/port'
22
+ require 'wsdl/import'
23
+
24
+
25
+ module WSDL
26
+
27
+
28
+ ArrayTypeAttrName = XSD::QName.new(Namespace, 'arrayType')
29
+ BindingName = XSD::QName.new(Namespace, 'binding')
30
+ DefinitionsName = XSD::QName.new(Namespace, 'definitions')
31
+ DocumentationName = XSD::QName.new(Namespace, 'documentation')
32
+ FaultName = XSD::QName.new(Namespace, 'fault')
33
+ ImportName = XSD::QName.new(Namespace, 'import')
34
+ InputName = XSD::QName.new(Namespace, 'input')
35
+ MessageName = XSD::QName.new(Namespace, 'message')
36
+ OperationName = XSD::QName.new(Namespace, 'operation')
37
+ OutputName = XSD::QName.new(Namespace, 'output')
38
+ PartName = XSD::QName.new(Namespace, 'part')
39
+ PortName = XSD::QName.new(Namespace, 'port')
40
+ PortTypeName = XSD::QName.new(Namespace, 'portType')
41
+ ServiceName = XSD::QName.new(Namespace, 'service')
42
+ TypesName = XSD::QName.new(Namespace, 'types')
43
+
44
+ SchemaName = XSD::QName.new(XSD::Namespace, 'schema')
45
+
46
+ SOAPAddressName = XSD::QName.new(SOAPBindingNamespace, 'address')
47
+ SOAPBindingName = XSD::QName.new(SOAPBindingNamespace, 'binding')
48
+ SOAPHeaderName = XSD::QName.new(SOAPBindingNamespace, 'header')
49
+ SOAPBodyName = XSD::QName.new(SOAPBindingNamespace, 'body')
50
+ SOAPFaultName = XSD::QName.new(SOAPBindingNamespace, 'fault')
51
+ SOAPOperationName = XSD::QName.new(SOAPBindingNamespace, 'operation')
52
+
53
+ BindingAttrName = XSD::QName.new(nil, 'binding')
54
+ ElementAttrName = XSD::QName.new(nil, 'element')
55
+ LocationAttrName = XSD::QName.new(nil, 'location')
56
+ MessageAttrName = XSD::QName.new(nil, 'message')
57
+ NameAttrName = XSD::QName.new(nil, 'name')
58
+ NamespaceAttrName = XSD::QName.new(nil, 'namespace')
59
+ ParameterOrderAttrName = XSD::QName.new(nil, 'parameterOrder')
60
+ TargetNamespaceAttrName = XSD::QName.new(nil, 'targetNamespace')
61
+ TypeAttrName = XSD::QName.new(nil, 'type')
62
+
63
+
64
+ end
@@ -0,0 +1,236 @@
1
+ # WSDL4R - WSDL definitions.
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 'xsd/namedelements'
11
+
12
+
13
+ module WSDL
14
+
15
+
16
+ class Definitions < Info
17
+ attr_reader :name
18
+ attr_reader :targetnamespace
19
+ attr_reader :imports
20
+
21
+ attr_accessor :location
22
+ attr_reader :importedschema
23
+
24
+ def initialize
25
+ super
26
+ @name = nil
27
+ @targetnamespace = nil
28
+ @location = nil
29
+ @importedschema = {}
30
+
31
+ @types = nil
32
+ @imports = []
33
+ @messages = XSD::NamedElements.new
34
+ @porttypes = XSD::NamedElements.new
35
+ @bindings = XSD::NamedElements.new
36
+ @services = XSD::NamedElements.new
37
+
38
+ @anontypes = XSD::NamedElements.new
39
+ @root = self
40
+ end
41
+
42
+ def inspect
43
+ sprintf("#<%s:0x%x %s>", self.class.name, __id__, @name || '(unnamed)')
44
+ end
45
+
46
+ def targetnamespace=(targetnamespace)
47
+ @targetnamespace = targetnamespace
48
+ if @name
49
+ @name = XSD::QName.new(@targetnamespace, @name.name)
50
+ end
51
+ end
52
+
53
+ def collect_attributes
54
+ collect_imports(:collect_attributes)
55
+ end
56
+
57
+ def collect_modelgroups
58
+ collect_imports(:collect_modelgroups)
59
+ end
60
+
61
+ def collect_attributegroups
62
+ collect_imports(:collect_attributegroups)
63
+ end
64
+
65
+ def collect_elements
66
+ collect_imports(:collect_elements)
67
+ end
68
+
69
+ def collect_complextypes
70
+ result = collect_imports(:collect_complextypes)
71
+ @anontypes.dup.concat(result)
72
+ end
73
+
74
+ def collect_simpletypes
75
+ collect_imports(:collect_simpletypes)
76
+ end
77
+
78
+ # ToDo: simpletype must be accepted...
79
+ def add_type(complextype)
80
+ @anontypes << complextype
81
+ end
82
+
83
+ def messages
84
+ result = @messages.dup
85
+ @imports.each do |import|
86
+ result.concat(import.content.messages) if self.class === import.content
87
+ end
88
+ result
89
+ end
90
+
91
+ def porttypes
92
+ result = @porttypes.dup
93
+ @imports.each do |import|
94
+ result.concat(import.content.porttypes) if self.class === import.content
95
+ end
96
+ result
97
+ end
98
+
99
+ def bindings
100
+ result = @bindings.dup
101
+ @imports.each do |import|
102
+ result.concat(import.content.bindings) if self.class === import.content
103
+ end
104
+ result
105
+ end
106
+
107
+ def services
108
+ result = @services.dup
109
+ @imports.each do |import|
110
+ result.concat(import.content.services) if self.class === import.content
111
+ end
112
+ result
113
+ end
114
+
115
+ def message(name)
116
+ message = @messages[name]
117
+ return message if message
118
+ @imports.each do |import|
119
+ message = import.content.message(name) if self.class === import.content
120
+ return message if message
121
+ end
122
+ nil
123
+ end
124
+
125
+ def porttype(name)
126
+ porttype = @porttypes[name]
127
+ return porttype if porttype
128
+ @imports.each do |import|
129
+ porttype = import.content.porttype(name) if self.class === import.content
130
+ return porttype if porttype
131
+ end
132
+ nil
133
+ end
134
+
135
+ def binding(name)
136
+ binding = @bindings[name]
137
+ return binding if binding
138
+ @imports.each do |import|
139
+ binding = import.content.binding(name) if self.class === import.content
140
+ return binding if binding
141
+ end
142
+ nil
143
+ end
144
+
145
+ def service(name)
146
+ service = @services[name]
147
+ return service if service
148
+ @imports.each do |import|
149
+ service = import.content.service(name) if self.class === import.content
150
+ return service if service
151
+ end
152
+ nil
153
+ end
154
+
155
+ def porttype_binding(name)
156
+ binding = @bindings.find { |item| item.type == name }
157
+ return binding if binding
158
+ @imports.each do |import|
159
+ binding = import.content.porttype_binding(name) if self.class === import.content
160
+ return binding if binding
161
+ end
162
+ nil
163
+ end
164
+
165
+ def parse_element(element)
166
+ case element
167
+ when ImportName
168
+ o = Import.new
169
+ @imports << o
170
+ o
171
+ when TypesName
172
+ o = Types.new
173
+ @types = o
174
+ o
175
+ when MessageName
176
+ o = Message.new
177
+ @messages << o
178
+ o
179
+ when PortTypeName
180
+ o = PortType.new
181
+ @porttypes << o
182
+ o
183
+ when BindingName
184
+ o = Binding.new
185
+ @bindings << o
186
+ o
187
+ when ServiceName
188
+ o = Service.new
189
+ @services << o
190
+ o
191
+ when DocumentationName
192
+ o = Documentation.new
193
+ o
194
+ else
195
+ nil
196
+ end
197
+ end
198
+
199
+ def parse_attr(attr, value)
200
+ case attr
201
+ when NameAttrName
202
+ @name = XSD::QName.new(targetnamespace, value.source)
203
+ when TargetNamespaceAttrName
204
+ self.targetnamespace = value.source
205
+ else
206
+ nil
207
+ end
208
+ end
209
+
210
+ def self.parse_element(element)
211
+ if element == DefinitionsName
212
+ Definitions.new
213
+ else
214
+ nil
215
+ end
216
+ end
217
+
218
+ private
219
+
220
+ def collect_imports(method)
221
+ result = XSD::NamedElements.new
222
+ if @types
223
+ @types.schemas.each do |schema|
224
+ result.concat(schema.send(method))
225
+ end
226
+ end
227
+ @imports.each do |import|
228
+ result.concat(import.content.send(method))
229
+ end
230
+ result
231
+ end
232
+
233
+ end
234
+
235
+
236
+ end