Class: WSDL::SOAP::MappingRegistryCreator
- Includes:
- ClassDefCreatorSupport
- Defined in:
- lib/wsdl/soap/mappingRegistryCreator.rb
Instance Attribute Summary collapse
-
#definitions ⇒ Object
readonly
Returns the value of attribute definitions.
Instance Method Summary collapse
- #dump ⇒ Object
-
#initialize(definitions, name_creator, modulepath = nil) ⇒ MappingRegistryCreator
constructor
A new instance of MappingRegistryCreator.
Methods included from ClassDefCreatorSupport
#assign_const, #basetype_mapped_class, #create_type_name, #dq, #dqname, #dump_method_signature, #mapped_class_basename, #mapped_class_name, #ndq, #nsym, #sym
Methods included from XSD::CodeGen::GenSupport
capitalize, constant?, #format, keyword?, safeconstname, safeconstname?, safemethodname, safemethodname?, safevarname, safevarname?, uncapitalize
Constructor Details
#initialize(definitions, name_creator, modulepath = nil) ⇒ MappingRegistryCreator
Returns a new instance of MappingRegistryCreator.
26 27 28 29 30 |
# File 'lib/wsdl/soap/mappingRegistryCreator.rb', line 26 def initialize(definitions, name_creator, modulepath = nil) @definitions = definitions @name_creator = name_creator @modulepath = modulepath end |
Instance Attribute Details
#definitions ⇒ Object (readonly)
Returns the value of attribute definitions.
24 25 26 |
# File 'lib/wsdl/soap/mappingRegistryCreator.rb', line 24 def definitions @definitions end |
Instance Method Details
#dump ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/wsdl/soap/mappingRegistryCreator.rb', line 32 def dump defined_const = {} encoded_creator = EncodedMappingRegistryCreator.new(@definitions, @name_creator, @modulepath, defined_const) literal_creator = LiteralMappingRegistryCreator.new(@definitions, @name_creator, @modulepath, defined_const) wsdl_name = @definitions.name ? @definitions.name.name : 'default' module_name = safeconstname(wsdl_name + 'MappingRegistry') if @modulepath module_name = [@modulepath, module_name].join('::') end m = XSD::CodeGen::ModuleDef.new(module_name) m.def_require("soap/mapping") varname = 'EncodedRegistry' m.def_const(varname, '::SOAP::Mapping::EncodedRegistry.new') m.def_code(encoded_creator.dump(varname)) varname = 'LiteralRegistry' m.def_const(varname, '::SOAP::Mapping::LiteralRegistry.new') m.def_code(literal_creator.dump(varname)) # defined_const.each do |ns, tag| m.def_const(tag, dq(ns)) end m.dump end |