soap2r 1.5.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/bin/wsdl2ruby.rb +137 -0
  2. data/bin/xsd2ruby.rb +90 -0
  3. data/lib/soap/attachment.rb +108 -0
  4. data/lib/soap/attrproxy.rb +34 -0
  5. data/lib/soap/baseData.rb +1094 -0
  6. data/lib/soap/element.rb +277 -0
  7. data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
  8. data/lib/soap/encodingstyle/handler.rb +120 -0
  9. data/lib/soap/encodingstyle/literalHandler.rb +195 -0
  10. data/lib/soap/encodingstyle/soapHandler.rb +559 -0
  11. data/lib/soap/filter.rb +13 -0
  12. data/lib/soap/filter/filterchain.rb +51 -0
  13. data/lib/soap/filter/handler.rb +31 -0
  14. data/lib/soap/filter/streamhandler.rb +29 -0
  15. data/lib/soap/generator.rb +299 -0
  16. data/lib/soap/header/handler.rb +61 -0
  17. data/lib/soap/header/handlerset.rb +70 -0
  18. data/lib/soap/header/mappinghandler.rb +47 -0
  19. data/lib/soap/header/simplehandler.rb +44 -0
  20. data/lib/soap/httpconfigloader.rb +141 -0
  21. data/lib/soap/mapping.rb +12 -0
  22. data/lib/soap/mapping/encodedregistry.rb +537 -0
  23. data/lib/soap/mapping/factory.rb +388 -0
  24. data/lib/soap/mapping/literalregistry.rb +391 -0
  25. data/lib/soap/mapping/mapping.rb +576 -0
  26. data/lib/soap/mapping/registry.rb +295 -0
  27. data/lib/soap/mapping/rubytypeFactory.rb +446 -0
  28. data/lib/soap/mapping/schemadefinition.rb +170 -0
  29. data/lib/soap/mapping/typeMap.rb +106 -0
  30. data/lib/soap/mapping/wsdlencodedregistry.rb +211 -0
  31. data/lib/soap/mapping/wsdlliteralregistry.rb +248 -0
  32. data/lib/soap/marshal.rb +59 -0
  33. data/lib/soap/mimemessage.rb +241 -0
  34. data/lib/soap/nestedexception.rb +42 -0
  35. data/lib/soap/netHttpClient.rb +241 -0
  36. data/lib/soap/ns.rb +34 -0
  37. data/lib/soap/parser.rb +252 -0
  38. data/lib/soap/processor.rb +66 -0
  39. data/lib/soap/property.rb +319 -0
  40. data/lib/soap/proxy.rb +14 -0
  41. data/lib/soap/rpc/cgistub.rb +247 -0
  42. data/lib/soap/rpc/driver.rb +221 -0
  43. data/lib/soap/rpc/element.rb +374 -0
  44. data/lib/soap/rpc/httpserver.rb +142 -0
  45. data/lib/soap/rpc/methodDef.rb +68 -0
  46. data/lib/soap/rpc/proxy.rb +572 -0
  47. data/lib/soap/rpc/router.rb +662 -0
  48. data/lib/soap/rpc/rpc.rb +25 -0
  49. data/lib/soap/rpc/soaplet.rb +200 -0
  50. data/lib/soap/rpc/standaloneServer.rb +43 -0
  51. data/lib/soap/soap.rb +151 -0
  52. data/lib/soap/streamHandler.rb +301 -0
  53. data/lib/soap/wsdlDriver.rb +164 -0
  54. data/lib/wsdl/binding.rb +65 -0
  55. data/lib/wsdl/data.rb +64 -0
  56. data/lib/wsdl/definitions.rb +236 -0
  57. data/lib/wsdl/documentation.rb +32 -0
  58. data/lib/wsdl/import.rb +80 -0
  59. data/lib/wsdl/importer.rb +38 -0
  60. data/lib/wsdl/info.rb +50 -0
  61. data/lib/wsdl/message.rb +54 -0
  62. data/lib/wsdl/operation.rb +151 -0
  63. data/lib/wsdl/operationBinding.rb +240 -0
  64. data/lib/wsdl/param.rb +93 -0
  65. data/lib/wsdl/parser.rb +164 -0
  66. data/lib/wsdl/part.rb +52 -0
  67. data/lib/wsdl/port.rb +66 -0
  68. data/lib/wsdl/portType.rb +75 -0
  69. data/lib/wsdl/service.rb +61 -0
  70. data/lib/wsdl/soap/address.rb +40 -0
  71. data/lib/wsdl/soap/binding.rb +49 -0
  72. data/lib/wsdl/soap/body.rb +58 -0
  73. data/lib/wsdl/soap/cgiStubCreator.rb +92 -0
  74. data/lib/wsdl/soap/classDefCreator.rb +433 -0
  75. data/lib/wsdl/soap/classDefCreatorSupport.rb +240 -0
  76. data/lib/wsdl/soap/classNameCreator.rb +54 -0
  77. data/lib/wsdl/soap/clientSkeltonCreator.rb +104 -0
  78. data/lib/wsdl/soap/complexType.rb +173 -0
  79. data/lib/wsdl/soap/data.rb +42 -0
  80. data/lib/wsdl/soap/definitions.rb +200 -0
  81. data/lib/wsdl/soap/driverCreator.rb +118 -0
  82. data/lib/wsdl/soap/element.rb +33 -0
  83. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +73 -0
  84. data/lib/wsdl/soap/fault.rb +56 -0
  85. data/lib/wsdl/soap/header.rb +86 -0
  86. data/lib/wsdl/soap/headerfault.rb +56 -0
  87. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +115 -0
  88. data/lib/wsdl/soap/mappingRegistryCreator.rb +58 -0
  89. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +376 -0
  90. data/lib/wsdl/soap/methodDefCreator.rb +199 -0
  91. data/lib/wsdl/soap/operation.rb +112 -0
  92. data/lib/wsdl/soap/servantSkeltonCreator.rb +89 -0
  93. data/lib/wsdl/soap/servletStubCreator.rb +104 -0
  94. data/lib/wsdl/soap/standaloneServerStubCreator.rb +100 -0
  95. data/lib/wsdl/soap/wsdl2ruby.rb +217 -0
  96. data/lib/wsdl/types.rb +44 -0
  97. data/lib/wsdl/wsdl.rb +24 -0
  98. data/lib/wsdl/xmlSchema/all.rb +24 -0
  99. data/lib/wsdl/xmlSchema/annotation.rb +34 -0
  100. data/lib/wsdl/xmlSchema/any.rb +61 -0
  101. data/lib/wsdl/xmlSchema/anyAttribute.rb +48 -0
  102. data/lib/wsdl/xmlSchema/attribute.rb +104 -0
  103. data/lib/wsdl/xmlSchema/attributeGroup.rb +68 -0
  104. data/lib/wsdl/xmlSchema/choice.rb +58 -0
  105. data/lib/wsdl/xmlSchema/complexContent.rb +97 -0
  106. data/lib/wsdl/xmlSchema/complexExtension.rb +119 -0
  107. data/lib/wsdl/xmlSchema/complexRestriction.rb +104 -0
  108. data/lib/wsdl/xmlSchema/complexType.rb +193 -0
  109. data/lib/wsdl/xmlSchema/content.rb +95 -0
  110. data/lib/wsdl/xmlSchema/data.rb +116 -0
  111. data/lib/wsdl/xmlSchema/element.rb +153 -0
  112. data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
  113. data/lib/wsdl/xmlSchema/fractiondigits.rb +37 -0
  114. data/lib/wsdl/xmlSchema/group.rb +100 -0
  115. data/lib/wsdl/xmlSchema/import.rb +53 -0
  116. data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
  117. data/lib/wsdl/xmlSchema/importer.rb +102 -0
  118. data/lib/wsdl/xmlSchema/include.rb +48 -0
  119. data/lib/wsdl/xmlSchema/length.rb +37 -0
  120. data/lib/wsdl/xmlSchema/list.rb +48 -0
  121. data/lib/wsdl/xmlSchema/maxexclusive.rb +37 -0
  122. data/lib/wsdl/xmlSchema/maxinclusive.rb +37 -0
  123. data/lib/wsdl/xmlSchema/maxlength.rb +37 -0
  124. data/lib/wsdl/xmlSchema/minexclusive.rb +37 -0
  125. data/lib/wsdl/xmlSchema/mininclusive.rb +37 -0
  126. data/lib/wsdl/xmlSchema/minlength.rb +37 -0
  127. data/lib/wsdl/xmlSchema/parser.rb +167 -0
  128. data/lib/wsdl/xmlSchema/pattern.rb +36 -0
  129. data/lib/wsdl/xmlSchema/ref.rb +33 -0
  130. data/lib/wsdl/xmlSchema/schema.rb +178 -0
  131. data/lib/wsdl/xmlSchema/sequence.rb +54 -0
  132. data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
  133. data/lib/wsdl/xmlSchema/simpleExtension.rb +62 -0
  134. data/lib/wsdl/xmlSchema/simpleRestriction.rb +132 -0
  135. data/lib/wsdl/xmlSchema/simpleType.rb +87 -0
  136. data/lib/wsdl/xmlSchema/totaldigits.rb +37 -0
  137. data/lib/wsdl/xmlSchema/union.rb +35 -0
  138. data/lib/wsdl/xmlSchema/unique.rb +34 -0
  139. data/lib/wsdl/xmlSchema/whitespace.rb +37 -0
  140. data/lib/wsdl/xmlSchema/xsd2ruby.rb +174 -0
  141. data/lib/xsd/charset.rb +193 -0
  142. data/lib/xsd/codegen.rb +12 -0
  143. data/lib/xsd/codegen/classdef.rb +208 -0
  144. data/lib/xsd/codegen/commentdef.rb +34 -0
  145. data/lib/xsd/codegen/gensupport.rb +273 -0
  146. data/lib/xsd/codegen/methoddef.rb +70 -0
  147. data/lib/xsd/codegen/moduledef.rb +208 -0
  148. data/lib/xsd/datatypes.rb +1466 -0
  149. data/lib/xsd/datatypes1999.rb +20 -0
  150. data/lib/xsd/iconvcharset.rb +39 -0
  151. data/lib/xsd/mapping.rb +68 -0
  152. data/lib/xsd/namedelements.rb +132 -0
  153. data/lib/xsd/ns.rb +182 -0
  154. data/lib/xsd/qname.rb +79 -0
  155. data/lib/xsd/xmlparser.rb +76 -0
  156. data/lib/xsd/xmlparser/libxmlparser.rb +115 -0
  157. data/lib/xsd/xmlparser/parser.rb +100 -0
  158. data/lib/xsd/xmlparser/rexmlparser.rb +58 -0
  159. data/lib/xsd/xmlparser/xmlparser.rb +50 -0
  160. data/lib/xsd/xmlparser/xmlscanner.rb +149 -0
  161. metadata +224 -0
@@ -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,33 @@
1
+ # WSDL4R - XMLSchema ref support.
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
+ module WSDL
10
+ module XMLSchema
11
+
12
+
13
+ module Ref
14
+ def self.included(klass)
15
+ klass.extend(RefClassSupport)
16
+ end
17
+
18
+ module RefClassSupport
19
+ def attr_reader_ref(symbol)
20
+ name = symbol.to_s
21
+ define_method(name) {
22
+ instance_variable_get("@#{name}") ||
23
+ (refelement ? refelement.__send__(name) : nil)
24
+ }
25
+ end
26
+ end
27
+
28
+ attr_accessor :ref
29
+ end
30
+
31
+
32
+ end
33
+ 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
@@ -0,0 +1,54 @@
1
+ # WSDL4R - XMLSchema complexType 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/xmlSchema/content'
10
+
11
+
12
+ module WSDL
13
+ module XMLSchema
14
+
15
+
16
+ class Sequence < Content
17
+ attr_reader :any
18
+
19
+ def initialize
20
+ super()
21
+ @any = nil
22
+ end
23
+
24
+ def have_any?
25
+ !!@any
26
+ end
27
+
28
+ def parse_element(element)
29
+ case element
30
+ when SequenceName
31
+ o = Sequence.new
32
+ @elements << o
33
+ o
34
+ when ChoiceName
35
+ o = Choice.new
36
+ @elements << o
37
+ o
38
+ when GroupName
39
+ o = Group.new
40
+ @elements << o
41
+ o
42
+ when AnyName
43
+ @any = Any.new
44
+ @elements << @any
45
+ @any
46
+ else
47
+ super(element)
48
+ end
49
+ end
50
+ end
51
+
52
+
53
+ end
54
+ end
@@ -0,0 +1,69 @@
1
+ # WSDL4R - XMLSchema simpleContent 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 SimpleContent < Info
18
+ attr_reader :restriction
19
+ attr_reader :extension
20
+
21
+ def check_lexical_format(value)
22
+ check(value)
23
+ end
24
+
25
+ def initialize
26
+ super
27
+ @restriction = nil
28
+ @extension = nil
29
+ end
30
+
31
+ def base
32
+ content.base
33
+ end
34
+
35
+ def attributes
36
+ content.attributes
37
+ end
38
+
39
+ def targetnamespace
40
+ parent.targetnamespace
41
+ end
42
+
43
+ def parse_element(element)
44
+ case element
45
+ when RestrictionName
46
+ @restriction = SimpleRestriction.new
47
+ @restriction
48
+ when ExtensionName
49
+ @extension = SimpleExtension.new
50
+ @extension
51
+ end
52
+ end
53
+
54
+ private
55
+
56
+ def content
57
+ @restriction || @extension
58
+ end
59
+
60
+ def check(value)
61
+ unless content.valid?(value)
62
+ raise XSD::ValueSpaceError.new("#{@name}: cannot accept '#{value}'")
63
+ end
64
+ end
65
+ end
66
+
67
+
68
+ end
69
+ end
@@ -0,0 +1,62 @@
1
+ # WSDL4R - XMLSchema simpleType extension 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 SimpleExtension < Info
18
+ attr_reader :base
19
+ attr_reader :attributes
20
+
21
+ def initialize
22
+ super
23
+ @base = nil
24
+ @attributes = XSD::NamedElements.new
25
+ end
26
+
27
+ def targetnamespace
28
+ parent.targetnamespace
29
+ end
30
+
31
+ def valid?(value)
32
+ true
33
+ end
34
+
35
+ def parse_element(element)
36
+ case element
37
+ when AttributeName
38
+ o = Attribute.new
39
+ @attributes << o
40
+ o
41
+ when AttributeGroupName
42
+ o = AttributeGroup.new
43
+ @attributes << o
44
+ o
45
+ when AnyAttributeName
46
+ o = AnyAttribute.new
47
+ @attributes << o
48
+ o
49
+ end
50
+ end
51
+
52
+ def parse_attr(attr, value)
53
+ case attr
54
+ when BaseAttrName
55
+ @base = value
56
+ end
57
+ end
58
+ end
59
+
60
+
61
+ end
62
+ end
@@ -0,0 +1,132 @@
1
+ # WSDL4R - XMLSchema simpleContent restriction 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 SimpleRestriction < Info
18
+ attr_reader :base
19
+ attr_accessor :length
20
+ attr_accessor :minlength
21
+ attr_accessor :maxlength
22
+ attr_accessor :pattern
23
+ attr_reader :enumeration
24
+ attr_accessor :whitespace
25
+ attr_accessor :maxinclusive
26
+ attr_accessor :maxexclusive
27
+ attr_accessor :minexclusive
28
+ attr_accessor :mininclusive
29
+ attr_accessor :totaldigits
30
+ attr_accessor :fractiondigits
31
+ attr_reader :fixed
32
+ attr_reader :attributes
33
+
34
+ def initialize
35
+ super
36
+ @base = nil
37
+ @enumeration = [] # NamedElements?
38
+ @length = nil
39
+ @maxlength = nil
40
+ @minlength = nil
41
+ @pattern = nil
42
+ @fixed = {}
43
+ @attributes = XSD::NamedElements.new
44
+ end
45
+
46
+ def valid?(value)
47
+ return false unless check_restriction(value)
48
+ return false unless check_length(value)
49
+ return false unless check_maxlength(value)
50
+ return false unless check_minlength(value)
51
+ return false unless check_pattern(value)
52
+ true
53
+ end
54
+
55
+ def enumeration?
56
+ !@enumeration.empty?
57
+ end
58
+
59
+ def parse_element(element)
60
+ case element
61
+ when LengthName
62
+ Length.new
63
+ when MinLengthName
64
+ MinLength.new
65
+ when MaxLengthName
66
+ MaxLength.new
67
+ when PatternName
68
+ Pattern.new
69
+ when EnumerationName
70
+ Enumeration.new
71
+ when WhiteSpaceName
72
+ WhiteSpace.new
73
+ when MaxInclusiveName
74
+ MaxInclusive.new
75
+ when MaxExclusiveName
76
+ MaxExclusive.new
77
+ when MinExclusiveName
78
+ MinExclusive.new
79
+ when MinInclusiveName
80
+ MinInclusive.new
81
+ when TotalDigitsName
82
+ TotalDigits.new
83
+ when FractionDigitsName
84
+ FractionDigits.new
85
+ when AttributeName
86
+ o = Attribute.new
87
+ @attributes << o
88
+ o
89
+ when AttributeGroupName
90
+ o = AttributeGroup.new
91
+ @attributes << o
92
+ o
93
+ when AnyAttributeName
94
+ o = AnyAttribute.new
95
+ @attributes << o
96
+ o
97
+ end
98
+ end
99
+
100
+ def parse_attr(attr, value)
101
+ case attr
102
+ when BaseAttrName
103
+ @base = value
104
+ end
105
+ end
106
+
107
+ private
108
+
109
+ def check_restriction(value)
110
+ @enumeration.empty? or @enumeration.include?(value)
111
+ end
112
+
113
+ def check_length(value)
114
+ @length.nil? or value.size == @length
115
+ end
116
+
117
+ def check_maxlength(value)
118
+ @maxlength.nil? or value.size <= @maxlength
119
+ end
120
+
121
+ def check_minlength(value)
122
+ @minlength.nil? or value.size >= @minlength
123
+ end
124
+
125
+ def check_pattern(value)
126
+ @pattern.nil? or @pattern =~ value
127
+ end
128
+ end
129
+
130
+
131
+ end
132
+ end