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,61 @@
1
+ # WSDL4R - WSDL service 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 Service < Info
17
+ attr_reader :name # required
18
+ attr_reader :ports
19
+ attr_reader :soap_address
20
+
21
+ def initialize
22
+ super
23
+ @name = nil
24
+ @ports = XSD::NamedElements.new
25
+ @soap_address = nil
26
+ end
27
+
28
+ def targetnamespace
29
+ parent.targetnamespace
30
+ end
31
+
32
+ def parse_element(element)
33
+ case element
34
+ when PortName
35
+ o = Port.new
36
+ @ports << o
37
+ o
38
+ when SOAPAddressName
39
+ o = WSDL::SOAP::Address.new
40
+ @soap_address = o
41
+ o
42
+ when DocumentationName
43
+ o = Documentation.new
44
+ o
45
+ else
46
+ nil
47
+ end
48
+ end
49
+
50
+ def parse_attr(attr, value)
51
+ case attr
52
+ when NameAttrName
53
+ @name = XSD::QName.new(targetnamespace, value.source)
54
+ else
55
+ nil
56
+ end
57
+ end
58
+ end
59
+
60
+
61
+ end
@@ -0,0 +1,40 @@
1
+ # WSDL4R - WSDL SOAP address 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
+
11
+
12
+ module WSDL
13
+ module SOAP
14
+
15
+
16
+ class Address < Info
17
+ attr_reader :location
18
+
19
+ def initialize
20
+ super
21
+ @location = nil
22
+ end
23
+
24
+ def parse_element(element)
25
+ nil
26
+ end
27
+
28
+ def parse_attr(attr, value)
29
+ case attr
30
+ when LocationAttrName
31
+ @location = value.source
32
+ else
33
+ nil
34
+ end
35
+ end
36
+ end
37
+
38
+
39
+ end
40
+ end
@@ -0,0 +1,49 @@
1
+ # WSDL4R - WSDL SOAP 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
+
11
+
12
+ module WSDL
13
+ module SOAP
14
+
15
+
16
+ class Binding < Info
17
+ attr_reader :style
18
+ attr_reader :transport
19
+
20
+ def initialize
21
+ super
22
+ @style = nil
23
+ @transport = nil
24
+ end
25
+
26
+ def parse_element(element)
27
+ nil
28
+ end
29
+
30
+ def parse_attr(attr, value)
31
+ case attr
32
+ when StyleAttrName
33
+ if ["document", "rpc"].include?(value.source)
34
+ @style = value.source.intern
35
+ else
36
+ raise Parser::AttributeConstraintError.new(
37
+ "Unexpected value #{ value }.")
38
+ end
39
+ when TransportAttrName
40
+ @transport = value.source
41
+ else
42
+ nil
43
+ end
44
+ end
45
+ end
46
+
47
+
48
+ end
49
+ end
@@ -0,0 +1,58 @@
1
+ # WSDL4R - WSDL SOAP body 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
+
11
+
12
+ module WSDL
13
+ module SOAP
14
+
15
+
16
+ class Body < Info
17
+ attr_reader :parts
18
+ attr_reader :use # required
19
+ attr_reader :encodingstyle
20
+ attr_reader :namespace
21
+
22
+ def initialize
23
+ super
24
+ @parts = nil
25
+ @use = nil
26
+ @encodingstyle = nil
27
+ @namespace = nil
28
+ end
29
+
30
+ def parse_element(element)
31
+ nil
32
+ end
33
+
34
+ def parse_attr(attr, value)
35
+ case attr
36
+ when PartsAttrName
37
+ @parts = value.source
38
+ when UseAttrName
39
+ if ['literal', 'encoded'].include?(value.source)
40
+ @use = value.source.intern
41
+ else
42
+ raise RuntimeError.new("unknown use of soap:body: #{value.source}")
43
+ end
44
+ when EncodingStyleAttrName
45
+ @encodingstyle = value.source
46
+ @encodingstyle = nil if @encodingstyle.to_s.empty?
47
+ value.source
48
+ when NamespaceAttrName
49
+ @namespace = value.source
50
+ else
51
+ nil
52
+ end
53
+ end
54
+ end
55
+
56
+
57
+ end
58
+ end
@@ -0,0 +1,92 @@
1
+ # WSDL4R - Creating CGI stub 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/mappingRegistryCreator'
11
+ require 'wsdl/soap/methodDefCreator'
12
+ require 'wsdl/soap/classDefCreatorSupport'
13
+
14
+
15
+ module WSDL
16
+ module SOAP
17
+
18
+
19
+ class CGIStubCreator
20
+ include ClassDefCreatorSupport
21
+
22
+ attr_reader :definitions
23
+
24
+ def initialize(definitions, name_creator, modulepath = nil)
25
+ @definitions = definitions
26
+ @name_creator = name_creator
27
+ @modulepath = modulepath
28
+ end
29
+
30
+ def dump(service_name)
31
+ warn("CGI stub can have only 1 port. Creating stub for the first port... Rests are ignored.")
32
+ services = @definitions.service(service_name)
33
+ unless services
34
+ raise RuntimeError.new("service not defined: #{service_name}")
35
+ end
36
+ ports = services.ports
37
+ if ports.empty?
38
+ raise RuntimeError.new("ports not found for #{service_name}")
39
+ end
40
+ port = ports[0]
41
+ if port.porttype.nil?
42
+ raise RuntimeError.new("porttype not found for #{port}")
43
+ end
44
+ dump_porttype(port.porttype)
45
+ end
46
+
47
+ private
48
+
49
+ def dump_porttype(porttype)
50
+ class_name = mapped_class_name(porttype.name, @modulepath)
51
+ defined_const = {}
52
+ methoddef = MethodDefCreator.new(@definitions, @name_creator, @modulepath, defined_const).dump(porttype.name)
53
+ wsdl_name = @definitions.name ? @definitions.name.name : 'default'
54
+ mrname = safeconstname(wsdl_name + 'MappingRegistry')
55
+ c1 = XSD::CodeGen::ClassDef.new(class_name)
56
+ c1.def_require("soap/rpc/cgistub")
57
+ c1.def_code <<-EOD
58
+ Methods = [
59
+ #{methoddef.gsub(/^/, " ")}
60
+ ]
61
+ EOD
62
+ defined_const.each do |ns, tag|
63
+ c1.def_const(tag, dq(ns))
64
+ end
65
+ c2 = XSD::CodeGen::ClassDef.new(class_name + "App",
66
+ "::SOAP::RPC::CGIStub")
67
+ c2.def_method("initialize", "*arg") do
68
+ <<-EOD
69
+ super(*arg)
70
+ servant = #{class_name}.new
71
+ #{class_name}::Methods.each do |definitions|
72
+ opt = definitions.last
73
+ if opt[:request_style] == :document
74
+ @router.add_document_operation(servant, *definitions)
75
+ else
76
+ @router.add_rpc_operation(servant, *definitions)
77
+ end
78
+ end
79
+ self.mapping_registry = #{mrname}::EncodedRegistry
80
+ self.literal_mapping_registry = #{mrname}::LiteralRegistry
81
+ self.level = Logger::Severity::ERROR
82
+ EOD
83
+ end
84
+ c1.dump + "\n" + c2.dump + format(<<-EOD)
85
+ #{class_name}App.new('app', nil).start
86
+ EOD
87
+ end
88
+ end
89
+
90
+
91
+ end
92
+ end
@@ -0,0 +1,433 @@
1
+ # WSDL4R - Creating class definition 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/data'
10
+ require 'wsdl/soap/classDefCreatorSupport'
11
+ require 'xsd/codegen'
12
+ require 'set'
13
+
14
+
15
+ module WSDL
16
+ module SOAP
17
+
18
+
19
+ class ClassDefCreator
20
+ include ClassDefCreatorSupport
21
+ include XSD::CodeGen
22
+
23
+ def initialize(definitions, name_creator, modulepath = nil)
24
+ @definitions = definitions
25
+ @name_creator = name_creator
26
+ @modulepath = modulepath
27
+ @elements = definitions.collect_elements
28
+ @elements.uniq!
29
+ @attributes = definitions.collect_attributes
30
+ @attributes.uniq!
31
+ @simpletypes = definitions.collect_simpletypes
32
+ @simpletypes.uniq!
33
+ @complextypes = definitions.collect_complextypes
34
+ @complextypes.uniq!
35
+ @modelgroups = definitions.collect_modelgroups
36
+ @modelgroups.uniq!
37
+ @faulttypes = nil
38
+ if definitions.respond_to?(:collect_faulttypes)
39
+ @faulttypes = definitions.collect_faulttypes
40
+ end
41
+ @defined_const = {}
42
+ end
43
+
44
+ def dump(type = nil)
45
+ result = "require 'xsd/qname'\n"
46
+ # cannot use @modulepath because of multiple classes
47
+ if @modulepath
48
+ result << "\n"
49
+ result << modulepath_split(@modulepath).collect { |ele| "module #{ele}" }.join("; ")
50
+ result << "\n\n"
51
+ end
52
+ str = dump_group(type)
53
+ unless str.empty?
54
+ result << "\n" unless result.empty?
55
+ result << str
56
+ end
57
+ str = dump_complextype(type)
58
+ unless str.empty?
59
+ result << "\n" unless result.empty?
60
+ result << str
61
+ end
62
+ str = dump_simpletype(type)
63
+ unless str.empty?
64
+ result << "\n" unless result.empty?
65
+ result << str
66
+ end
67
+ str = dump_element(type)
68
+ unless str.empty?
69
+ result << "\n" unless result.empty?
70
+ result << str
71
+ end
72
+ str = dump_attribute(type)
73
+ unless str.empty?
74
+ result << "\n" unless result.empty?
75
+ result << str
76
+ end
77
+ if @modulepath
78
+ result << "\n\n"
79
+ result << modulepath_split(@modulepath).collect { |ele| "end" }.join("; ")
80
+ result << "\n"
81
+ end
82
+ result
83
+ end
84
+
85
+ private
86
+
87
+ def dump_element(target = nil)
88
+ @elements.collect { |ele|
89
+ next if @complextypes[ele.name]
90
+ next if target and target != ele.name
91
+ c = create_elementdef(@modulepath, ele)
92
+ c ? c.dump : nil
93
+ }.compact.join("\n")
94
+ end
95
+
96
+ def dump_attribute(target = nil)
97
+ @attributes.collect { |attribute|
98
+ next if target and target != attribute.name
99
+ if attribute.local_simpletype
100
+ c = create_simpletypedef(@modulepath, attribute.name, attribute.local_simpletype)
101
+ end
102
+ c ? c.dump : nil
103
+ }.compact.join("\n")
104
+ end
105
+
106
+ def dump_simpletype(target = nil)
107
+ @simpletypes.collect { |type|
108
+ next if target and target != type.name
109
+ c = create_simpletypedef(@modulepath, type.name, type)
110
+ c ? c.dump : nil
111
+ }.compact.join("\n")
112
+ end
113
+
114
+ def dump_complextype(target = nil)
115
+ definitions = sort_dependency(@complextypes).collect { |type|
116
+ next if target and target != type.name
117
+ c = create_complextypedef(@modulepath, type.name, type)
118
+ c ? c.dump : nil
119
+ }.compact.join("\n")
120
+ end
121
+
122
+ def dump_group(target = nil)
123
+ definitions = @modelgroups.collect { |group|
124
+ # TODO: not dumped for now but may be useful in the future
125
+ }.compact.join("\n")
126
+ end
127
+
128
+ def create_elementdef(mpath, ele)
129
+ qualified = (ele.elementform == 'qualified')
130
+ if ele.local_complextype
131
+ create_complextypedef(mpath, ele.name, ele.local_complextype, qualified)
132
+ elsif ele.local_simpletype
133
+ create_simpletypedef(mpath, ele.name, ele.local_simpletype, qualified)
134
+ elsif ele.empty?
135
+ create_simpleclassdef(mpath, ele.name, nil)
136
+ else
137
+ # ignores type only element
138
+ nil
139
+ end
140
+ end
141
+
142
+ def create_simpletypedef(mpath, qname, simpletype, qualified = false)
143
+ if simpletype.restriction
144
+ create_simpletypedef_restriction(mpath, qname, simpletype, qualified)
145
+ elsif simpletype.list
146
+ create_simpletypedef_list(mpath, qname, simpletype, qualified)
147
+ elsif simpletype.union
148
+ create_simpletypedef_union(mpath, qname, simpletype, qualified)
149
+ else
150
+ raise RuntimeError.new("unknown kind of simpletype: #{simpletype}")
151
+ end
152
+ end
153
+
154
+ def create_simpletypedef_restriction(mpath, qname, typedef, qualified)
155
+ restriction = typedef.restriction
156
+ unless restriction.enumeration?
157
+ # not supported. minlength?
158
+ return nil
159
+ end
160
+ classname = mapped_class_basename(qname, mpath)
161
+ c = ClassDef.new(classname, '::String')
162
+ c.comment = "#{qname}"
163
+ define_classenum_restriction(c, classname, restriction.enumeration)
164
+ c
165
+ end
166
+
167
+ def create_simpletypedef_list(mpath, qname, typedef, qualified)
168
+ list = typedef.list
169
+ classname = mapped_class_basename(qname, mpath)
170
+ c = ClassDef.new(classname, '::Array')
171
+ c.comment = "#{qname}"
172
+ if simpletype = list.local_simpletype
173
+ if simpletype.restriction.nil?
174
+ raise RuntimeError.new(
175
+ "unknown kind of simpletype: #{simpletype}")
176
+ end
177
+ define_stringenum_restriction(c, simpletype.restriction.enumeration)
178
+ c.comment << "\n contains list of #{classname}::*"
179
+ elsif list.itemtype
180
+ c.comment << "\n contains list of #{mapped_class_basename(list.itemtype, mpath)}::*"
181
+ else
182
+ raise RuntimeError.new("unknown kind of list: #{list}")
183
+ end
184
+ c
185
+ end
186
+
187
+ def create_simpletypedef_union(mpath, qname, typedef, qualified)
188
+ union = typedef.union
189
+ classname = mapped_class_basename(qname, mpath)
190
+ c = ClassDef.new(classname, '::String')
191
+ c.comment = "#{qname}"
192
+ if union.member_types
193
+ # fixme
194
+ c.comment << "\n any of #{union.member_types}"
195
+ end
196
+ c
197
+ end
198
+
199
+ def define_stringenum_restriction(c, enumeration)
200
+ const = {}
201
+ enumeration.each do |value|
202
+ constname = safeconstname(value)
203
+ const[constname] ||= 0
204
+ if (const[constname] += 1) > 1
205
+ constname += "_#{const[constname]}"
206
+ end
207
+ c.def_const(constname, ndq(value))
208
+ end
209
+ end
210
+
211
+ def define_classenum_restriction(c, classname, enumeration)
212
+ const = {}
213
+ enumeration.each do |value|
214
+ constname = safeconstname(value)
215
+ const[constname] ||= 0
216
+ if (const[constname] += 1) > 1
217
+ constname += "_#{const[constname]}"
218
+ end
219
+ c.def_const(constname, "new(#{ndq(value)})")
220
+ end
221
+ end
222
+
223
+ def create_simpleclassdef(mpath, qname, type_or_element)
224
+ classname = mapped_class_basename(qname, mpath)
225
+ c = ClassDef.new(classname, '::String')
226
+ c.comment = "#{qname}"
227
+ init_lines = []
228
+ if type_or_element and !type_or_element.attributes.empty?
229
+ define_attribute(c, type_or_element.attributes)
230
+ init_lines << "@__xmlattr = {}"
231
+ end
232
+ c.def_method('initialize', '*arg') do
233
+ "super\n" + init_lines.join("\n")
234
+ end
235
+ c
236
+ end
237
+
238
+ def create_complextypedef(mpath, qname, type, qualified = false)
239
+ case type.compoundtype
240
+ when :TYPE_STRUCT, :TYPE_EMPTY
241
+ create_structdef(mpath, qname, type, qualified)
242
+ when :TYPE_ARRAY
243
+ create_arraydef(mpath, qname, type)
244
+ when :TYPE_SIMPLE
245
+ create_simpleclassdef(mpath, qname, type)
246
+ when :TYPE_MAP
247
+ # mapped as a general Hash
248
+ nil
249
+ else
250
+ raise RuntimeError.new(
251
+ "unknown kind of complexContent: #{type.compoundtype}")
252
+ end
253
+ end
254
+
255
+ def create_structdef(mpath, qname, typedef, qualified = false)
256
+ classname = mapped_class_basename(qname, mpath)
257
+ baseclassname = nil
258
+ if typedef.complexcontent
259
+ if base = typedef.complexcontent.base
260
+ # :TYPE_ARRAY must not be derived (#424)
261
+ basedef = @complextypes[base]
262
+ if basedef and basedef.compoundtype != :TYPE_ARRAY
263
+ # baseclass should be a toplevel complexType
264
+ baseclassname = mapped_class_basename(base, @modulepath)
265
+ end
266
+ end
267
+ end
268
+ if @faulttypes and @faulttypes.index(qname)
269
+ c = ClassDef.new(classname, '::StandardError')
270
+ else
271
+ c = ClassDef.new(classname, baseclassname)
272
+ end
273
+ c.comment = "#{qname}"
274
+ c.comment << "\nabstract" if typedef.abstract
275
+ parentmodule = mapped_class_name(qname, mpath)
276
+ init_lines, init_params =
277
+ parse_elements(c, typedef.elements, qname.namespace, parentmodule)
278
+ unless typedef.attributes.empty?
279
+ define_attribute(c, typedef.attributes)
280
+ init_lines << "@__xmlattr = {}"
281
+ end
282
+ c.def_method('initialize', *init_params) do
283
+ init_lines.join("\n")
284
+ end
285
+ c
286
+ end
287
+
288
+ def parse_elements(c, elements, base_namespace, mpath, as_array = false)
289
+ init_lines = []
290
+ init_params = []
291
+ any = false
292
+ elements.each do |element|
293
+ case element
294
+ when XMLSchema::Any
295
+ # only 1 <any/> is allowed for now.
296
+ raise RuntimeError.new("duplicated 'any'") if any
297
+ any = true
298
+ attrname = '__xmlele_any'
299
+ c.def_attr(attrname, false, attrname)
300
+ c.def_method('set_any', 'elements') do
301
+ '@__xmlele_any = elements'
302
+ end
303
+ init_lines << "@__xmlele_any = nil"
304
+ when XMLSchema::Element
305
+ next if element.ref == SchemaName
306
+ name = name_element(element).name
307
+ typebase = @modulepath
308
+ if element.anonymous_type?
309
+ inner = create_elementdef(mpath, element)
310
+ unless as_array
311
+ inner.comment = "inner class for member: #{name}\n" + inner.comment
312
+ end
313
+ c.innermodule << inner
314
+ typebase = mpath
315
+ end
316
+ unless as_array
317
+ attrname = safemethodname(name)
318
+ varname = safevarname(name)
319
+ c.def_attr(attrname, true, varname)
320
+ init_lines << "@#{varname} = #{varname}"
321
+ if element.map_as_array?
322
+ init_params << "#{varname} = []"
323
+ else
324
+ init_params << "#{varname} = nil"
325
+ end
326
+ c.comment << "\n #{attrname} - #{create_type_name(typebase, element) || '(any)'}"
327
+ end
328
+ when WSDL::XMLSchema::Sequence
329
+ child_init_lines, child_init_params =
330
+ parse_elements(c, element.elements, base_namespace, mpath, as_array)
331
+ init_lines.concat(child_init_lines)
332
+ init_params.concat(child_init_params)
333
+ when WSDL::XMLSchema::Choice
334
+ child_init_lines, child_init_params =
335
+ parse_elements(c, element.elements, base_namespace, mpath, as_array)
336
+ init_lines.concat(child_init_lines)
337
+ init_params.concat(child_init_params)
338
+ when WSDL::XMLSchema::Group
339
+ if element.content.nil?
340
+ warn("no group definition found: #{element}")
341
+ next
342
+ end
343
+ child_init_lines, child_init_params =
344
+ parse_elements(c, element.content.elements, base_namespace, mpath, as_array)
345
+ init_lines.concat(child_init_lines)
346
+ init_params.concat(child_init_params)
347
+ else
348
+ raise RuntimeError.new("unknown type: #{element}")
349
+ end
350
+ end
351
+ [init_lines, init_params]
352
+ end
353
+
354
+ def define_attribute(c, attributes)
355
+ const = {}
356
+ unless attributes.empty?
357
+ c.def_method("__xmlattr") do <<-__EOD__
358
+ @__xmlattr ||= {}
359
+ __EOD__
360
+ end
361
+ end
362
+ attributes.each do |attribute|
363
+ name = name_attribute(attribute)
364
+ methodname = safemethodname('xmlattr_' + name.name)
365
+ constname = 'Attr' + safeconstname(name.name)
366
+ const[constname] ||= 0
367
+ if (const[constname] += 1) > 1
368
+ constname += "_#{const[constname]}"
369
+ end
370
+ c.def_const(constname, dqname(name))
371
+ c.def_method(methodname) do <<-__EOD__
372
+ __xmlattr[#{constname}]
373
+ __EOD__
374
+ end
375
+ c.def_method(methodname + '=', 'value') do <<-__EOD__
376
+ __xmlattr[#{constname}] = value
377
+ __EOD__
378
+ end
379
+ c.comment << "\n #{methodname} - #{attribute_basetype(attribute) || '(any)'}"
380
+ end
381
+ end
382
+
383
+ def create_arraydef(mpath, qname, typedef)
384
+ classname = mapped_class_basename(qname, mpath)
385
+ c = ClassDef.new(classname, '::Array')
386
+ c.comment = "#{qname}"
387
+ parentmodule = mapped_class_name(qname, mpath)
388
+ parse_elements(c, typedef.elements, qname.namespace, parentmodule, true)
389
+ c
390
+ end
391
+
392
+ def sort_dependency(types)
393
+ dep = {}
394
+ root = []
395
+ types.each do |type|
396
+ if type.complexcontent and (base = type.complexcontent.base)
397
+ dep[base] ||= []
398
+ dep[base] << type
399
+ else
400
+ root << type
401
+ end
402
+ end
403
+ sorted = []
404
+ root.each do |type|
405
+ sorted.concat(collect_dependency(type, dep))
406
+ end
407
+ sorted.concat(dep.values.flatten)
408
+ sorted
409
+ end
410
+
411
+ # removes collected key from dep
412
+ def collect_dependency(type, dep)
413
+ result = [type]
414
+ return result unless dep.key?(type.name)
415
+ dep[type.name].each do |deptype|
416
+ result.concat(collect_dependency(deptype, dep))
417
+ end
418
+ dep.delete(type.name)
419
+ result
420
+ end
421
+
422
+ def modulepath_split(modulepath)
423
+ if modulepath.is_a?(::Array)
424
+ modulepath
425
+ else
426
+ modulepath.to_s.split('::')
427
+ end
428
+ end
429
+ end
430
+
431
+
432
+ end
433
+ end