railsware-soap4r 1.5.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README +5 -0
- data/TODO +0 -0
- data/bin/wsdl2ruby.rb +137 -0
- data/bin/xsd2ruby.rb +90 -0
- data/lib/soap/XMLSchemaDatatypes.rb +9 -0
- data/lib/soap/XMLSchemaDatatypes1999.rb +10 -0
- data/lib/soap/attachment.rb +108 -0
- data/lib/soap/baseData.rb +1092 -0
- data/lib/soap/cgistub.rb +9 -0
- data/lib/soap/charset.rb +9 -0
- data/lib/soap/compat.rb +182 -0
- data/lib/soap/driver.rb +9 -0
- data/lib/soap/element.rb +277 -0
- data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
- data/lib/soap/encodingstyle/handler.rb +120 -0
- data/lib/soap/encodingstyle/literalHandler.rb +192 -0
- data/lib/soap/encodingstyle/soapHandler.rb +559 -0
- data/lib/soap/filter.rb +13 -0
- data/lib/soap/filter/filterchain.rb +51 -0
- data/lib/soap/filter/handler.rb +31 -0
- data/lib/soap/filter/streamhandler.rb +29 -0
- data/lib/soap/generator.rb +304 -0
- data/lib/soap/header/handler.rb +61 -0
- data/lib/soap/header/handlerset.rb +70 -0
- data/lib/soap/header/mappinghandler.rb +47 -0
- data/lib/soap/header/simplehandler.rb +44 -0
- data/lib/soap/httpconfigloader.rb +139 -0
- data/lib/soap/mapping.rb +12 -0
- data/lib/soap/mapping/encodedregistry.rb +548 -0
- data/lib/soap/mapping/factory.rb +388 -0
- data/lib/soap/mapping/literalregistry.rb +388 -0
- data/lib/soap/mapping/mapping.rb +609 -0
- data/lib/soap/mapping/registry.rb +295 -0
- data/lib/soap/mapping/rubytypeFactory.rb +478 -0
- data/lib/soap/mapping/schemadefinition.rb +170 -0
- data/lib/soap/mapping/typeMap.rb +106 -0
- data/lib/soap/mapping/wsdlencodedregistry.rb +211 -0
- data/lib/soap/mapping/wsdlliteralregistry.rb +243 -0
- data/lib/soap/mappingRegistry.rb +9 -0
- data/lib/soap/marshal.rb +59 -0
- data/lib/soap/mimemessage.rb +241 -0
- data/lib/soap/namespace.rb +9 -0
- data/lib/soap/nestedexception.rb +42 -0
- data/lib/soap/netHttpClient.rb +241 -0
- data/lib/soap/ns.rb +34 -0
- data/lib/soap/parser.rb +252 -0
- data/lib/soap/processor.rb +66 -0
- data/lib/soap/property.rb +333 -0
- data/lib/soap/proxy.rb +14 -0
- data/lib/soap/qname.rb +9 -0
- data/lib/soap/rpc/cgistub.rb +247 -0
- data/lib/soap/rpc/driver.rb +247 -0
- data/lib/soap/rpc/element.rb +369 -0
- data/lib/soap/rpc/httpserver.rb +169 -0
- data/lib/soap/rpc/proxy.rb +576 -0
- data/lib/soap/rpc/router.rb +669 -0
- data/lib/soap/rpc/rpc.rb +25 -0
- data/lib/soap/rpc/soaplet.rb +210 -0
- data/lib/soap/rpc/standaloneServer.rb +43 -0
- data/lib/soap/rpcRouter.rb +9 -0
- data/lib/soap/rpcUtils.rb +9 -0
- data/lib/soap/server.rb +9 -0
- data/lib/soap/soap.rb +151 -0
- data/lib/soap/standaloneServer.rb +9 -0
- data/lib/soap/streamHandler.rb +302 -0
- data/lib/soap/wsdlDriver.rb +597 -0
- data/lib/tags +5690 -0
- data/lib/wsdl/binding.rb +65 -0
- data/lib/wsdl/data.rb +64 -0
- data/lib/wsdl/definitions.rb +236 -0
- data/lib/wsdl/documentation.rb +32 -0
- data/lib/wsdl/import.rb +80 -0
- data/lib/wsdl/importer.rb +38 -0
- data/lib/wsdl/info.rb +50 -0
- data/lib/wsdl/message.rb +54 -0
- data/lib/wsdl/operation.rb +178 -0
- data/lib/wsdl/operationBinding.rb +130 -0
- data/lib/wsdl/param.rb +93 -0
- data/lib/wsdl/parser.rb +164 -0
- data/lib/wsdl/part.rb +52 -0
- data/lib/wsdl/port.rb +84 -0
- data/lib/wsdl/portType.rb +75 -0
- data/lib/wsdl/service.rb +61 -0
- data/lib/wsdl/soap/address.rb +40 -0
- data/lib/wsdl/soap/binding.rb +49 -0
- data/lib/wsdl/soap/body.rb +58 -0
- data/lib/wsdl/soap/cgiStubCreator.rb +93 -0
- data/lib/wsdl/soap/classDefCreator.rb +433 -0
- data/lib/wsdl/soap/classDefCreatorSupport.rb +230 -0
- data/lib/wsdl/soap/classNameCreator.rb +54 -0
- data/lib/wsdl/soap/clientSkeltonCreator.rb +95 -0
- data/lib/wsdl/soap/complexType.rb +172 -0
- data/lib/wsdl/soap/data.rb +42 -0
- data/lib/wsdl/soap/definitions.rb +200 -0
- data/lib/wsdl/soap/driverCreator.rb +118 -0
- data/lib/wsdl/soap/element.rb +33 -0
- data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +73 -0
- data/lib/wsdl/soap/fault.rb +56 -0
- data/lib/wsdl/soap/header.rb +86 -0
- data/lib/wsdl/soap/headerfault.rb +56 -0
- data/lib/wsdl/soap/literalMappingRegistryCreator.rb +115 -0
- data/lib/wsdl/soap/mappingRegistryCreator.rb +58 -0
- data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +376 -0
- data/lib/wsdl/soap/methodDefCreator.rb +263 -0
- data/lib/wsdl/soap/operation.rb +122 -0
- data/lib/wsdl/soap/servantSkeltonCreator.rb +80 -0
- data/lib/wsdl/soap/servletStubCreator.rb +107 -0
- data/lib/wsdl/soap/standaloneServerStubCreator.rb +103 -0
- data/lib/wsdl/soap/wsdl2ruby.rb +217 -0
- data/lib/wsdl/types.rb +44 -0
- data/lib/wsdl/wsdl.rb +24 -0
- data/lib/wsdl/xmlSchema/all.rb +24 -0
- data/lib/wsdl/xmlSchema/annotation.rb +34 -0
- data/lib/wsdl/xmlSchema/any.rb +61 -0
- data/lib/wsdl/xmlSchema/anyAttribute.rb +48 -0
- data/lib/wsdl/xmlSchema/attribute.rb +123 -0
- data/lib/wsdl/xmlSchema/attributeGroup.rb +86 -0
- data/lib/wsdl/xmlSchema/choice.rb +58 -0
- data/lib/wsdl/xmlSchema/complexContent.rb +97 -0
- data/lib/wsdl/xmlSchema/complexExtension.rb +119 -0
- data/lib/wsdl/xmlSchema/complexRestriction.rb +104 -0
- data/lib/wsdl/xmlSchema/complexType.rb +193 -0
- data/lib/wsdl/xmlSchema/content.rb +95 -0
- data/lib/wsdl/xmlSchema/data.rb +116 -0
- data/lib/wsdl/xmlSchema/element.rb +173 -0
- data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
- data/lib/wsdl/xmlSchema/fractiondigits.rb +37 -0
- data/lib/wsdl/xmlSchema/group.rb +118 -0
- data/lib/wsdl/xmlSchema/import.rb +53 -0
- data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
- data/lib/wsdl/xmlSchema/importer.rb +102 -0
- data/lib/wsdl/xmlSchema/include.rb +48 -0
- data/lib/wsdl/xmlSchema/length.rb +37 -0
- data/lib/wsdl/xmlSchema/list.rb +48 -0
- data/lib/wsdl/xmlSchema/maxexclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/maxinclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/maxlength.rb +37 -0
- data/lib/wsdl/xmlSchema/minexclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/mininclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/minlength.rb +37 -0
- data/lib/wsdl/xmlSchema/parser.rb +167 -0
- data/lib/wsdl/xmlSchema/pattern.rb +36 -0
- data/lib/wsdl/xmlSchema/schema.rb +178 -0
- data/lib/wsdl/xmlSchema/sequence.rb +54 -0
- data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
- data/lib/wsdl/xmlSchema/simpleExtension.rb +62 -0
- data/lib/wsdl/xmlSchema/simpleRestriction.rb +132 -0
- data/lib/wsdl/xmlSchema/simpleType.rb +87 -0
- data/lib/wsdl/xmlSchema/totaldigits.rb +37 -0
- data/lib/wsdl/xmlSchema/union.rb +35 -0
- data/lib/wsdl/xmlSchema/unique.rb +34 -0
- data/lib/wsdl/xmlSchema/whitespace.rb +37 -0
- data/lib/wsdl/xmlSchema/xsd2ruby.rb +174 -0
- data/lib/xsd/charset.rb +189 -0
- data/lib/xsd/codegen.rb +12 -0
- data/lib/xsd/codegen/classdef.rb +208 -0
- data/lib/xsd/codegen/commentdef.rb +34 -0
- data/lib/xsd/codegen/gensupport.rb +273 -0
- data/lib/xsd/codegen/methoddef.rb +70 -0
- data/lib/xsd/codegen/moduledef.rb +208 -0
- data/lib/xsd/datatypes.rb +1466 -0
- data/lib/xsd/datatypes1999.rb +20 -0
- data/lib/xsd/iconvcharset.rb +33 -0
- data/lib/xsd/mapping.rb +67 -0
- data/lib/xsd/namedelements.rb +132 -0
- data/lib/xsd/ns.rb +182 -0
- data/lib/xsd/qname.rb +79 -0
- data/lib/xsd/xmlparser.rb +75 -0
- data/lib/xsd/xmlparser/parser.rb +100 -0
- data/lib/xsd/xmlparser/rexmlparser.rb +58 -0
- data/lib/xsd/xmlparser/xmlparser.rb +50 -0
- data/lib/xsd/xmlparser/xmlscanner.rb +149 -0
- data/soap4r.gemspec +218 -0
- metadata +233 -0
@@ -0,0 +1,37 @@
|
|
1
|
+
# WSDL4R - XMLSchema maxExclusive definition for WSDL.
|
2
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
3
|
+
|
4
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
5
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
6
|
+
# either the dual license version in 2003, or any later version.
|
7
|
+
|
8
|
+
|
9
|
+
require 'wsdl/info'
|
10
|
+
|
11
|
+
|
12
|
+
module WSDL
|
13
|
+
module XMLSchema
|
14
|
+
|
15
|
+
|
16
|
+
class MaxExclusive < Info
|
17
|
+
def initialize
|
18
|
+
super
|
19
|
+
end
|
20
|
+
|
21
|
+
def parse_element(element)
|
22
|
+
nil
|
23
|
+
end
|
24
|
+
|
25
|
+
def parse_attr(attr, value)
|
26
|
+
case attr
|
27
|
+
when FixedAttrName
|
28
|
+
parent.fixed[:maxexclusive] = to_boolean(value)
|
29
|
+
when ValueAttrName
|
30
|
+
parent.maxexclusive = value.source
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# WSDL4R - XMLSchema maxInclusive definition for WSDL.
|
2
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
3
|
+
|
4
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
5
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
6
|
+
# either the dual license version in 2003, or any later version.
|
7
|
+
|
8
|
+
|
9
|
+
require 'wsdl/info'
|
10
|
+
|
11
|
+
|
12
|
+
module WSDL
|
13
|
+
module XMLSchema
|
14
|
+
|
15
|
+
|
16
|
+
class MaxInclusive < Info
|
17
|
+
def initialize
|
18
|
+
super
|
19
|
+
end
|
20
|
+
|
21
|
+
def parse_element(element)
|
22
|
+
nil
|
23
|
+
end
|
24
|
+
|
25
|
+
def parse_attr(attr, value)
|
26
|
+
case attr
|
27
|
+
when FixedAttrName
|
28
|
+
parent.fixed[:maxinclusive] = to_boolean(value)
|
29
|
+
when ValueAttrName
|
30
|
+
parent.maxinclusive = value.source
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# WSDL4R - XMLSchema maxLength definition for WSDL.
|
2
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
3
|
+
|
4
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
5
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
6
|
+
# either the dual license version in 2003, or any later version.
|
7
|
+
|
8
|
+
|
9
|
+
require 'wsdl/info'
|
10
|
+
|
11
|
+
|
12
|
+
module WSDL
|
13
|
+
module XMLSchema
|
14
|
+
|
15
|
+
|
16
|
+
class MaxLength < Info
|
17
|
+
def initialize
|
18
|
+
super
|
19
|
+
end
|
20
|
+
|
21
|
+
def parse_element(element)
|
22
|
+
nil
|
23
|
+
end
|
24
|
+
|
25
|
+
def parse_attr(attr, value)
|
26
|
+
case attr
|
27
|
+
when FixedAttrName
|
28
|
+
parent.fixed[:maxlength] = to_boolean(value)
|
29
|
+
when ValueAttrName
|
30
|
+
parent.maxlength = to_int(value)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# WSDL4R - XMLSchema minExclusive definition for WSDL.
|
2
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
3
|
+
|
4
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
5
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
6
|
+
# either the dual license version in 2003, or any later version.
|
7
|
+
|
8
|
+
|
9
|
+
require 'wsdl/info'
|
10
|
+
|
11
|
+
|
12
|
+
module WSDL
|
13
|
+
module XMLSchema
|
14
|
+
|
15
|
+
|
16
|
+
class MinExclusive < Info
|
17
|
+
def initialize
|
18
|
+
super
|
19
|
+
end
|
20
|
+
|
21
|
+
def parse_element(element)
|
22
|
+
nil
|
23
|
+
end
|
24
|
+
|
25
|
+
def parse_attr(attr, value)
|
26
|
+
case attr
|
27
|
+
when FixedAttrName
|
28
|
+
parent.fixed[:minexclusive] = to_boolean(value)
|
29
|
+
when ValueAttrName
|
30
|
+
parent.minexclusive = value.source
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# WSDL4R - XMLSchema minInclusive definition for WSDL.
|
2
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
3
|
+
|
4
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
5
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
6
|
+
# either the dual license version in 2003, or any later version.
|
7
|
+
|
8
|
+
|
9
|
+
require 'wsdl/info'
|
10
|
+
|
11
|
+
|
12
|
+
module WSDL
|
13
|
+
module XMLSchema
|
14
|
+
|
15
|
+
|
16
|
+
class MinInclusive < Info
|
17
|
+
def initialize
|
18
|
+
super
|
19
|
+
end
|
20
|
+
|
21
|
+
def parse_element(element)
|
22
|
+
nil
|
23
|
+
end
|
24
|
+
|
25
|
+
def parse_attr(attr, value)
|
26
|
+
case attr
|
27
|
+
when FixedAttrName
|
28
|
+
parent.fixed[:mininclusive] = to_boolean(value)
|
29
|
+
when ValueAttrName
|
30
|
+
parent.mininclusive = value.source
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# WSDL4R - XMLSchema minLength definition for WSDL.
|
2
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
3
|
+
|
4
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
5
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
6
|
+
# either the dual license version in 2003, or any later version.
|
7
|
+
|
8
|
+
|
9
|
+
require 'wsdl/info'
|
10
|
+
|
11
|
+
|
12
|
+
module WSDL
|
13
|
+
module XMLSchema
|
14
|
+
|
15
|
+
|
16
|
+
class MinLength < Info
|
17
|
+
def initialize
|
18
|
+
super
|
19
|
+
end
|
20
|
+
|
21
|
+
def parse_element(element)
|
22
|
+
nil
|
23
|
+
end
|
24
|
+
|
25
|
+
def parse_attr(attr, value)
|
26
|
+
case attr
|
27
|
+
when FixedAttrName
|
28
|
+
parent.fixed[:minlength] = to_boolean(value)
|
29
|
+
when ValueAttrName
|
30
|
+
parent.minlength = to_int(value)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,167 @@
|
|
1
|
+
# WSDL4R - WSDL XML Instance parser library.
|
2
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
3
|
+
|
4
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
5
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
6
|
+
# either the dual license version in 2003, or any later version.
|
7
|
+
|
8
|
+
|
9
|
+
require 'xsd/qname'
|
10
|
+
require 'xsd/ns'
|
11
|
+
require 'xsd/charset'
|
12
|
+
require 'xsd/datatypes'
|
13
|
+
require 'xsd/xmlparser'
|
14
|
+
require 'wsdl/xmlSchema/data'
|
15
|
+
|
16
|
+
|
17
|
+
module WSDL
|
18
|
+
module XMLSchema
|
19
|
+
|
20
|
+
|
21
|
+
class Parser
|
22
|
+
include XSD
|
23
|
+
|
24
|
+
class ParseError < Error; end
|
25
|
+
class FormatDecodeError < ParseError; end
|
26
|
+
class UnknownElementError < FormatDecodeError; end
|
27
|
+
class UnknownAttributeError < FormatDecodeError; end
|
28
|
+
class UnexpectedElementError < FormatDecodeError; end
|
29
|
+
class ElementConstraintError < FormatDecodeError; end
|
30
|
+
class AttributeConstraintError < FormatDecodeError; end
|
31
|
+
|
32
|
+
private
|
33
|
+
|
34
|
+
class ParseFrame
|
35
|
+
attr_reader :ns
|
36
|
+
attr_reader :name
|
37
|
+
attr_accessor :node
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
def initialize(ns, name, node)
|
42
|
+
@ns = ns
|
43
|
+
@name = name
|
44
|
+
@node = node
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
public
|
49
|
+
|
50
|
+
def initialize(opt = {})
|
51
|
+
@parser = XSD::XMLParser.create_parser(self, opt)
|
52
|
+
@parsestack = nil
|
53
|
+
@lastnode = nil
|
54
|
+
@ignored = {}
|
55
|
+
@location = opt[:location]
|
56
|
+
@originalroot = opt[:originalroot]
|
57
|
+
end
|
58
|
+
|
59
|
+
def parse(string_or_readable)
|
60
|
+
@parsestack = []
|
61
|
+
@lastnode = nil
|
62
|
+
@textbuf = ''
|
63
|
+
@parser.do_parse(string_or_readable)
|
64
|
+
@lastnode
|
65
|
+
end
|
66
|
+
|
67
|
+
def charset
|
68
|
+
@parser.charset
|
69
|
+
end
|
70
|
+
|
71
|
+
def start_element(name, attrs)
|
72
|
+
lastframe = @parsestack.last
|
73
|
+
ns = parent = nil
|
74
|
+
if lastframe
|
75
|
+
ns = lastframe.ns
|
76
|
+
parent = lastframe.node
|
77
|
+
else
|
78
|
+
ns = XSD::NS.new
|
79
|
+
parent = nil
|
80
|
+
end
|
81
|
+
# ns might be the same
|
82
|
+
ns, attrs = XSD::XMLParser.filter_ns(ns, attrs)
|
83
|
+
node = decode_tag(ns, name, attrs, parent)
|
84
|
+
@parsestack << ParseFrame.new(ns, name, node)
|
85
|
+
end
|
86
|
+
|
87
|
+
def characters(text)
|
88
|
+
lastframe = @parsestack.last
|
89
|
+
if lastframe
|
90
|
+
# Need not to be cloned because character does not have attr.
|
91
|
+
ns = lastframe.ns
|
92
|
+
decode_text(ns, text)
|
93
|
+
else
|
94
|
+
p text if $DEBUG
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
def end_element(name)
|
99
|
+
lastframe = @parsestack.pop
|
100
|
+
unless name == lastframe.name
|
101
|
+
raise UnexpectedElementError.new("closing element name '#{name}' does not match with opening element '#{lastframe.name}'")
|
102
|
+
end
|
103
|
+
decode_tag_end(lastframe.ns, lastframe.node)
|
104
|
+
@lastnode = lastframe.node
|
105
|
+
end
|
106
|
+
|
107
|
+
private
|
108
|
+
|
109
|
+
def decode_tag(ns, name, attrs, parent)
|
110
|
+
o = nil
|
111
|
+
elename = ns.parse(name)
|
112
|
+
if !parent
|
113
|
+
if elename == SchemaName
|
114
|
+
o = Schema.parse_element(elename)
|
115
|
+
o.location = @location
|
116
|
+
else
|
117
|
+
raise UnknownElementError.new("unknown element: #{elename}")
|
118
|
+
end
|
119
|
+
o.root = @originalroot if @originalroot # o.root = o otherwise
|
120
|
+
else
|
121
|
+
if elename == AnnotationName
|
122
|
+
# only the first annotation element is allowed for each element.
|
123
|
+
o = Annotation.new
|
124
|
+
else
|
125
|
+
o = parent.parse_element(elename)
|
126
|
+
end
|
127
|
+
if o.nil?
|
128
|
+
unless @ignored.key?(elename)
|
129
|
+
warn("ignored element: #{elename} of #{parent.class}")
|
130
|
+
@ignored[elename] = elename
|
131
|
+
end
|
132
|
+
o = Documentation.new # which accepts any element.
|
133
|
+
end
|
134
|
+
# node could be a pseudo element. pseudo element has its own parent.
|
135
|
+
o.root = parent.root
|
136
|
+
o.parent = parent if o.parent.nil?
|
137
|
+
end
|
138
|
+
attrs.each do |key, value|
|
139
|
+
attr_ele = ns.parse(key, true)
|
140
|
+
value_ele = ns.parse(value, false)
|
141
|
+
value_ele.source = value # for recovery; value may not be a QName
|
142
|
+
if attr_ele == IdAttrName
|
143
|
+
o.id = value_ele
|
144
|
+
else
|
145
|
+
if o.parse_attr(attr_ele, value_ele).nil?
|
146
|
+
unless @ignored.key?(attr_ele)
|
147
|
+
warn("ignored attr: #{attr_ele}")
|
148
|
+
@ignored[attr_ele] = attr_ele
|
149
|
+
end
|
150
|
+
end
|
151
|
+
end
|
152
|
+
end
|
153
|
+
o
|
154
|
+
end
|
155
|
+
|
156
|
+
def decode_tag_end(ns, node)
|
157
|
+
node.parse_epilogue
|
158
|
+
end
|
159
|
+
|
160
|
+
def decode_text(ns, text)
|
161
|
+
@textbuf << text
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
|
166
|
+
end
|
167
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# WSDL4R - XMLSchema pattern definition for WSDL.
|
2
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
3
|
+
|
4
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
5
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
6
|
+
# either the dual license version in 2003, or any later version.
|
7
|
+
|
8
|
+
|
9
|
+
require 'wsdl/info'
|
10
|
+
|
11
|
+
|
12
|
+
module WSDL
|
13
|
+
module XMLSchema
|
14
|
+
|
15
|
+
|
16
|
+
class Pattern < Info
|
17
|
+
def initialize
|
18
|
+
super
|
19
|
+
end
|
20
|
+
|
21
|
+
def parse_element(element)
|
22
|
+
nil
|
23
|
+
end
|
24
|
+
|
25
|
+
def parse_attr(attr, value)
|
26
|
+
case attr
|
27
|
+
when ValueAttrName
|
28
|
+
parent.pattern = /\A#{value.source}\z/n
|
29
|
+
value.source
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,178 @@
|
|
1
|
+
# WSDL4R - XMLSchema schema definition for WSDL.
|
2
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
3
|
+
|
4
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
5
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
6
|
+
# either the dual license version in 2003, or any later version.
|
7
|
+
|
8
|
+
|
9
|
+
require 'wsdl/info'
|
10
|
+
require 'xsd/namedelements'
|
11
|
+
|
12
|
+
|
13
|
+
module WSDL
|
14
|
+
module XMLSchema
|
15
|
+
|
16
|
+
|
17
|
+
class Schema < Info
|
18
|
+
attr_reader :targetnamespace # required
|
19
|
+
attr_reader :complextypes
|
20
|
+
attr_reader :simpletypes
|
21
|
+
attr_reader :elements
|
22
|
+
attr_reader :attributes
|
23
|
+
attr_reader :modelgroups
|
24
|
+
attr_reader :attributegroups
|
25
|
+
attr_reader :imports
|
26
|
+
attr_accessor :attributeformdefault
|
27
|
+
attr_accessor :elementformdefault
|
28
|
+
attr_accessor :version
|
29
|
+
|
30
|
+
attr_reader :importedschema
|
31
|
+
|
32
|
+
def initialize
|
33
|
+
super
|
34
|
+
@targetnamespace = nil
|
35
|
+
@complextypes = XSD::NamedElements.new
|
36
|
+
@simpletypes = XSD::NamedElements.new
|
37
|
+
@elements = XSD::NamedElements.new
|
38
|
+
@attributes = XSD::NamedElements.new
|
39
|
+
@modelgroups = XSD::NamedElements.new
|
40
|
+
@attributegroups = XSD::NamedElements.new
|
41
|
+
@imports = []
|
42
|
+
@attributeformdefault = "unqualified"
|
43
|
+
@elementformdefault = "unqualified"
|
44
|
+
@importedschema = {}
|
45
|
+
@location = nil
|
46
|
+
@root = self
|
47
|
+
@version = nil
|
48
|
+
end
|
49
|
+
|
50
|
+
def location
|
51
|
+
@location || (root.nil? ? nil : root.location)
|
52
|
+
end
|
53
|
+
|
54
|
+
def location=(location)
|
55
|
+
@location = location
|
56
|
+
end
|
57
|
+
|
58
|
+
def parse_element(element)
|
59
|
+
case element
|
60
|
+
when ImportName
|
61
|
+
o = Import.new
|
62
|
+
@imports << o
|
63
|
+
o
|
64
|
+
when IncludeName
|
65
|
+
o = Include.new
|
66
|
+
@imports << o
|
67
|
+
o
|
68
|
+
when ComplexTypeName
|
69
|
+
o = ComplexType.new
|
70
|
+
@complextypes << o
|
71
|
+
o
|
72
|
+
when SimpleTypeName
|
73
|
+
o = SimpleType.new
|
74
|
+
@simpletypes << o
|
75
|
+
o
|
76
|
+
when ElementName
|
77
|
+
o = Element.new
|
78
|
+
o.form = 'qualified' # root element is qualified
|
79
|
+
@elements << o
|
80
|
+
o
|
81
|
+
when AttributeName
|
82
|
+
o = Attribute.new
|
83
|
+
@attributes << o
|
84
|
+
o
|
85
|
+
when GroupName
|
86
|
+
o = Group.new
|
87
|
+
@modelgroups << o
|
88
|
+
o
|
89
|
+
when AttributeGroupName
|
90
|
+
o = AttributeGroup.new
|
91
|
+
@attributegroups << o
|
92
|
+
o
|
93
|
+
else
|
94
|
+
nil
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
def parse_attr(attr, value)
|
99
|
+
case attr
|
100
|
+
when TargetNamespaceAttrName
|
101
|
+
@targetnamespace = value.source
|
102
|
+
when AttributeFormDefaultAttrName
|
103
|
+
@attributeformdefault = value.source
|
104
|
+
when ElementFormDefaultAttrName
|
105
|
+
@elementformdefault = value.source
|
106
|
+
when VersionAttrName
|
107
|
+
@version = value.source
|
108
|
+
else
|
109
|
+
nil
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
def collect_attributes
|
114
|
+
result = XSD::NamedElements.new
|
115
|
+
result.concat(@attributes)
|
116
|
+
@imports.each do |import|
|
117
|
+
result.concat(import.content.collect_attributes) if import.content
|
118
|
+
end
|
119
|
+
result
|
120
|
+
end
|
121
|
+
|
122
|
+
def collect_modelgroups
|
123
|
+
result = XSD::NamedElements.new
|
124
|
+
result.concat(@modelgroups)
|
125
|
+
@imports.each do |import|
|
126
|
+
result.concat(import.content.collect_modelgroups) if import.content
|
127
|
+
end
|
128
|
+
result
|
129
|
+
end
|
130
|
+
|
131
|
+
def collect_attributegroups
|
132
|
+
result = XSD::NamedElements.new
|
133
|
+
result.concat(@attributegroups)
|
134
|
+
@imports.each do |import|
|
135
|
+
result.concat(import.content.collect_attributegroups) if import.content
|
136
|
+
end
|
137
|
+
result
|
138
|
+
end
|
139
|
+
|
140
|
+
def collect_elements
|
141
|
+
result = XSD::NamedElements.new
|
142
|
+
result.concat(@elements)
|
143
|
+
@imports.each do |import|
|
144
|
+
result.concat(import.content.collect_elements) if import.content
|
145
|
+
end
|
146
|
+
result
|
147
|
+
end
|
148
|
+
|
149
|
+
def collect_complextypes
|
150
|
+
result = XSD::NamedElements.new
|
151
|
+
result.concat(@complextypes)
|
152
|
+
@imports.each do |import|
|
153
|
+
result.concat(import.content.collect_complextypes) if import.content
|
154
|
+
end
|
155
|
+
result
|
156
|
+
end
|
157
|
+
|
158
|
+
def collect_simpletypes
|
159
|
+
result = XSD::NamedElements.new
|
160
|
+
result.concat(@simpletypes)
|
161
|
+
@imports.each do |import|
|
162
|
+
result.concat(import.content.collect_simpletypes) if import.content
|
163
|
+
end
|
164
|
+
result
|
165
|
+
end
|
166
|
+
|
167
|
+
def self.parse_element(element)
|
168
|
+
if element == SchemaName
|
169
|
+
Schema.new
|
170
|
+
else
|
171
|
+
nil
|
172
|
+
end
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
176
|
+
|
177
|
+
end
|
178
|
+
end
|