mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
df731e37a1
* lib/soap/header/* * lib/soap/rpc/httpserver.rb * lib/wsdl/soap/cgiStubCreator.rb * lib/wsdl/soap/classDefCreator.rb * lib/wsdl/soap/classDefCreatorSupport.rb * lib/wsdl/soap/clientSkeltonCreator.rb * lib/wsdl/soap/driverCreator.rb * lib/wsdl/soap/mappingRegistryCreator.rb * lib/wsdl/soap/methodDefCreator.rb * lib/wsdl/soap/servantSkeltonCreator.rb * lib/wsdl/soap/standaloneServerStubCreator.rb * lib/wsdl/xmlSchema/enumeration.rb * lib/wsdl/xmlSchema/simpleRestriction.rb * lib/wsdl/xmlSchema/simpleType.rb * lib/xsd/codegen/* * lib/xsd/codegen.rb * sample/soap/authheader/* * sample/soap/raa2.4/* * sample/soap/ssl/* * sample/soap/swa/* * sample/soap/whois.rb * sample/wsdl/raa2.4/* * test/soap/header/* * test/soap/ssl/* * test/soap/struct/* * test/soap/swa/* * test/soap/wsdlDriver/* * test/wsdl/multiplefault.wsdl * test/wsdl/simpletype/* * test/wsdl/test_multiplefault.rb * modified files: * lib/soap/baseData.rb * lib/soap/element.rb * lib/soap/generator.rb * lib/soap/netHttpClient.rb * lib/soap/parser.rb * lib/soap/property.rb * lib/soap/soap.rb * lib/soap/streamHandler.rb * lib/soap/wsdlDriver.rb * lib/soap/wsdlDriver.rb * lib/soap/encodingstyle/handler.rb * lib/soap/encodingstyle/literalHandler.rb * lib/soap/encodingstyle/soapHandler.rb * lib/soap/mapping/factory.rb * lib/soap/mapping/mapping.rb * lib/soap/mapping/registry.rb * lib/soap/mapping/rubytypeFactory.rb * lib/soap/mapping/wsdlRegistry.rb * lib/soap/rpc/cgistub.rb * lib/soap/rpc/driver.rb * lib/soap/rpc/proxy.rb * lib/soap/rpc/router.rb * lib/soap/rpc/soaplet.rb * lib/soap/rpc/standaloneServer.rb * lib/wsdl/data.rb * lib/wsdl/definitions.rb * lib/wsdl/operation.rb * lib/wsdl/parser.rb * lib/wsdl/soap/definitions.rb * lib/wsdl/xmlSchema/complexContent.rb * lib/wsdl/xmlSchema/complexType.rb * lib/wsdl/xmlSchema/data.rb * lib/wsdl/xmlSchema/parser.rb * lib/wsdl/xmlSchema/schema.rb * lib/xsd/datatypes.rb * lib/xsd/qname.rb * sample/soap/sampleStruct/server.rb * sample/wsdl/amazon/AmazonSearch.rb * sample/wsdl/amazon/AmazonSearchDriver.rb * test/soap/test_property.rb * test/soap/calc/test_calc_cgi.rb * test/wsdl/test_emptycomplextype.rb * summary * add SOAP Header mustUnderstand support. * add HTTP client SSL configuration and Cookies support (works completely with http-access2). * add header handler for handling sending/receiving SOAP Header. * map Ruby's anonymous Struct to common SOAP Struct in SOAP Object Model. it caused error. * add WSDL simpleType support to restrict lexical value space. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
155 lines
3.9 KiB
Ruby
155 lines
3.9 KiB
Ruby
# SOAP4R - WSDL mapping registry.
|
|
# Copyright (C) 2000, 2001, 2002, 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
|
|
|
# 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.
|
|
|
|
|
|
require 'soap/baseData'
|
|
require 'soap/mapping/mapping'
|
|
require 'soap/mapping/typeMap'
|
|
|
|
|
|
module SOAP
|
|
module Mapping
|
|
|
|
|
|
class WSDLRegistry
|
|
include TraverseSupport
|
|
|
|
attr_reader :definedtypes
|
|
|
|
def initialize(definedtypes, config = {})
|
|
@definedtypes = definedtypes
|
|
@config = config
|
|
@excn_handler_obj2soap = nil
|
|
# For mapping AnyType element.
|
|
@rubytype_factory = RubytypeFactory.new(
|
|
:allow_untyped_struct => true,
|
|
:allow_original_mapping => true
|
|
)
|
|
end
|
|
|
|
def obj2soap(klass, obj, type_qname)
|
|
soap_obj = nil
|
|
if obj.nil?
|
|
soap_obj = SOAPNil.new
|
|
elsif obj.is_a?(XSD::NSDBase)
|
|
soap_obj = soap2soap(obj, type_qname)
|
|
elsif type = @definedtypes[type_qname]
|
|
soap_obj = obj2type(obj, type)
|
|
elsif (type = TypeMap[type_qname])
|
|
soap_obj = base2soap(obj, type)
|
|
elsif type_qname == XSD::AnyTypeName
|
|
soap_obj = @rubytype_factory.obj2soap(nil, obj, nil, nil)
|
|
end
|
|
return soap_obj if soap_obj
|
|
if @excn_handler_obj2soap
|
|
soap_obj = @excn_handler_obj2soap.call(obj) { |yield_obj|
|
|
Mapping._obj2soap(yield_obj, self)
|
|
}
|
|
end
|
|
return soap_obj if soap_obj
|
|
raise MappingError.new("Cannot map #{ klass.name } to SOAP/OM.")
|
|
end
|
|
|
|
def soap2obj(klass, node)
|
|
raise RuntimeError.new("#{ self } is for obj2soap only.")
|
|
end
|
|
|
|
def excn_handler_obj2soap=(handler)
|
|
@excn_handler_obj2soap = handler
|
|
end
|
|
|
|
private
|
|
|
|
def soap2soap(obj, type_qname)
|
|
if obj.is_a?(SOAPBasetype)
|
|
obj
|
|
elsif obj.is_a?(SOAPStruct) && (type = @definedtypes[type_qname])
|
|
soap_obj = obj
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
elements2soap(obj, soap_obj, type.content.elements)
|
|
soap_obj
|
|
elsif obj.is_a?(SOAPArray) && (type = @definedtypes[type_qname])
|
|
soap_obj = obj
|
|
contenttype = type.child_type
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
obj.replace do |ele|
|
|
Mapping._obj2soap(ele, self, contenttype)
|
|
end
|
|
soap_obj
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
|
|
def obj2type(obj, type)
|
|
if type.is_a?(::WSDL::XMLSchema::SimpleType)
|
|
simple2soap(obj, type)
|
|
else
|
|
complex2soap(obj, type)
|
|
end
|
|
end
|
|
|
|
def simple2soap(obj, type)
|
|
o = base2soap(obj, TypeMap[type.base])
|
|
if type.restriction.enumeration.empty?
|
|
STDERR.puts("#{type.name}: simpleType which is not enum type not supported.")
|
|
return o
|
|
end
|
|
type.check_lexical_format(obj)
|
|
o
|
|
end
|
|
|
|
def complex2soap(obj, type)
|
|
case type.compoundtype
|
|
when :TYPE_STRUCT
|
|
struct2soap(obj, type.name, type)
|
|
when :TYPE_ARRAY
|
|
array2soap(obj, type.name, type)
|
|
end
|
|
end
|
|
|
|
def base2soap(obj, type)
|
|
soap_obj = nil
|
|
if type <= XSD::XSDString
|
|
soap_obj = type.new(XSD::Charset.is_ces(obj, $KCODE) ?
|
|
XSD::Charset.encoding_conv(obj, $KCODE, XSD::Charset.encoding) : obj)
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
else
|
|
soap_obj = type.new(obj)
|
|
end
|
|
soap_obj
|
|
end
|
|
|
|
def struct2soap(obj, type_qname, type)
|
|
soap_obj = SOAPStruct.new(type_qname)
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
elements2soap(obj, soap_obj, type.content.elements)
|
|
soap_obj
|
|
end
|
|
|
|
def array2soap(obj, type_qname, type)
|
|
contenttype = type.child_type
|
|
soap_obj = SOAPArray.new(ValueArrayName, 1, contenttype)
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
obj.each do |item|
|
|
soap_obj.add(Mapping._obj2soap(item, self, contenttype))
|
|
end
|
|
soap_obj
|
|
end
|
|
|
|
def elements2soap(obj, soap_obj, elements)
|
|
elements.each do |element|
|
|
name = element.name.name
|
|
child_obj = obj.instance_eval("@#{ name }")
|
|
soap_obj.add(name, Mapping._obj2soap(child_obj, self, element.type))
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
end
|
|
end
|