soap4r_es 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (165) hide show
  1. checksums.yaml +7 -0
  2. data/bin/wsdl2ruby.rb +140 -0
  3. data/bin/wsdl2ruby_rails.rb +140 -0
  4. data/bin/xsd2ruby.rb +92 -0
  5. data/lib/soap/attachment.rb +109 -0
  6. data/lib/soap/attrproxy.rb +35 -0
  7. data/lib/soap/baseData.rb +1095 -0
  8. data/lib/soap/element.rb +278 -0
  9. data/lib/soap/encodingstyle/aspDotNetHandler.rb +208 -0
  10. data/lib/soap/encodingstyle/handler.rb +121 -0
  11. data/lib/soap/encodingstyle/literalHandler.rb +196 -0
  12. data/lib/soap/encodingstyle/soapHandler.rb +560 -0
  13. data/lib/soap/filter/filterchain.rb +52 -0
  14. data/lib/soap/filter/handler.rb +32 -0
  15. data/lib/soap/filter/streamhandler.rb +30 -0
  16. data/lib/soap/filter.rb +14 -0
  17. data/lib/soap/generator.rb +299 -0
  18. data/lib/soap/header/handler.rb +64 -0
  19. data/lib/soap/header/handlerset.rb +78 -0
  20. data/lib/soap/header/mappinghandler.rb +48 -0
  21. data/lib/soap/header/simplehandler.rb +45 -0
  22. data/lib/soap/httpconfigloader.rb +140 -0
  23. data/lib/soap/mapping/encodedregistry.rb +541 -0
  24. data/lib/soap/mapping/factory.rb +389 -0
  25. data/lib/soap/mapping/literalregistry.rb +392 -0
  26. data/lib/soap/mapping/mapping.rb +577 -0
  27. data/lib/soap/mapping/registry.rb +297 -0
  28. data/lib/soap/mapping/rubytypeFactory.rb +446 -0
  29. data/lib/soap/mapping/schemadefinition.rb +171 -0
  30. data/lib/soap/mapping/typeMap.rb +107 -0
  31. data/lib/soap/mapping/wsdlencodedregistry.rb +212 -0
  32. data/lib/soap/mapping/wsdlliteralregistry.rb +249 -0
  33. data/lib/soap/mapping.rb +13 -0
  34. data/lib/soap/marshal.rb +60 -0
  35. data/lib/soap/mimemessage.rb +243 -0
  36. data/lib/soap/nestedexception.rb +43 -0
  37. data/lib/soap/netHttpClient.rb +242 -0
  38. data/lib/soap/ns.rb +39 -0
  39. data/lib/soap/parser.rb +253 -0
  40. data/lib/soap/processor.rb +67 -0
  41. data/lib/soap/property.rb +330 -0
  42. data/lib/soap/proxy.rb +15 -0
  43. data/lib/soap/rpc/cgistub.rb +249 -0
  44. data/lib/soap/rpc/driver.rb +222 -0
  45. data/lib/soap/rpc/element.rb +375 -0
  46. data/lib/soap/rpc/httpserver.rb +144 -0
  47. data/lib/soap/rpc/methodDef.rb +69 -0
  48. data/lib/soap/rpc/proxy.rb +573 -0
  49. data/lib/soap/rpc/router.rb +672 -0
  50. data/lib/soap/rpc/rpc.rb +26 -0
  51. data/lib/soap/rpc/soaplet.rb +201 -0
  52. data/lib/soap/rpc/standaloneServer.rb +44 -0
  53. data/lib/soap/soap.rb +163 -0
  54. data/lib/soap/streamHandler.rb +302 -0
  55. data/lib/soap/version.rb +12 -0
  56. data/lib/soap/wsdlDriver.rb +165 -0
  57. data/lib/wsdl/binding.rb +66 -0
  58. data/lib/wsdl/data.rb +65 -0
  59. data/lib/wsdl/definitions.rb +237 -0
  60. data/lib/wsdl/documentation.rb +33 -0
  61. data/lib/wsdl/import.rb +81 -0
  62. data/lib/wsdl/importer.rb +39 -0
  63. data/lib/wsdl/info.rb +51 -0
  64. data/lib/wsdl/message.rb +55 -0
  65. data/lib/wsdl/operation.rb +152 -0
  66. data/lib/wsdl/operationBinding.rb +241 -0
  67. data/lib/wsdl/param.rb +94 -0
  68. data/lib/wsdl/parser.rb +180 -0
  69. data/lib/wsdl/part.rb +53 -0
  70. data/lib/wsdl/port.rb +67 -0
  71. data/lib/wsdl/portType.rb +76 -0
  72. data/lib/wsdl/service.rb +62 -0
  73. data/lib/wsdl/soap/address.rb +41 -0
  74. data/lib/wsdl/soap/binding.rb +50 -0
  75. data/lib/wsdl/soap/body.rb +59 -0
  76. data/lib/wsdl/soap/cgiStubCreator.rb +93 -0
  77. data/lib/wsdl/soap/classDefCreator.rb +529 -0
  78. data/lib/wsdl/soap/classDefCreatorSupport.rb +242 -0
  79. data/lib/wsdl/soap/classNameCreator.rb +57 -0
  80. data/lib/wsdl/soap/clientSkeltonCreator.rb +107 -0
  81. data/lib/wsdl/soap/complexType.rb +174 -0
  82. data/lib/wsdl/soap/data.rb +43 -0
  83. data/lib/wsdl/soap/definitions.rb +201 -0
  84. data/lib/wsdl/soap/driverCreator.rb +121 -0
  85. data/lib/wsdl/soap/element.rb +34 -0
  86. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +74 -0
  87. data/lib/wsdl/soap/fault.rb +57 -0
  88. data/lib/wsdl/soap/header.rb +87 -0
  89. data/lib/wsdl/soap/headerfault.rb +57 -0
  90. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +116 -0
  91. data/lib/wsdl/soap/mappingRegistryCreator.rb +59 -0
  92. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +380 -0
  93. data/lib/wsdl/soap/methodDefCreator.rb +200 -0
  94. data/lib/wsdl/soap/operation.rb +113 -0
  95. data/lib/wsdl/soap/servantSkeltonCreator.rb +92 -0
  96. data/lib/wsdl/soap/servletStubCreator.rb +105 -0
  97. data/lib/wsdl/soap/standaloneServerStubCreator.rb +101 -0
  98. data/lib/wsdl/soap/wsdl2ruby.rb +249 -0
  99. data/lib/wsdl/types.rb +45 -0
  100. data/lib/wsdl/wsdl.rb +25 -0
  101. data/lib/wsdl/xmlSchema/all.rb +25 -0
  102. data/lib/wsdl/xmlSchema/annotation.rb +35 -0
  103. data/lib/wsdl/xmlSchema/any.rb +62 -0
  104. data/lib/wsdl/xmlSchema/anyAttribute.rb +49 -0
  105. data/lib/wsdl/xmlSchema/attribute.rb +105 -0
  106. data/lib/wsdl/xmlSchema/attributeGroup.rb +69 -0
  107. data/lib/wsdl/xmlSchema/choice.rb +59 -0
  108. data/lib/wsdl/xmlSchema/complexContent.rb +98 -0
  109. data/lib/wsdl/xmlSchema/complexExtension.rb +120 -0
  110. data/lib/wsdl/xmlSchema/complexRestriction.rb +105 -0
  111. data/lib/wsdl/xmlSchema/complexType.rb +194 -0
  112. data/lib/wsdl/xmlSchema/content.rb +96 -0
  113. data/lib/wsdl/xmlSchema/data.rb +117 -0
  114. data/lib/wsdl/xmlSchema/element.rb +154 -0
  115. data/lib/wsdl/xmlSchema/enumeration.rb +37 -0
  116. data/lib/wsdl/xmlSchema/fractiondigits.rb +38 -0
  117. data/lib/wsdl/xmlSchema/group.rb +101 -0
  118. data/lib/wsdl/xmlSchema/import.rb +53 -0
  119. data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
  120. data/lib/wsdl/xmlSchema/importer.rb +103 -0
  121. data/lib/wsdl/xmlSchema/include.rb +48 -0
  122. data/lib/wsdl/xmlSchema/length.rb +38 -0
  123. data/lib/wsdl/xmlSchema/list.rb +49 -0
  124. data/lib/wsdl/xmlSchema/maxexclusive.rb +38 -0
  125. data/lib/wsdl/xmlSchema/maxinclusive.rb +38 -0
  126. data/lib/wsdl/xmlSchema/maxlength.rb +38 -0
  127. data/lib/wsdl/xmlSchema/minexclusive.rb +38 -0
  128. data/lib/wsdl/xmlSchema/mininclusive.rb +38 -0
  129. data/lib/wsdl/xmlSchema/minlength.rb +38 -0
  130. data/lib/wsdl/xmlSchema/parser.rb +168 -0
  131. data/lib/wsdl/xmlSchema/pattern.rb +37 -0
  132. data/lib/wsdl/xmlSchema/ref.rb +34 -0
  133. data/lib/wsdl/xmlSchema/schema.rb +179 -0
  134. data/lib/wsdl/xmlSchema/sequence.rb +55 -0
  135. data/lib/wsdl/xmlSchema/simpleContent.rb +70 -0
  136. data/lib/wsdl/xmlSchema/simpleExtension.rb +63 -0
  137. data/lib/wsdl/xmlSchema/simpleRestriction.rb +133 -0
  138. data/lib/wsdl/xmlSchema/simpleType.rb +88 -0
  139. data/lib/wsdl/xmlSchema/totaldigits.rb +38 -0
  140. data/lib/wsdl/xmlSchema/union.rb +36 -0
  141. data/lib/wsdl/xmlSchema/unique.rb +35 -0
  142. data/lib/wsdl/xmlSchema/whitespace.rb +38 -0
  143. data/lib/wsdl/xmlSchema/xsd2ruby.rb +177 -0
  144. data/lib/xsd/charset.rb +190 -0
  145. data/lib/xsd/codegen/classdef.rb +230 -0
  146. data/lib/xsd/codegen/commentdef.rb +35 -0
  147. data/lib/xsd/codegen/gensupport.rb +277 -0
  148. data/lib/xsd/codegen/methoddef.rb +71 -0
  149. data/lib/xsd/codegen/moduledef.rb +209 -0
  150. data/lib/xsd/codegen.rb +13 -0
  151. data/lib/xsd/datatypes.rb +1465 -0
  152. data/lib/xsd/datatypes1999.rb +21 -0
  153. data/lib/xsd/iconvcharset.rb +33 -0
  154. data/lib/xsd/mapping.rb +69 -0
  155. data/lib/xsd/namedelements.rb +133 -0
  156. data/lib/xsd/ns.rb +183 -0
  157. data/lib/xsd/qname.rb +80 -0
  158. data/lib/xsd/xmlparser/libxmlparser.rb +136 -0
  159. data/lib/xsd/xmlparser/nokogiriparser.rb +63 -0
  160. data/lib/xsd/xmlparser/ogaparser.rb +53 -0
  161. data/lib/xsd/xmlparser/oxparser.rb +97 -0
  162. data/lib/xsd/xmlparser/parser.rb +101 -0
  163. data/lib/xsd/xmlparser/rexmlparser.rb +54 -0
  164. data/lib/xsd/xmlparser.rb +81 -0
  165. metadata +240 -0
@@ -0,0 +1,253 @@
1
+ # encoding: UTF-8
2
+ # SOAP4R - SOAP XML Instance Parser library.
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/xmlparser'
11
+ require 'soap/soap'
12
+ require 'soap/ns'
13
+ require 'soap/baseData'
14
+ require 'soap/encodingstyle/handler'
15
+
16
+
17
+ module SOAP
18
+
19
+
20
+ class Parser
21
+ include SOAP
22
+
23
+ class ParseError < Error; end
24
+ class FormatDecodeError < ParseError; end
25
+ class UnexpectedElementError < ParseError; end
26
+
27
+ private
28
+
29
+ class ParseFrame
30
+ attr_reader :node
31
+ attr_reader :name
32
+ attr_reader :ns
33
+ attr_reader :encodingstyle
34
+ attr_reader :handler
35
+
36
+ class NodeContainer
37
+ def initialize(node)
38
+ @node = node
39
+ end
40
+
41
+ def node
42
+ @node
43
+ end
44
+
45
+ def replace_node(node)
46
+ @node = node
47
+ end
48
+ end
49
+
50
+ public
51
+
52
+ def initialize(ns, name, node, encodingstyle, handler)
53
+ @ns = ns
54
+ @name = name
55
+ @node = NodeContainer.new(node)
56
+ @encodingstyle = encodingstyle
57
+ @handler = handler
58
+ end
59
+
60
+ # to avoid memory consumption
61
+ def update(ns, name, node, encodingstyle, handler)
62
+ @ns = ns
63
+ @name = name
64
+ @node.replace_node(node)
65
+ @encodingstyle = encodingstyle
66
+ @handler = handler
67
+ self
68
+ end
69
+ end
70
+
71
+ public
72
+
73
+ attr_accessor :envelopenamespace
74
+ attr_accessor :default_encodingstyle
75
+ attr_accessor :decode_typemap
76
+ attr_accessor :allow_unqualified_element
77
+
78
+ def initialize(opt = {})
79
+ @opt = opt
80
+ @parser = XSD::XMLParser.create_parser(self, opt)
81
+ @parsestack = nil
82
+ @recycleframe = nil
83
+ @lastnode = nil
84
+ @handlers = {}
85
+ @envelopenamespace = opt[:envelopenamespace] || EnvelopeNamespace
86
+ @default_encodingstyle = opt[:default_encodingstyle] || EncodingNamespace
87
+ @decode_typemap = opt[:decode_typemap] || nil
88
+ @allow_unqualified_element = opt[:allow_unqualified_element] || false
89
+ end
90
+
91
+ def charset
92
+ @parser.charset
93
+ end
94
+
95
+ def parse(string_or_readable)
96
+ @parsestack = []
97
+ @lastnode = nil
98
+
99
+ @handlers.each do |uri, handler|
100
+ handler.decode_prologue
101
+ end
102
+
103
+ @parser.do_parse(string_or_readable)
104
+
105
+ unless @parsestack.empty?
106
+ raise FormatDecodeError.new("Unbalanced tag in XML.")
107
+ end
108
+
109
+ @handlers.each do |uri, handler|
110
+ handler.decode_epilogue
111
+ end
112
+
113
+ @lastnode
114
+ end
115
+
116
+ def start_element(name, raw_attrs)
117
+ lastframe = @parsestack.last
118
+ ns = parent = parent_encodingstyle = nil
119
+ if lastframe
120
+ ns = lastframe.ns
121
+ parent = lastframe.node
122
+ parent_encodingstyle = lastframe.encodingstyle
123
+ else
124
+ ns = SOAP::NS.new
125
+ parent = ParseFrame::NodeContainer.new(nil)
126
+ parent_encodingstyle = nil
127
+ end
128
+ # ns might be the same
129
+ ns, raw_attrs = XSD::XMLParser.filter_ns(ns, raw_attrs)
130
+ attrs = decode_attrs(ns, raw_attrs)
131
+ encodingstyle = attrs[AttrEncodingStyleName]
132
+ # Children's encodingstyle is derived from its parent.
133
+ if encodingstyle.nil?
134
+ if parent.node.is_a?(SOAPHeader)
135
+ encodingstyle = LiteralNamespace
136
+ else
137
+ encodingstyle = parent_encodingstyle || @default_encodingstyle
138
+ end
139
+ end
140
+ handler = find_handler(encodingstyle)
141
+ unless handler
142
+ raise FormatDecodeError.new("Unknown encodingStyle: #{ encodingstyle }.")
143
+ end
144
+ node = decode_tag(ns, name, attrs, parent, handler)
145
+ if @recycleframe
146
+ @parsestack << @recycleframe.update(ns, name, node, encodingstyle, handler)
147
+ @recycleframe = nil
148
+ else
149
+ @parsestack << ParseFrame.new(ns, name, node, encodingstyle, handler)
150
+ end
151
+ end
152
+
153
+ def characters(text)
154
+ # Ignore Text outside of SOAP Envelope.
155
+ if lastframe = @parsestack.last
156
+ # Need not to be cloned because character does not have attr.
157
+ decode_text(lastframe.ns, text, lastframe.handler)
158
+ end
159
+ end
160
+
161
+ def end_element(name)
162
+ lastframe = @parsestack.pop
163
+ unless name == lastframe.name
164
+ raise UnexpectedElementError.new("Closing element name '#{ name }' does not match with opening element '#{ lastframe.name }'.")
165
+ end
166
+ decode_tag_end(lastframe.ns, lastframe.node, lastframe.handler)
167
+ @lastnode = lastframe.node.node
168
+ @recycleframe = lastframe
169
+ end
170
+
171
+ private
172
+
173
+ def decode_tag(ns, name, attrs, parent, handler)
174
+ ele = ns.parse(name)
175
+ # Envelope based parsing.
176
+ if ((ele.namespace == @envelopenamespace) ||
177
+ (@allow_unqualified_element && ele.namespace.nil?))
178
+ o = decode_soap_envelope(ns, ele, attrs, parent)
179
+ return o if o
180
+ end
181
+ # Encoding based parsing.
182
+ return handler.decode_tag(ns, ele, attrs, parent)
183
+ end
184
+
185
+ def decode_tag_end(ns, node, handler)
186
+ return handler.decode_tag_end(ns, node)
187
+ end
188
+
189
+ def decode_attrs(ns, attrs)
190
+ extraattr = {}
191
+ attrs.each do |key, value|
192
+ qname = ns.parse_local(key)
193
+ extraattr[qname] = value
194
+ end
195
+ extraattr
196
+ end
197
+
198
+ def decode_text(ns, text, handler)
199
+ handler.decode_text(ns, text)
200
+ end
201
+
202
+ def decode_soap_envelope(ns, ele, attrs, parent)
203
+ o = nil
204
+ if ele.name == EleEnvelope
205
+ o = SOAPEnvelope.new
206
+ if ext = @opt[:external_content]
207
+ ext.each do |k, v|
208
+ o.external_content[k] = v
209
+ end
210
+ end
211
+ elsif ele.name == EleHeader
212
+ return nil unless parent.node.is_a?(SOAPEnvelope)
213
+ o = SOAPHeader.new
214
+ parent.node.header = o
215
+ elsif ele.name == EleBody
216
+ return nil unless parent.node.is_a?(SOAPEnvelope)
217
+ o = SOAPBody.new
218
+ parent.node.body = o
219
+ elsif ele.name == EleFault
220
+ if parent.node.is_a?(SOAPBody)
221
+ o = SOAPFault.new
222
+ parent.node.fault = o
223
+ elsif parent.node.is_a?(SOAPEnvelope)
224
+ # live.com server returns SOAPFault as a direct child of SOAPEnvelope.
225
+ # support it even if it's not spec compliant.
226
+ warn("Fault must be a child of Body.")
227
+ body = SOAPBody.new
228
+ parent.node.body = body
229
+ o = SOAPFault.new
230
+ body.fault = o
231
+ else
232
+ return nil
233
+ end
234
+ end
235
+ o.extraattr.update(attrs) if o
236
+ o
237
+ end
238
+
239
+ def find_handler(encodingstyle)
240
+ unless @handlers.key?(encodingstyle)
241
+ handler_factory = SOAP::EncodingStyle::Handler.handler(encodingstyle) ||
242
+ SOAP::EncodingStyle::Handler.handler(EncodingNamespace)
243
+ handler = handler_factory.new(@parser.charset)
244
+ handler.decode_typemap = @decode_typemap
245
+ handler.decode_prologue
246
+ @handlers[encodingstyle] = handler
247
+ end
248
+ @handlers[encodingstyle]
249
+ end
250
+ end
251
+
252
+
253
+ end
@@ -0,0 +1,67 @@
1
+ # encoding: UTF-8
2
+ # SOAP4R - marshal/unmarshal interface.
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/datatypes'
11
+ require 'soap/soap'
12
+ require 'soap/element'
13
+ require 'soap/parser'
14
+ require 'soap/generator'
15
+ require 'soap/encodingstyle/soapHandler'
16
+ require 'soap/encodingstyle/literalHandler'
17
+ require 'soap/encodingstyle/aspDotNetHandler'
18
+
19
+
20
+ module SOAP
21
+
22
+
23
+ module Processor
24
+ @@default_parser_option = {}
25
+
26
+ class << self
27
+ public
28
+
29
+ def marshal(env, opt = {}, io = nil)
30
+ generator = create_generator(opt)
31
+ marshalled_str = generator.generate(env, io)
32
+ unless env.external_content.empty?
33
+ opt[:external_content] = env.external_content
34
+ end
35
+ marshalled_str
36
+ end
37
+
38
+ def unmarshal(stream, opt = {})
39
+ parser = create_parser(opt)
40
+ parser.parse(stream)
41
+ end
42
+
43
+ def default_parser_option=(rhs)
44
+ @@default_parser_option = rhs
45
+ end
46
+
47
+ def default_parser_option
48
+ @@default_parser_option
49
+ end
50
+
51
+ private
52
+
53
+ def create_generator(opt)
54
+ Generator.new(opt)
55
+ end
56
+
57
+ def create_parser(opt)
58
+ if opt.empty?
59
+ opt = @@default_parser_option
60
+ end
61
+ ::SOAP::Parser.new(opt)
62
+ end
63
+ end
64
+ end
65
+
66
+
67
+ end
@@ -0,0 +1,330 @@
1
+ # encoding: UTF-8
2
+ # soap/property.rb: SOAP4R - Property implementation.
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
+ module SOAP
11
+
12
+
13
+ # Property stream format:
14
+ #
15
+ # line separator is \r?\n. 1 line per a property.
16
+ # line which begins with '#' is a comment line. empty line is ignored, too.
17
+ # key/value separator is ':' or '='.
18
+ # '\' as escape character. but line separator cannot be escaped.
19
+ # \s at the head/tail of key/value are trimmed.
20
+ #
21
+ # '[' + key + ']' indicates property section. for example,
22
+ #
23
+ # [aaa.bbb]
24
+ # ccc = ddd
25
+ # eee.fff = ggg
26
+ # []
27
+ # aaa.hhh = iii
28
+ #
29
+ # is the same as;
30
+ #
31
+ # aaa.bbb.ccc = ddd
32
+ # aaa.bbb.eee.fff = ggg
33
+ # aaa.hhh = iii
34
+ #
35
+ class Property
36
+ FrozenError = (RUBY_VERSION >= "1.9.0") ? RuntimeError : TypeError
37
+
38
+ include Enumerable
39
+
40
+ module Util
41
+ def const_from_name(fqname)
42
+ fqname.split("::").inject(Kernel) { |klass, name| klass.const_get(name) }
43
+ end
44
+ module_function :const_from_name
45
+
46
+ def require_from_name(fqname)
47
+ require File.join(fqname.split("::").collect { |ele| ele.downcase })
48
+ end
49
+ module_function :require_from_name
50
+ end
51
+
52
+ def self.load(stream)
53
+ new.load(stream)
54
+ end
55
+
56
+ def self.loadproperty(propname)
57
+ new.loadproperty(propname)
58
+ end
59
+
60
+ def initialize
61
+ @store = Hash.new
62
+ @hook = Hash.new
63
+ @self_hook = Array.new
64
+ @locked = false
65
+ end
66
+
67
+ KEY_REGSRC = '([^=:\\\\]*(?:\\\\.[^=:\\\\]*)*)'
68
+ DEF_REGSRC = '\\s*' + KEY_REGSRC + '\\s*[=:]\\s*(.*)'
69
+ #COMMENT_REGEXP = Regexp.new('^(?:#.*|)$', nil, 'u')
70
+ #CATDEF_REGEXP = Regexp.new("^\\[\\s*#{KEY_REGSRC}\\s*\\]$", nil, 'u')
71
+ #LINE_REGEXP = Regexp.new("^#{DEF_REGSRC}$", nil, 'u')
72
+
73
+ COMMENT_REGEXP = Regexp.new('^(?:#.*|)$') # RubyJedi: Attempt at 1.9 Compatibility // , nil, 'u')
74
+ CATDEF_REGEXP = Regexp.new("^\\[\\s*#{KEY_REGSRC}\\s*\\]$") # RubyJedi: Attempt at 1.9 Compatibility // , nil, 'u')
75
+ LINE_REGEXP = Regexp.new("^#{DEF_REGSRC}$") # RubyJedi: Attempt at 1.9 Compatibility // , nil, 'u')
76
+
77
+ def load(stream)
78
+ key_prefix = ""
79
+ if stream.respond_to?(:each_line) # Ruby 1.9 and beyond
80
+ stream = stream.each_line
81
+ elsif stream.respond_to?(:lines) # RubyJedi: compatible with Ruby 1.8.6
82
+ stream = stream.lines
83
+ end
84
+ stream.each_with_index do |line, lineno|
85
+ line.sub!(/\r?\n\z/u, '')
86
+ case line
87
+ when COMMENT_REGEXP
88
+ next
89
+ when CATDEF_REGEXP
90
+ key_prefix = $1.strip
91
+ when LINE_REGEXP
92
+ key, value = $1.strip, $2.strip
93
+ key = "#{key_prefix}.#{key}" unless key_prefix.empty?
94
+ key, value = loadstr(key), loadstr(value)
95
+ self[key] = value
96
+ else
97
+ raise TypeError.new(
98
+ "property format error at line #{lineno + 1}: `#{line}'")
99
+ end
100
+ end
101
+ self
102
+ end
103
+
104
+ # find property from $:.
105
+ def loadproperty(propname)
106
+ return loadpropertyfile(propname) if File.file?(propname)
107
+ $:.each do |path|
108
+ if File.file?(file = File.join(path, propname))
109
+ return loadpropertyfile(file)
110
+ end
111
+ end
112
+ nil
113
+ end
114
+
115
+ # name: a Symbol, String or an Array
116
+ def [](name)
117
+ referent(name_to_a(name))
118
+ end
119
+
120
+ # name: a Symbol, String or an Array
121
+ # value: an Object
122
+ def []=(name, value)
123
+ name_pair = name_to_a(name).freeze
124
+ hooks = assign(name_pair, value)
125
+ hooks.each do |hook|
126
+ hook.call(name_pair, value)
127
+ end
128
+ value
129
+ end
130
+
131
+ # value: an Object
132
+ # key is generated by property
133
+ def <<(value)
134
+ self[generate_new_key] = value
135
+ end
136
+
137
+ # name: a Symbol, String or an Array; nil means hook to the root
138
+ # cascade: true/false; for cascading hook of sub key
139
+ # hook: block which will be called with 2 args, name and value
140
+ def add_hook(name = nil, cascade = false, &hook)
141
+ if name == nil or name == true or name == false
142
+ cascade = name
143
+ assign_self_hook(cascade, &hook)
144
+ else
145
+ assign_hook(name_to_a(name), cascade, &hook)
146
+ end
147
+ end
148
+
149
+ def each
150
+ @store.each do |key, value|
151
+ yield(key, value)
152
+ end
153
+ end
154
+
155
+ def empty?
156
+ @store.empty?
157
+ end
158
+
159
+ def keys
160
+ @store.keys
161
+ end
162
+
163
+ def values
164
+ @store.values
165
+ end
166
+
167
+ def lock(cascade = false)
168
+ if cascade
169
+ each_key do |key|
170
+ key.lock(cascade)
171
+ end
172
+ end
173
+ @locked = true
174
+ self
175
+ end
176
+
177
+ def unlock(cascade = false)
178
+ @locked = false
179
+ if cascade
180
+ each_key do |key|
181
+ key.unlock(cascade)
182
+ end
183
+ end
184
+ self
185
+ end
186
+
187
+ def locked?
188
+ @locked
189
+ end
190
+
191
+ protected
192
+
193
+ def deref_key(key)
194
+ check_lock(key)
195
+ ref = @store[key] ||= self.class.new
196
+ unless propkey?(ref)
197
+ raise ArgumentError.new("key `#{key}' already defined as a value")
198
+ end
199
+ ref
200
+ end
201
+
202
+ def local_referent(key)
203
+ check_lock(key)
204
+ if propkey?(@store[key]) and @store[key].locked?
205
+ raise FrozenError.new("cannot split any key from locked property")
206
+ end
207
+ @store[key]
208
+ end
209
+
210
+ def local_assign(key, value)
211
+ check_lock(key)
212
+ if @locked
213
+ if propkey?(value)
214
+ raise FrozenError.new("cannot add any key to locked property")
215
+ elsif propkey?(@store[key])
216
+ raise FrozenError.new("cannot override any key in locked property")
217
+ end
218
+ end
219
+ @store[key] = value
220
+ end
221
+
222
+ def local_hook(key, direct)
223
+ hooks = []
224
+ (@self_hook + (@hook[key] || NO_HOOK)).each do |hook, cascade|
225
+ hooks << hook if direct or cascade
226
+ end
227
+ hooks
228
+ end
229
+
230
+ def local_assign_hook(key, cascade, &hook)
231
+ check_lock(key)
232
+ @store[key] ||= nil
233
+ (@hook[key] ||= []) << [hook, cascade]
234
+ end
235
+
236
+ private
237
+
238
+ NO_HOOK = [].freeze
239
+
240
+ def referent(ary)
241
+ ary[0..-2].inject(self) { |ref, name|
242
+ ref.deref_key(to_key(name))
243
+ }.local_referent(to_key(ary.last))
244
+ end
245
+
246
+ def assign(ary, value)
247
+ ref = self
248
+ hook = NO_HOOK
249
+ ary[0..-2].each do |name|
250
+ key = to_key(name)
251
+ hook += ref.local_hook(key, false)
252
+ ref = ref.deref_key(key)
253
+ end
254
+ last_key = to_key(ary.last)
255
+ ref.local_assign(last_key, value)
256
+ hook + ref.local_hook(last_key, true)
257
+ end
258
+
259
+ def assign_hook(ary, cascade, &hook)
260
+ ary[0..-2].inject(self) { |ref, name|
261
+ ref.deref_key(to_key(name))
262
+ }.local_assign_hook(to_key(ary.last), cascade, &hook)
263
+ end
264
+
265
+ def assign_self_hook(cascade, &hook)
266
+ check_lock(nil)
267
+ @self_hook << [hook, cascade]
268
+ end
269
+
270
+ def each_key
271
+ self.each do |key, value|
272
+ if propkey?(value)
273
+ yield(value)
274
+ end
275
+ end
276
+ end
277
+
278
+ def check_lock(key)
279
+ if @locked and (key.nil? or !@store.key?(key))
280
+ raise FrozenError.new("cannot add any key to locked property")
281
+ end
282
+ end
283
+
284
+ def propkey?(value)
285
+ value.is_a?(::SOAP::Property)
286
+ end
287
+
288
+ def name_to_a(name)
289
+ case name
290
+ when Symbol
291
+ [name]
292
+ when String
293
+ name.scan(/[^.\\]+(?:\\.[^.\\])*/u) # split with unescaped '.'
294
+ when Array
295
+ name
296
+ else
297
+ raise ArgumentError.new("Unknown name #{name}(#{name.class})")
298
+ end
299
+ end
300
+
301
+ def to_key(name)
302
+ name.to_s.downcase
303
+ end
304
+
305
+ def generate_new_key
306
+ if @store.empty?
307
+ "0"
308
+ else
309
+ (key_max + 1).to_s
310
+ end
311
+ end
312
+
313
+ def key_max
314
+ (@store.keys.max { |l, r| l.to_s.to_i <=> r.to_s.to_i }).to_s.to_i
315
+ end
316
+
317
+ def loadpropertyfile(file)
318
+ puts "find property at #{file}" if $DEBUG
319
+ File.open(file) do |f|
320
+ load(f)
321
+ end
322
+ end
323
+
324
+ def loadstr(str)
325
+ str.gsub(/\\./u) { |c| eval("\"#{c}\"") }
326
+ end
327
+ end
328
+
329
+
330
+ end
data/lib/soap/proxy.rb ADDED
@@ -0,0 +1,15 @@
1
+ # encoding: UTF-8
2
+ # SOAP4R - Proxy library.
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/rpc/proxy'
11
+
12
+
13
+ module SOAP
14
+ SOAPProxy = RPC::Proxy
15
+ end