mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9cba39a1a1
SOAPBasetype and SOAPCompoundtype. * lib/soap/generator.rb, lib/soap/element.rb, lib/soap/encodingstyle/*: Encoding methods signature change. Pass SOAPGenerator as a parameter. * lib/soap/mapping/*, test/soap/marshal/test_marshal.rb: Refactoring for better marshalling/unmarshalling support. Now I think SOAP marshaller supports all kind of object graph which is supported by Ruby's original marshaller. Of course there could be bugs as always. Find it. :-) * lib/soap/rpc/standaloneServer.rb: Set severity threshould to INFO. DEBUG is too noisy. * lib/xsd/datatypes.rb: DateTime#of is obsoleted. Use DateTime#offset. * test/wsdl/emptycomplextype.wsdl, test/xsd/xmlschema.xml: Avoid useless warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
347 lines
8.6 KiB
Ruby
347 lines
8.6 KiB
Ruby
=begin
|
|
SOAP4R - Mapping factory.
|
|
Copyright (C) 2000, 2001, 2002, 2003 NAKAMURA, Hiroshi.
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
Foundation; either version 2 of the License, or (at your option) any later
|
|
version.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
PRATICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
this program; if not, write to the Free Software Foundation, Inc., 675 Mass
|
|
Ave, Cambridge, MA 02139, USA.
|
|
=end
|
|
|
|
|
|
module SOAP
|
|
module Mapping
|
|
|
|
|
|
class Factory
|
|
include TraverseSupport
|
|
|
|
def initialize
|
|
# nothing to do
|
|
end
|
|
|
|
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
|
|
def create_empty_object(klass)
|
|
name = klass.name
|
|
# Below line is from TANAKA, Akira's amarshal.rb.
|
|
# See http://cvs.m17n.org/cgi-bin/viewcvs/amarshal/?cvsroot=ruby
|
|
::Marshal.load(sprintf("\004\006o:%c%s\000", name.length + 5, name))
|
|
end
|
|
end
|
|
|
|
def setiv2obj(obj, node, map)
|
|
return if node.nil?
|
|
vars = {}
|
|
node.each do |name, value|
|
|
vars[Mapping.elename2name(name)] = Mapping._soap2obj(value, map)
|
|
end
|
|
Mapping.set_instance_vars(obj, vars)
|
|
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
|
|
|
|
def name2typename(name)
|
|
capitalize(name)
|
|
end
|
|
|
|
def capitalize(target)
|
|
target.gsub(/^([a-z])/) { $1.tr!('[a-z]', '[A-Z]') }
|
|
end
|
|
end
|
|
|
|
class StringFactory_ < Factory
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
begin
|
|
unless XSD::Charset.is_ces(obj, $KCODE)
|
|
return nil
|
|
end
|
|
encoded = XSD::Charset.encoding_conv(obj, $KCODE, XSD::Charset.encoding)
|
|
soap_obj = soap_class.new(encoded)
|
|
rescue XSD::ValueSpaceError
|
|
return nil
|
|
end
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
obj = create_empty_object(obj_class)
|
|
decoded = XSD::Charset.encoding_conv(node.data, XSD::Charset.encoding, $KCODE)
|
|
obj.replace(decoded)
|
|
mark_unmarshalled_obj(node, obj)
|
|
return true, obj
|
|
end
|
|
end
|
|
|
|
class BasetypeFactory_ < Factory
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
soap_obj = nil
|
|
begin
|
|
soap_obj = soap_class.new(obj)
|
|
rescue XSD::ValueSpaceError
|
|
return nil
|
|
end
|
|
# Basetype except String should not be multiref-ed in SOAP/1.1.
|
|
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
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
if !@allow_original_mapping and
|
|
Time === obj and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
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)
|
|
return nil unless obj.instance_variables.empty?
|
|
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
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
# [[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)
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
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
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
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
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
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)
|
|
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
|
|
if node.key?('default')
|
|
return false
|
|
end
|
|
obj = create_empty_object(obj_class)
|
|
mark_unmarshalled_obj(node, obj)
|
|
node.each do |key, value|
|
|
obj[Mapping._soap2obj(value['key'], map)] =
|
|
Mapping._soap2obj(value['value'], map)
|
|
end
|
|
return true, obj
|
|
end
|
|
end
|
|
|
|
|
|
end
|
|
end
|