soap2r 1.5.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,87 @@
1
+ # WSDL4R - XMLSchema simpleType 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 SimpleType < Info
18
+ attr_accessor :name
19
+ attr_reader :restriction
20
+ attr_reader :list
21
+ attr_reader :union
22
+
23
+ def check_lexical_format(value)
24
+ if @restriction
25
+ check_restriction(value)
26
+ elsif @list
27
+ # TODO: check
28
+ elsif @union
29
+ # TODO: check
30
+ else
31
+ raise ArgumentError.new("incomplete simpleType")
32
+ end
33
+ end
34
+
35
+ def base
36
+ if @restriction
37
+ @restriction.base
38
+ else
39
+ nil
40
+ end
41
+ end
42
+
43
+ def initialize(name = nil)
44
+ super()
45
+ @name = name
46
+ @restriction = nil
47
+ @list = nil
48
+ @union = nil
49
+ end
50
+
51
+ def targetnamespace
52
+ parent.targetnamespace
53
+ end
54
+
55
+ def parse_element(element)
56
+ case element
57
+ when RestrictionName
58
+ @restriction = SimpleRestriction.new
59
+ @restriction
60
+ when ListName
61
+ @list = List.new
62
+ @list
63
+ when UnionName
64
+ @union = Union.new
65
+ @union
66
+ end
67
+ end
68
+
69
+ def parse_attr(attr, value)
70
+ case attr
71
+ when NameAttrName
72
+ @name = XSD::QName.new(targetnamespace, value.source)
73
+ end
74
+ end
75
+
76
+ private
77
+
78
+ def check_restriction(value)
79
+ unless @restriction.valid?(value)
80
+ raise XSD::ValueSpaceError.new("#{@name}: cannot accept '#{value}'")
81
+ end
82
+ end
83
+ end
84
+
85
+
86
+ end
87
+ end
@@ -0,0 +1,37 @@
1
+ # WSDL4R - XMLSchema totalDigits 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 TotalDigits < 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[:totaldigits] = to_boolean(value)
29
+ when ValueAttrName
30
+ parent.totaldigits = to_int(value)
31
+ end
32
+ end
33
+ end
34
+
35
+
36
+ end
37
+ end
@@ -0,0 +1,35 @@
1
+ # WSDL4R - XMLSchema union 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 Union < Info
18
+ attr_reader :member_types
19
+
20
+ def initialize
21
+ super
22
+ @member_types = nil
23
+ end
24
+
25
+ def parse_attr(attr, value)
26
+ case attr
27
+ when MemberTypesAttrName
28
+ @member_types = value.source
29
+ end
30
+ end
31
+ end
32
+
33
+
34
+ end
35
+ end
@@ -0,0 +1,34 @@
1
+ # WSDL4R - XMLSchema unique element.
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 Unique < Info
17
+ def initialize
18
+ super
19
+ end
20
+
21
+ def parse_element(element)
22
+ # Accepts any element.
23
+ self
24
+ end
25
+
26
+ def parse_attr(attr, value)
27
+ # Accepts any attribute.
28
+ true
29
+ end
30
+ end
31
+
32
+
33
+ end
34
+ end
@@ -0,0 +1,37 @@
1
+ # WSDL4R - XMLSchema whiteSpace 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 WhiteSpace < 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[:whitespace] = to_boolean(value)
29
+ when ValueAttrName
30
+ parent.whitespace = value.source
31
+ end
32
+ end
33
+ end
34
+
35
+
36
+ end
37
+ end
@@ -0,0 +1,174 @@
1
+ # XSD4R - XSD to ruby mapping 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/codegen/gensupport'
10
+ require 'wsdl/xmlSchema/importer'
11
+ require 'wsdl/soap/classDefCreator'
12
+ require 'wsdl/soap/classDefCreatorSupport'
13
+ require 'wsdl/soap/literalMappingRegistryCreator'
14
+ require 'wsdl/soap/classNameCreator'
15
+ require 'logger'
16
+
17
+
18
+ module WSDL
19
+ module XMLSchema
20
+
21
+
22
+ class XSD2Ruby
23
+ include WSDL::SOAP::ClassDefCreatorSupport
24
+
25
+ attr_accessor :location
26
+ attr_reader :opt
27
+ attr_accessor :logger
28
+ attr_accessor :basedir
29
+
30
+ def run
31
+ unless @location
32
+ raise RuntimeError, "XML Schema location not given"
33
+ end
34
+ @xsd = import(@location)
35
+ @name = @opt['classdef'] || create_classname(@xsd)
36
+ create_file
37
+ end
38
+
39
+ private
40
+
41
+ def initialize
42
+ @location = nil
43
+ @opt = {}
44
+ @logger = Logger.new(STDERR)
45
+ @basedir = nil
46
+ @xsd = nil
47
+ @name = nil
48
+ @name_creator = WSDL::SOAP::ClassNameCreator.new
49
+ end
50
+
51
+ def create_file
52
+ @modulepath = @opt['module_path']
53
+ create_classdef if @opt.key?('classdef')
54
+ create_mapping_registry if @opt.key?('mapping_registry')
55
+ create_mapper if @opt.key?('mapper')
56
+ end
57
+
58
+ def create_classdef
59
+ @logger.info { "Creating class definition." }
60
+ @classdef_filename = @name + '.rb'
61
+ check_file(@classdef_filename) or return
62
+ write_file(@classdef_filename) do |f|
63
+ f << WSDL::SOAP::ClassDefCreator.new(@xsd, @name_creator, @modulepath).dump
64
+ end
65
+ end
66
+
67
+ def create_mapping_registry
68
+ @logger.info { "Creating mapping registry definition." }
69
+ @mr_filename = @name + '_mapping_registry.rb'
70
+ check_file(@mr_filename) or return
71
+ write_file(@mr_filename) do |f|
72
+ f << dump_mapping_registry
73
+ end
74
+ end
75
+
76
+ def create_mapper
77
+ @logger.info { "Creating mapper definition." }
78
+ @mapper_filename = @name + '_mapper.rb'
79
+ check_file(@mapper_filename) or return
80
+ write_file(@mapper_filename) do |f|
81
+ f << dump_mapper
82
+ end
83
+ end
84
+
85
+ def dump_mapping_registry
86
+ defined_const = {}
87
+ creator = WSDL::SOAP::LiteralMappingRegistryCreator.new(@xsd, @name_creator, @modulepath, defined_const)
88
+ module_name = XSD::CodeGen::GenSupport.safeconstname(@name + 'MappingRegistry')
89
+ if @modulepath
90
+ module_name = [@modulepath, module_name].join('::')
91
+ end
92
+ m = XSD::CodeGen::ModuleDef.new(module_name)
93
+ m.def_require("xsd/mapping")
94
+ m.def_require("#{@classdef_filename}")
95
+ varname = 'Registry'
96
+ m.def_const(varname, '::SOAP::Mapping::LiteralRegistry.new')
97
+ m.def_code(creator.dump(varname))
98
+ #
99
+ defined_const.each do |ns, tag|
100
+ m.def_const(tag, dq(ns))
101
+ end
102
+ m.dump
103
+ end
104
+
105
+ def dump_mapper
106
+ class_name = XSD::CodeGen::GenSupport.safeconstname(@name + 'Mapper')
107
+ if @modulepath
108
+ class_name = [@modulepath, class_name].join('::')
109
+ end
110
+ mr_name = XSD::CodeGen::GenSupport.safeconstname(@name + 'MappingRegistry')
111
+ c = XSD::CodeGen::ClassDef.new(class_name, 'XSD::Mapping::Mapper')
112
+ c.def_require("#{@mr_filename}")
113
+ c.def_method("initialize") do
114
+ "super(#{mr_name}::Registry)"
115
+ end
116
+ c.dump
117
+ end
118
+
119
+ def write_file(filename)
120
+ if @basedir
121
+ filename = File.join(basedir, filename)
122
+ end
123
+ File.open(filename, "w") do |f|
124
+ yield f
125
+ end
126
+ end
127
+
128
+ def check_file(filename)
129
+ if @basedir
130
+ filename = File.join(basedir, filename)
131
+ end
132
+ if FileTest.exist?(filename)
133
+ if @opt.key?('force')
134
+ @logger.warn {
135
+ "File '#{filename}' exists but overrides it."
136
+ }
137
+ true
138
+ else
139
+ @logger.warn {
140
+ "File '#{filename}' exists. #{$0} did not override it."
141
+ }
142
+ false
143
+ end
144
+ else
145
+ @logger.info { "Creates file '#{filename}'." }
146
+ true
147
+ end
148
+ end
149
+
150
+ def create_classname(xsd)
151
+ name = nil
152
+ if xsd.targetnamespace
153
+ name = xsd.targetnamespace.scan(/[a-zA-Z0-9]+$/)[0]
154
+ end
155
+ if name.nil?
156
+ 'default'
157
+ else
158
+ XSD::CodeGen::GenSupport.safevarname(name)
159
+ end
160
+ end
161
+
162
+ def import(location)
163
+ WSDL::XMLSchema::Importer.import(location)
164
+ end
165
+ end
166
+
167
+
168
+ end
169
+ end
170
+
171
+
172
+ if __FILE__ == $0
173
+ warn("WARNING: #{File.expand_path(__FILE__)} is a library file used by bin/xsd2ruby.rb. Find bin/xsd2ruby.rb from tarball version of soap4r or install soap4r via gem.")
174
+ end
@@ -0,0 +1,193 @@
1
+ # XSD4R - Charset handling 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
+ module XSD
10
+
11
+
12
+ module Charset
13
+ if defined?(RUBY_VERSION) && RUBY_VERSION.to_f >= 1.9
14
+ @internal_encoding = 'UTF8'
15
+ else
16
+ @internal_encoding = $KCODE
17
+ end
18
+
19
+ class XSDError < StandardError; end
20
+ class CharsetError < XSDError; end
21
+ class UnknownCharsetError < CharsetError; end
22
+ class CharsetConversionError < CharsetError; end
23
+
24
+ public
25
+
26
+ ###
27
+ ## Maps
28
+ #
29
+ EncodingConvertMap = {}
30
+ def Charset.init
31
+ EncodingConvertMap[['UTF8', 'X_ISO_8859_1']] =
32
+ Proc.new { |str| str.unpack('U*').pack('C*') }
33
+ EncodingConvertMap[['X_ISO_8859_1', 'UTF8']] =
34
+ Proc.new { |str| str.unpack('C*').pack('U*') }
35
+ begin
36
+ require 'xsd/iconvcharset'
37
+ @internal_encoding = 'UTF8'
38
+ sjtag = (/(mswin|bccwin|mingw|cygwin|emx)/ =~ RUBY_PLATFORM) ? 'cp932' :
39
+ 'shift_jis'
40
+ EncodingConvertMap[['UTF8', 'EUC' ]] =
41
+ Proc.new { |str| IconvCharset.safe_iconv("euc-jp", "utf-8", str) }
42
+ EncodingConvertMap[['EUC' , 'UTF8']] =
43
+ Proc.new { |str| IconvCharset.safe_iconv("utf-8", "euc-jp", str) }
44
+ EncodingConvertMap[['EUC' , 'SJIS']] =
45
+ Proc.new { |str| IconvCharset.safe_iconv(sjtag, "euc-jp", str) }
46
+ EncodingConvertMap[['UTF8', 'SJIS']] =
47
+ Proc.new { |str| IconvCharset.safe_iconv(sjtag, "utf-8", str) }
48
+ EncodingConvertMap[['SJIS', 'UTF8']] =
49
+ Proc.new { |str| IconvCharset.safe_iconv("utf-8", sjtag, str) }
50
+ EncodingConvertMap[['SJIS', 'EUC' ]] =
51
+ Proc.new { |str| IconvCharset.safe_iconv("euc-jp", sjtag, str) }
52
+ rescue LoadError
53
+ begin
54
+ require 'nkf'
55
+ EncodingConvertMap[['EUC' , 'SJIS']] =
56
+ Proc.new { |str| NKF.nkf('-sXm0', str) }
57
+ EncodingConvertMap[['SJIS', 'EUC' ]] =
58
+ Proc.new { |str| NKF.nkf('-eXm0', str) }
59
+ rescue LoadError
60
+ end
61
+
62
+ begin
63
+ require 'uconv'
64
+ @internal_encoding = 'UTF8'
65
+ EncodingConvertMap[['UTF8', 'EUC' ]] = Uconv.method(:u8toeuc)
66
+ EncodingConvertMap[['UTF8', 'SJIS']] = Uconv.method(:u8tosjis)
67
+ EncodingConvertMap[['EUC' , 'UTF8']] = Uconv.method(:euctou8)
68
+ EncodingConvertMap[['SJIS', 'UTF8']] = Uconv.method(:sjistou8)
69
+ rescue LoadError
70
+ end
71
+ end
72
+ end
73
+ self.init
74
+
75
+ CharsetMap = {
76
+ 'NONE' => 'us-ascii',
77
+ 'EUC' => 'euc-jp',
78
+ 'SJIS' => 'shift_jis',
79
+ 'UTF8' => 'utf-8',
80
+ 'X_ISO_8859_1' => 'iso-8859-1',
81
+ 'X_UNKNOWN' => nil,
82
+ }
83
+
84
+ CharsetStrCache = {}
85
+
86
+
87
+ ###
88
+ ## handlers
89
+ #
90
+ def Charset.encoding
91
+ @internal_encoding
92
+ end
93
+
94
+ def Charset.encoding=(encoding)
95
+ warn("xsd charset is set to #{encoding}") if $DEBUG
96
+ @internal_encoding = encoding
97
+ end
98
+
99
+ def Charset.xml_encoding_label
100
+ charset_label(@internal_encoding)
101
+ end
102
+
103
+ def Charset.encoding_to_xml(str, charset)
104
+ encoding_conv(str, @internal_encoding, charset_str(charset))
105
+ end
106
+
107
+ def Charset.encoding_from_xml(str, charset)
108
+ encoding_conv(str, charset_str(charset), @internal_encoding)
109
+ end
110
+
111
+ def Charset.encoding_conv(str, enc_from, enc_to)
112
+ if enc_from == enc_to or enc_from == 'NONE' or enc_to == 'NONE'
113
+ str
114
+ elsif converter = EncodingConvertMap[[enc_from, enc_to]]
115
+ converter.call(str)
116
+ else
117
+ raise CharsetConversionError.new(
118
+ "Converter not found: #{enc_from} -> #{enc_to}")
119
+ end
120
+ end
121
+
122
+ def Charset.charset_label(encoding)
123
+ CharsetMap[encoding.upcase]
124
+ end
125
+
126
+ def Charset.charset_str(label)
127
+ if CharsetMap.respond_to?(:key)
128
+ CharsetStrCache[label] ||= CharsetMap.key(label.downcase) || 'X_UNKNOWN'
129
+ else
130
+ CharsetStrCache[label] ||= CharsetMap.index(label.downcase) || 'X_UNKNOWN'
131
+ end
132
+ end
133
+
134
+ # us_ascii = '[\x00-\x7F]'
135
+ us_ascii = '[\x9\xa\xd\x20-\x7F]' # XML 1.0 restricted.
136
+ USASCIIRegexp = Regexp.new("\\A#{us_ascii}*\\z", nil, 'NONE')
137
+
138
+ twobytes_euc = '(?:[\x8E\xA1-\xFE][\xA1-\xFE])'
139
+ threebytes_euc = '(?:\x8F[\xA1-\xFE][\xA1-\xFE])'
140
+ character_euc = "(?:#{us_ascii}|#{twobytes_euc}|#{threebytes_euc})"
141
+ EUCRegexp = Regexp.new("\\A#{character_euc}*\\z", nil, 'NONE')
142
+
143
+ # onebyte_sjis = '[\x00-\x7F\xA1-\xDF]'
144
+ onebyte_sjis = '[\x9\xa\xd\x20-\x7F\xA1-\xDF]' # XML 1.0 restricted.
145
+ twobytes_sjis = '(?:[\x81-\x9F\xE0-\xFC][\x40-\x7E\x80-\xFC])'
146
+ character_sjis = "(?:#{onebyte_sjis}|#{twobytes_sjis})"
147
+ SJISRegexp = Regexp.new("\\A#{character_sjis}*\\z", nil, 'NONE')
148
+
149
+ # 0xxxxxxx
150
+ # 110yyyyy 10xxxxxx
151
+ twobytes_utf8 = '(?:[\xC0-\xDF][\x80-\xBF])'
152
+ # 1110zzzz 10yyyyyy 10xxxxxx
153
+ threebytes_utf8 = '(?:[\xE0-\xEF][\x80-\xBF][\x80-\xBF])'
154
+ # 11110uuu 10uuuzzz 10yyyyyy 10xxxxxx
155
+ fourbytes_utf8 = '(?:[\xF0-\xF7][\x80-\xBF][\x80-\xBF][\x80-\xBF])'
156
+ character_utf8 =
157
+ "(?:#{us_ascii}|#{twobytes_utf8}|#{threebytes_utf8}|#{fourbytes_utf8})"
158
+ UTF8Regexp = Regexp.new("\\A#{character_utf8}*\\z", nil, 'NONE')
159
+
160
+ def Charset.is_us_ascii(str)
161
+ USASCIIRegexp =~ str
162
+ end
163
+
164
+ def Charset.is_utf8(str)
165
+ UTF8Regexp =~ str
166
+ end
167
+
168
+ def Charset.is_euc(str)
169
+ EUCRegexp =~ str
170
+ end
171
+
172
+ def Charset.is_sjis(str)
173
+ SJISRegexp =~ str
174
+ end
175
+
176
+ def Charset.is_ces(str, code = @internal_encoding)
177
+ case code
178
+ when 'NONE'
179
+ is_us_ascii(str)
180
+ when 'UTF8'
181
+ is_utf8(str)
182
+ when 'EUC'
183
+ is_euc(str)
184
+ when 'SJIS'
185
+ is_sjis(str)
186
+ else
187
+ raise UnknownCharsetError.new("Unknown charset: #{code}")
188
+ end
189
+ end
190
+ end
191
+
192
+
193
+ end