File: dombuilder.rb

package info (click to toggle)
ruby-xmlparser 0.7.3-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 980 kB
  • sloc: ruby: 9,342; ansic: 2,017; makefile: 11
file content (277 lines) | stat: -rw-r--r-- 6,983 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
## -*- Ruby -*-
## XML::DOM::DOMBuilder
## 1999-2001 by yoshidam
##
##
##   builder = XML::DOM::DOMImplementation.instance.createDOMBuilder
##   doc = builder.parseURI("http://hoge/hoge.xml")
##   inputSource = XML::DOM::InputSource.new("http://hoge/hoge.xml")
##   doc = builder.parseDOMInputSource(inputSource)
##
##

require 'xml/parserns'
require 'xml/dom2/document'
require 'xml/dom2/domentityresolverimpl'

=begin
= XML::DOM::DOMBuilder

=end
module XML
  module DOM

=begin
== Class XML::DOM::DOMBuilder

=== superclass
XML::Parser

=end
    class DOMBuilder<XML::ParserNS
      NSSEP = '!'

      attr :createCDATASection, true
      attr :createEntityReference, true

=begin
=== Class Methods

    --- DOM::DOMBuilder.new(document = nil, *args)

Constructor of DOM builder.

usage:
parser = XML::DOM::DOMBuilder.new(document)

=end
      ## new(document = nil, encoding = nil)
      ## new(document = nil, parser, context, encoding = nil)

      def self.new(document = nil, *args)
        document ||= Document.new
        if args[0].is_a?(self.class)
          ret = super(*args)
          ret.__initialize__(document, true)
        else
          ret = super(args[0], NSSEP)
          ret.__initialize__(document, false)
        end
        ret.setReturnNSTriplet(true)
        ret
      end

      def __initialize__(document, external = false)
        @tree = nil
        @entityResolver = DOMEntityResolverImpl.new
        @createCDATASection = false
        @createEntityReference = false
        @document = document
        @external = external
      end


=begin
=== Methods
    --- DOMBuilder#parse(xml, parse_ext = false)

parse string or stream of XML contents.

  xml:       string or stream of XML contents
  parse_ext: flag whether parse external entities or not

ex. doctree = parser.parse(xml, parse_ext)

=end
      ## Parse
      ##   doctree = parser.parse(xml, parse_ext)
      ##     xml:       string or stream of XML contents
      ##     parse_ext: flag whether parse external entities or not
      def parse(xml, parse_ext = false)
        if @external
          @tree = @document.createDocumentFragment
        else
          @tree = @document
        end
        @parse_ext = parse_ext
        @current = @tree
        @inDocDecl = 0
        @decl = ""
        @inDecl = 0
        @idRest = 0
        @extID = nil
        @cdata_f = false
        @cdata_buf = ''
        @nsdecl = []
        super(xml)
        @tree
      end

      def parseURI(uri)
        uri =~ /^((\w+):\/\/.+\/).*$/ ## /
        setBase($1) if $1
        xml = @entityResolver.resolveEntity(nil, uri).byteStream.read
        parse(xml, true)
      end

      def text
        return if @cdata_buf == ''
        textnode = @document.createTextNode(@cdata_buf)
        @current.appendChild(textnode)
        @cdata_buf = ''
      end

      def startElement(name, data)
        text
        if !name.index(NSSEP)
          qname = name
          uri = nil
        else
          uri, localname, prefix = name.split(NSSEP)
          if prefix.nil?
            qname = localname
          else
            qname = prefix + ':' + localname
          end
        end
        elem = @document.createElementNS(uri, qname)

        @nsdecl.each do |nsdecl|
          elem.setAttributeNode(nsdecl)
        end
        @nsdecl = []

        attr = {}
        specified = getSpecifiedAttributes
        ## not implemented
        ## elem.idAttribute = getIdAttribute

        data.each do |key, value|
          if !key.index(NSSEP)
            qname = key
            uri = nil
          else
            uri, localname, prefix = key.split(NSSEP)
            if prefix.nil?
              qname = localname
            else
              qname = prefix + ':' + localname
            end
          end
          attr = @document.createAttributeNS(uri, qname)
          attr.appendChild(@document.createTextNode(value))
##          attr.specified = specified[key]
          attr.specified = specified.include?(key)
          elem.setAttributeNode(attr)
        end

        @current.appendChild(elem)
        @current = elem
      end

      def endElement(name)
        text
        @current = @current.parentNode
      end

      def character(data)
##        if @cdata_f
          @cdata_buf << data
##        else
##          cdata = @document.createTextNode(data)
##          @current.appendChild(cdata)
##        end
      end

      def processingInstruction(name, data)
        text
        pi = @document.createProcessingInstruction(name, data)
        @current.appendChild(pi)
      end

      def externalEntityRef(context, base, systemId, publicId)
        text
        tree = nil
        if @parse_ext
          extp = self.class.new(@document, self, context)
          extp.setBase(base) if base
          file = systemId
          if systemId !~ /^\/|^\.|^http:|^ftp:/ && !base.nil? # /
            file = base + systemId
          end
          begin
            xml = @entityResolver.resolveEntity(nil, file).byteStream.read
            tree = extp.parse(xml, @parse_ext)
          rescue XML::Parser::Error
            raise XML::Parser::Error.new("#{systemId}(#{extp.line}): #{$!}")
          rescue Errno::ENOENT
            raise
          end
          extp.done
        end
        if @createEntityReference
          entref = @document.createEntityReference(context)
          @current.appendChild(entref)
          entref.appendChild(tree) if tree
        else
          @current.appendChild(tree) if tree
        end
      end

      def startCdata
        return unless @createCDATASection
        text
        @cdata_f = true
##        @cdata_buf = ''
      end

      def endCdata
        return unless @createCDATASection
        cdata = @document.createCDATASection(@cdata_buf)
        @current.appendChild(cdata)
        @cdata_buf = ''
        @cdata_f = false
      end

      def comment(data)
        text
        comment = @document.createComment(data)
        @current.appendChild(comment)
      end

      def startDoctypeDecl(name, pubid, sysid, internal_subset)
        doctype = @document.implementation.createDocumentType(name,
                                                              pubid, sysid)
        @current.appendChild(doctype)
      end

      def startNamespaceDecl(prefix, uri)
        qname = 'xmlns'
        if prefix
          qname << ':' + prefix
        end
        attr = @document.createAttributeNS(nil, qname)
        attr.appendChild(@document.createTextNode(uri))
        attr.specified = true
        @nsdecl << attr
      end

##      def endNamespaceDecl(prefix, uri)
##      end

##      def defaultHandler(data)
##      end



      ## [DOM3?]
      def entityResolver; @entityResolver; end
      def entityResolver=(resolver)
        raise ArgumentError, 'invalid value for DOMEntityResolver' unless
          resolver.is_a?(DOMEntityResolver)
        @entityResolver = resolver
      end

    end
  end
end