* lib/soap/**/*.rb, lib/wsdl/**/*.rb, lib/xsd/**/*.rb: changed license; GPL2 -> Ruby's.
* lib/soap/rpc/driver.rb, lib/soap/wsdlDriver.rb, lib/soap/streamHandler.rb: add interface to streamhandler.
* lib/soap/marshal.rb: raise error if parse fails.
* lib/soap/netHttpClient.rb: add https support. Patched by Oliver M. Bolzer.
* lib/soap/netHttpClient.rb: dump HTTP response message body by itself.
* lib/soap/rpc/driver.rb, lib/soap/rpc/proxy.rb, lib/soap/wsdlDriver.rb: add driver#mandatorycharset interface to foce using charset for parsing response from buggy server.
* lib/soap/encodingstyle/soapHandler.rb: support Apache Axis's half typed multi-ref array.
* lib/soap/mapping/factory.rb, lib/soap/mapping/registry.rb: map SOAPStruct which has multi-accessors which name are the same, to an array.
* lib/soap/rpc/element.rb: fixed illegal parameter order.
* lib/soap/rpc/element.rb: element name of response message could have the name other than 'return'.
* lib/wsdl/operation.rb, lib/wsdl/operationBinding.rb, lib/wsdl/soap/classDefCreator.rb, lib/wsdl/soap/methodDefCreator.rb, lib/wsdl/soap/methodDefCreatorSupport.rb: WSDL/1.1 allows plural fault definition in a operation. [ruby-talk:84948]
* test/wsdl/multiplefault.wsdl, test/wsdl/test_multiplefault.rb: add test for above fix.
* lib/wsdl/soap/complexType.rb: support WSDL array definition with maxOccures="unbound".
* lib/xsd/charset.rb: use cp932 under emx. Patched by Siena. / SHINAGAWA, Norihide in [ruby-dev:21972]
* lib/xsd/xmlparser/parser.rb: set @charset nil by default. Nil means 'follow encoding declaration in XML'.
* sample/soap/digraph.rb, sample/wsdl/amazon/wsdlDriver.rb, sample/wsdl/googleSearch/sampleClient.rb, sample/wsdl/googleSearch/wsdlDriver.rb, test/wsdl/test_emptycomplextype.rb, test/wsdl/marshal/test_wsdlmarshal.rb, test/xsd/test_xmlschemaparser.rb: use File.open(...) { |f| f.read } instead of File.open(...).read. [ruby-dev:21964]
* test/wsdl/emptycomplextype.wsdl, test/wsdl/test_emptycomplextype.rb: simplify the test case.
* test/wsdl/axisArray/*: add tests for axis's array encoding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-25 02:31:33 -05:00
|
|
|
# SOAP4R - Mapping factory.
|
|
|
|
# Copyright (C) 2000, 2001, 2002, 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
2003-09-24 11:18:44 -04:00
|
|
|
|
* lib/soap/**/*.rb, lib/wsdl/**/*.rb, lib/xsd/**/*.rb: changed license; GPL2 -> Ruby's.
* lib/soap/rpc/driver.rb, lib/soap/wsdlDriver.rb, lib/soap/streamHandler.rb: add interface to streamhandler.
* lib/soap/marshal.rb: raise error if parse fails.
* lib/soap/netHttpClient.rb: add https support. Patched by Oliver M. Bolzer.
* lib/soap/netHttpClient.rb: dump HTTP response message body by itself.
* lib/soap/rpc/driver.rb, lib/soap/rpc/proxy.rb, lib/soap/wsdlDriver.rb: add driver#mandatorycharset interface to foce using charset for parsing response from buggy server.
* lib/soap/encodingstyle/soapHandler.rb: support Apache Axis's half typed multi-ref array.
* lib/soap/mapping/factory.rb, lib/soap/mapping/registry.rb: map SOAPStruct which has multi-accessors which name are the same, to an array.
* lib/soap/rpc/element.rb: fixed illegal parameter order.
* lib/soap/rpc/element.rb: element name of response message could have the name other than 'return'.
* lib/wsdl/operation.rb, lib/wsdl/operationBinding.rb, lib/wsdl/soap/classDefCreator.rb, lib/wsdl/soap/methodDefCreator.rb, lib/wsdl/soap/methodDefCreatorSupport.rb: WSDL/1.1 allows plural fault definition in a operation. [ruby-talk:84948]
* test/wsdl/multiplefault.wsdl, test/wsdl/test_multiplefault.rb: add test for above fix.
* lib/wsdl/soap/complexType.rb: support WSDL array definition with maxOccures="unbound".
* lib/xsd/charset.rb: use cp932 under emx. Patched by Siena. / SHINAGAWA, Norihide in [ruby-dev:21972]
* lib/xsd/xmlparser/parser.rb: set @charset nil by default. Nil means 'follow encoding declaration in XML'.
* sample/soap/digraph.rb, sample/wsdl/amazon/wsdlDriver.rb, sample/wsdl/googleSearch/sampleClient.rb, sample/wsdl/googleSearch/wsdlDriver.rb, test/wsdl/test_emptycomplextype.rb, test/wsdl/marshal/test_wsdlmarshal.rb, test/xsd/test_xmlschemaparser.rb: use File.open(...) { |f| f.read } instead of File.open(...).read. [ruby-dev:21964]
* test/wsdl/emptycomplextype.wsdl, test/wsdl/test_emptycomplextype.rb: simplify the test case.
* test/wsdl/axisArray/*: add tests for axis's array encoding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-25 02:31:33 -05:00
|
|
|
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
|
|
|
# redistribute it and/or modify it under the same terms of Ruby's license;
|
|
|
|
# either the dual license version in 2003, or any later version.
|
2003-09-24 11:18:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
module SOAP
|
|
|
|
module Mapping
|
|
|
|
|
|
|
|
|
|
|
|
class Factory
|
|
|
|
include TraverseSupport
|
|
|
|
|
2003-10-14 11:14:02 -04:00
|
|
|
def initialize
|
|
|
|
# nothing to do
|
|
|
|
end
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
|
|
raise NotImplementError.new
|
|
|
|
# return soap_obj
|
|
|
|
end
|
|
|
|
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
|
|
raise NotImplementError.new
|
|
|
|
# return convert_succeeded_or_not, obj
|
|
|
|
end
|
|
|
|
|
|
|
|
if Object.respond_to?(:allocate)
|
|
|
|
# ruby/1.7 or later.
|
|
|
|
def create_empty_object(klass)
|
|
|
|
klass.allocate
|
|
|
|
end
|
|
|
|
else
|
2003-11-08 04:52:42 -05:00
|
|
|
MARSHAL_TAG = {
|
|
|
|
String => ['"', 1],
|
|
|
|
Regexp => ['/', 2],
|
|
|
|
Array => ['[', 1],
|
|
|
|
Hash => ['{', 1]
|
|
|
|
}
|
2003-09-24 11:18:44 -04:00
|
|
|
def create_empty_object(klass)
|
2003-11-08 04:52:42 -05:00
|
|
|
if klass <= Struct
|
|
|
|
name = klass.name
|
|
|
|
return ::Marshal.load(sprintf("\004\006S:%c%s\000", name.length + 5, name))
|
|
|
|
end
|
|
|
|
if MARSHAL_TAG.has_key?(klass)
|
|
|
|
tag, terminate = MARSHAL_TAG[klass]
|
|
|
|
return ::Marshal.load(sprintf("\004\006%s%s", tag, "\000" * terminate))
|
|
|
|
end
|
|
|
|
MARSHAL_TAG.each do |k, v|
|
|
|
|
if klass < k
|
|
|
|
name = klass.name
|
|
|
|
tag, terminate = v
|
|
|
|
return ::Marshal.load(sprintf("\004\006C:%c%s%s%s", name.length + 5, name, tag, "\000" * terminate))
|
|
|
|
end
|
|
|
|
end
|
2003-09-24 11:18:44 -04:00
|
|
|
name = klass.name
|
|
|
|
::Marshal.load(sprintf("\004\006o:%c%s\000", name.length + 5, name))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def setiv2obj(obj, node, map)
|
|
|
|
return if node.nil?
|
* lib/soap/**/*.rb, lib/wsdl/**/*.rb, lib/xsd/**/*.rb: changed license; GPL2 -> Ruby's.
* lib/soap/rpc/driver.rb, lib/soap/wsdlDriver.rb, lib/soap/streamHandler.rb: add interface to streamhandler.
* lib/soap/marshal.rb: raise error if parse fails.
* lib/soap/netHttpClient.rb: add https support. Patched by Oliver M. Bolzer.
* lib/soap/netHttpClient.rb: dump HTTP response message body by itself.
* lib/soap/rpc/driver.rb, lib/soap/rpc/proxy.rb, lib/soap/wsdlDriver.rb: add driver#mandatorycharset interface to foce using charset for parsing response from buggy server.
* lib/soap/encodingstyle/soapHandler.rb: support Apache Axis's half typed multi-ref array.
* lib/soap/mapping/factory.rb, lib/soap/mapping/registry.rb: map SOAPStruct which has multi-accessors which name are the same, to an array.
* lib/soap/rpc/element.rb: fixed illegal parameter order.
* lib/soap/rpc/element.rb: element name of response message could have the name other than 'return'.
* lib/wsdl/operation.rb, lib/wsdl/operationBinding.rb, lib/wsdl/soap/classDefCreator.rb, lib/wsdl/soap/methodDefCreator.rb, lib/wsdl/soap/methodDefCreatorSupport.rb: WSDL/1.1 allows plural fault definition in a operation. [ruby-talk:84948]
* test/wsdl/multiplefault.wsdl, test/wsdl/test_multiplefault.rb: add test for above fix.
* lib/wsdl/soap/complexType.rb: support WSDL array definition with maxOccures="unbound".
* lib/xsd/charset.rb: use cp932 under emx. Patched by Siena. / SHINAGAWA, Norihide in [ruby-dev:21972]
* lib/xsd/xmlparser/parser.rb: set @charset nil by default. Nil means 'follow encoding declaration in XML'.
* sample/soap/digraph.rb, sample/wsdl/amazon/wsdlDriver.rb, sample/wsdl/googleSearch/sampleClient.rb, sample/wsdl/googleSearch/wsdlDriver.rb, test/wsdl/test_emptycomplextype.rb, test/wsdl/marshal/test_wsdlmarshal.rb, test/xsd/test_xmlschemaparser.rb: use File.open(...) { |f| f.read } instead of File.open(...).read. [ruby-dev:21964]
* test/wsdl/emptycomplextype.wsdl, test/wsdl/test_emptycomplextype.rb: simplify the test case.
* test/wsdl/axisArray/*: add tests for axis's array encoding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-25 02:31:33 -05:00
|
|
|
if obj.is_a?(Array)
|
|
|
|
setiv2ary(obj, node, map)
|
|
|
|
else
|
|
|
|
setiv2struct(obj, node, map)
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def setiv2soap(node, obj, map)
|
|
|
|
obj.instance_variables.each do |var|
|
|
|
|
name = var.sub(/^@/, '')
|
|
|
|
node.add(Mapping.name2elename(name),
|
|
|
|
Mapping._obj2soap(obj.instance_eval(var), map))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# It breaks Thread.current[:SOAPMarshalDataKey].
|
|
|
|
def mark_marshalled_obj(obj, soap_obj)
|
|
|
|
Thread.current[:SOAPMarshalDataKey][obj.__id__] = soap_obj
|
|
|
|
end
|
|
|
|
|
|
|
|
# It breaks Thread.current[:SOAPMarshalDataKey].
|
|
|
|
def mark_unmarshalled_obj(node, obj)
|
|
|
|
Thread.current[:SOAPMarshalDataKey][node.id] = obj
|
|
|
|
end
|
|
|
|
|
* lib/soap/**/*.rb, lib/wsdl/**/*.rb, lib/xsd/**/*.rb: changed license; GPL2 -> Ruby's.
* lib/soap/rpc/driver.rb, lib/soap/wsdlDriver.rb, lib/soap/streamHandler.rb: add interface to streamhandler.
* lib/soap/marshal.rb: raise error if parse fails.
* lib/soap/netHttpClient.rb: add https support. Patched by Oliver M. Bolzer.
* lib/soap/netHttpClient.rb: dump HTTP response message body by itself.
* lib/soap/rpc/driver.rb, lib/soap/rpc/proxy.rb, lib/soap/wsdlDriver.rb: add driver#mandatorycharset interface to foce using charset for parsing response from buggy server.
* lib/soap/encodingstyle/soapHandler.rb: support Apache Axis's half typed multi-ref array.
* lib/soap/mapping/factory.rb, lib/soap/mapping/registry.rb: map SOAPStruct which has multi-accessors which name are the same, to an array.
* lib/soap/rpc/element.rb: fixed illegal parameter order.
* lib/soap/rpc/element.rb: element name of response message could have the name other than 'return'.
* lib/wsdl/operation.rb, lib/wsdl/operationBinding.rb, lib/wsdl/soap/classDefCreator.rb, lib/wsdl/soap/methodDefCreator.rb, lib/wsdl/soap/methodDefCreatorSupport.rb: WSDL/1.1 allows plural fault definition in a operation. [ruby-talk:84948]
* test/wsdl/multiplefault.wsdl, test/wsdl/test_multiplefault.rb: add test for above fix.
* lib/wsdl/soap/complexType.rb: support WSDL array definition with maxOccures="unbound".
* lib/xsd/charset.rb: use cp932 under emx. Patched by Siena. / SHINAGAWA, Norihide in [ruby-dev:21972]
* lib/xsd/xmlparser/parser.rb: set @charset nil by default. Nil means 'follow encoding declaration in XML'.
* sample/soap/digraph.rb, sample/wsdl/amazon/wsdlDriver.rb, sample/wsdl/googleSearch/sampleClient.rb, sample/wsdl/googleSearch/wsdlDriver.rb, test/wsdl/test_emptycomplextype.rb, test/wsdl/marshal/test_wsdlmarshal.rb, test/xsd/test_xmlschemaparser.rb: use File.open(...) { |f| f.read } instead of File.open(...).read. [ruby-dev:21964]
* test/wsdl/emptycomplextype.wsdl, test/wsdl/test_emptycomplextype.rb: simplify the test case.
* test/wsdl/axisArray/*: add tests for axis's array encoding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-25 02:31:33 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def setiv2ary(obj, node, map)
|
|
|
|
node.each do |name, value|
|
|
|
|
Array.instance_method(:<<).bind(obj).call(Mapping._soap2obj(value, map))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def setiv2struct(obj, node, map)
|
|
|
|
vars = {}
|
|
|
|
node.each do |name, value|
|
|
|
|
vars[Mapping.elename2name(name)] = Mapping._soap2obj(value, map)
|
|
|
|
end
|
|
|
|
Mapping.set_instance_vars(obj, vars)
|
|
|
|
end
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class StringFactory_ < Factory
|
2003-10-14 11:14:02 -04:00
|
|
|
def initialize(allow_original_mapping = false)
|
|
|
|
super()
|
|
|
|
@allow_original_mapping = allow_original_mapping
|
|
|
|
end
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
def obj2soap(soap_class, obj, info, map)
|
2003-10-14 11:14:02 -04:00
|
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
|
|
return nil
|
|
|
|
end
|
2003-09-24 11:18:44 -04:00
|
|
|
begin
|
2003-10-14 11:14:02 -04:00
|
|
|
unless XSD::Charset.is_ces(obj, $KCODE)
|
|
|
|
return nil
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
2003-10-14 11:14:02 -04:00
|
|
|
encoded = XSD::Charset.encoding_conv(obj, $KCODE, XSD::Charset.encoding)
|
|
|
|
soap_obj = soap_class.new(encoded)
|
2003-09-24 11:18:44 -04:00
|
|
|
rescue XSD::ValueSpaceError
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
|
|
soap_obj
|
|
|
|
end
|
|
|
|
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
2003-10-14 11:14:02 -04:00
|
|
|
obj = create_empty_object(obj_class)
|
|
|
|
decoded = XSD::Charset.encoding_conv(node.data, XSD::Charset.encoding, $KCODE)
|
|
|
|
obj.replace(decoded)
|
2003-09-24 11:18:44 -04:00
|
|
|
mark_unmarshalled_obj(node, obj)
|
|
|
|
return true, obj
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class BasetypeFactory_ < Factory
|
2003-10-14 11:14:02 -04:00
|
|
|
def initialize(allow_original_mapping = false)
|
|
|
|
super()
|
|
|
|
@allow_original_mapping = allow_original_mapping
|
|
|
|
end
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
def obj2soap(soap_class, obj, info, map)
|
2003-10-14 11:14:02 -04:00
|
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
|
|
return nil
|
|
|
|
end
|
2003-09-24 11:18:44 -04:00
|
|
|
soap_obj = nil
|
|
|
|
begin
|
|
|
|
soap_obj = soap_class.new(obj)
|
|
|
|
rescue XSD::ValueSpaceError
|
|
|
|
return nil
|
|
|
|
end
|
2003-10-31 11:50:27 -05:00
|
|
|
if @allow_original_mapping
|
|
|
|
# Basetype except String should not be multiref-ed in SOAP/1.1.
|
|
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
|
|
end
|
2003-09-24 11:18:44 -04:00
|
|
|
soap_obj
|
|
|
|
end
|
|
|
|
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
|
|
obj = node.data
|
|
|
|
mark_unmarshalled_obj(node, obj)
|
|
|
|
return true, obj
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class DateTimeFactory_ < Factory
|
2003-10-14 11:14:02 -04:00
|
|
|
def initialize(allow_original_mapping = false)
|
|
|
|
super()
|
|
|
|
@allow_original_mapping = allow_original_mapping
|
|
|
|
end
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
def obj2soap(soap_class, obj, info, map)
|
2003-10-14 11:14:02 -04:00
|
|
|
if !@allow_original_mapping and
|
|
|
|
Time === obj and !obj.instance_variables.empty?
|
|
|
|
return nil
|
|
|
|
end
|
2003-09-24 11:18:44 -04:00
|
|
|
soap_obj = nil
|
|
|
|
begin
|
|
|
|
soap_obj = soap_class.new(obj)
|
|
|
|
rescue XSD::ValueSpaceError
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
|
|
soap_obj
|
|
|
|
end
|
|
|
|
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
|
|
obj = nil
|
|
|
|
if obj_class == Time
|
|
|
|
obj = node.to_time
|
|
|
|
if obj.nil?
|
|
|
|
# Is out of range as a Time
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
elsif obj_class == Date
|
|
|
|
obj = node.data
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
mark_unmarshalled_obj(node, obj)
|
|
|
|
return true, obj
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Base64Factory_ < Factory
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
2003-10-14 11:14:02 -04:00
|
|
|
return nil unless obj.instance_variables.empty?
|
2003-09-24 11:18:44 -04:00
|
|
|
soap_obj = soap_class.new(obj)
|
|
|
|
mark_marshalled_obj(obj, soap_obj) if soap_obj
|
|
|
|
soap_obj
|
|
|
|
end
|
|
|
|
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
|
|
obj = node.string
|
|
|
|
mark_unmarshalled_obj(node, obj)
|
|
|
|
return true, obj
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class ArrayFactory_ < Factory
|
2003-10-14 11:14:02 -04:00
|
|
|
def initialize(allow_original_mapping = false)
|
|
|
|
super()
|
|
|
|
@allow_original_mapping = allow_original_mapping
|
|
|
|
end
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
# [[1], [2]] is converted to Array of Array, not 2-D Array.
|
|
|
|
# To create M-D Array, you must call Mapping.ary2md.
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
2003-10-14 11:14:02 -04:00
|
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
|
|
return nil
|
|
|
|
end
|
2003-09-24 11:18:44 -04:00
|
|
|
arytype = Mapping.obj2element(obj)
|
|
|
|
if arytype.name
|
|
|
|
arytype.namespace ||= RubyTypeNamespace
|
|
|
|
else
|
|
|
|
arytype = XSD::AnyTypeName
|
|
|
|
end
|
|
|
|
param = SOAPArray.new(ValueArrayName, 1, arytype)
|
|
|
|
mark_marshalled_obj(obj, param)
|
|
|
|
obj.each do |var|
|
|
|
|
param.add(Mapping._obj2soap(var, map))
|
|
|
|
end
|
|
|
|
param
|
|
|
|
end
|
|
|
|
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
|
|
obj = create_empty_object(obj_class)
|
|
|
|
mark_unmarshalled_obj(node, obj)
|
|
|
|
node.soap2array(obj) do |elem|
|
|
|
|
elem ? Mapping._soap2obj(elem, map) : nil
|
|
|
|
end
|
|
|
|
return true, obj
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class TypedArrayFactory_ < Factory
|
2003-10-14 11:14:02 -04:00
|
|
|
def initialize(allow_original_mapping = false)
|
|
|
|
super()
|
|
|
|
@allow_original_mapping = allow_original_mapping
|
|
|
|
end
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
def obj2soap(soap_class, obj, info, map)
|
2003-10-14 11:14:02 -04:00
|
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
|
|
return nil
|
|
|
|
end
|
2003-09-24 11:18:44 -04:00
|
|
|
arytype = info[:type] || info[0]
|
|
|
|
param = SOAPArray.new(ValueArrayName, 1, arytype)
|
|
|
|
mark_marshalled_obj(obj, param)
|
|
|
|
obj.each do |var|
|
|
|
|
param.add(Mapping._obj2soap(var, map))
|
|
|
|
end
|
|
|
|
param
|
|
|
|
end
|
|
|
|
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
|
|
if node.rank > 1
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
arytype = info[:type] || info[0]
|
|
|
|
unless node.arytype == arytype
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
obj = create_empty_object(obj_class)
|
|
|
|
mark_unmarshalled_obj(node, obj)
|
|
|
|
node.soap2array(obj) do |elem|
|
|
|
|
elem ? Mapping._soap2obj(elem, map) : nil
|
|
|
|
end
|
|
|
|
return true, obj
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class TypedStructFactory_ < Factory
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
|
|
type = info[:type] || info[0]
|
|
|
|
param = soap_class.new(type)
|
|
|
|
mark_marshalled_obj(obj, param)
|
|
|
|
if obj.class <= SOAP::Marshallable
|
|
|
|
setiv2soap(param, obj, map)
|
|
|
|
else
|
|
|
|
setiv2soap(param, obj, map)
|
|
|
|
end
|
|
|
|
param
|
|
|
|
end
|
|
|
|
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
|
|
type = info[:type] || info[0]
|
|
|
|
unless node.type == type
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
obj = create_empty_object(obj_class)
|
|
|
|
mark_unmarshalled_obj(node, obj)
|
|
|
|
setiv2obj(obj, node, map)
|
|
|
|
return true, obj
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
MapQName = XSD::QName.new(ApacheSOAPTypeNamespace, 'Map')
|
|
|
|
class HashFactory_ < Factory
|
2003-10-14 11:14:02 -04:00
|
|
|
def initialize(allow_original_mapping = false)
|
|
|
|
super()
|
|
|
|
@allow_original_mapping = allow_original_mapping
|
|
|
|
end
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
def obj2soap(soap_class, obj, info, map)
|
2003-10-14 11:14:02 -04:00
|
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
if !obj.default.nil? or
|
|
|
|
(obj.respond_to?(:default_proc) and obj.default_proc)
|
2003-09-24 11:18:44 -04:00
|
|
|
return nil
|
|
|
|
end
|
|
|
|
param = SOAPStruct.new(MapQName)
|
|
|
|
mark_marshalled_obj(obj, param)
|
|
|
|
obj.each do |key, value|
|
|
|
|
elem = SOAPStruct.new
|
|
|
|
elem.add("key", Mapping._obj2soap(key, map))
|
|
|
|
elem.add("value", Mapping._obj2soap(value, map))
|
|
|
|
# ApacheAxis allows only 'item' here.
|
|
|
|
param.add("item", elem)
|
|
|
|
end
|
|
|
|
param
|
|
|
|
end
|
|
|
|
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
|
|
unless node.type == MapQName
|
|
|
|
return false
|
|
|
|
end
|
2003-11-28 00:53:16 -05:00
|
|
|
if node.class == SOAPStruct and node.key?('default')
|
2003-09-24 11:18:44 -04:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
obj = create_empty_object(obj_class)
|
|
|
|
mark_unmarshalled_obj(node, obj)
|
2003-11-28 00:53:16 -05:00
|
|
|
if node.class == SOAPStruct
|
|
|
|
node.each do |key, value|
|
|
|
|
obj[Mapping._soap2obj(value['key'], map)] =
|
|
|
|
Mapping._soap2obj(value['value'], map)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
node.each do |value|
|
|
|
|
obj[Mapping._soap2obj(value['key'], map)] =
|
|
|
|
Mapping._soap2obj(value['value'], map)
|
|
|
|
end
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
return true, obj
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|