File: xmltreebuilder.rb

package info (click to toggle)
libxml-parser-ruby 0.6.1-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 676 kB
  • ctags: 800
  • sloc: ruby: 5,723; ansic: 1,734; xml: 574; makefile: 152
file content (329 lines) | stat: -rw-r--r-- 8,162 bytes parent folder | download
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
## -*- Ruby -*-
## XML::SimpleTreeBuilder
## 1999 by yoshidam

require 'xmlparser'
require 'xmltree'
include XML::SimpleTree

=begin
= XML::DOM::Builder

== Module XML

=end
module XML

=begin
== Class XML::DOM::Builder (XML::SimpleTreeBuilder)

=== superclass
XML::Parser

=end
  class SimpleTreeBuilder<Parser
    ## replace 'open' by WGET::open
    begin
      require 'wget'
      include WGET
    rescue
      ## ignore
    end

=begin
=== Class Methods

    --- DOM::Builder.new(level = 0, *args)

Constructor of DOM builder.

usage:
parser = XML::SimpleTreeBuilder.new(level)

  level: 0 -- ignore default events (defualt)
         1 -- catch default events and create the Comment,
              the EntityReference, the XML declaration (as PI) and
              the non-DOM-compliant DocumentType nodes.

=end

    def SimpleTreeBuilder.new(level = 0, *args)
      ret = super(*args)
      external = false
      external = true if args[0].is_a?(SimpleTreeBuilder)
      ret.__initialize__(level, external)
      ret
    end

    ## Constructor
    ##  parser = XML::SimpleTreeBuilder.new(level)
    ##    level: 0 -- ignore default events (defualt)
    ##           1 -- catch default events and create the Comment,
    ##                the EntityReference, the XML declaration (as PI) and
    ##                the non-DOM-compliant DocumentType nodes.
    def __initialize__(level = 0, external = false)
      @tree = nil
      @level = level
      @external = external
      if @level > 0
        def self.default(data); defaultHandler(data); end
      end
    end

=begin
=== Methods

    --- Builder#nameConverter(str)

User redefinable name encoding converter

=end
    ## User redefinable name encoding converter
    def nameConverter(str)
      str
    end

=begin
    --- Builder#cdataConverter(str)

User redefinable cdata encoding converter

=end
    ## User redefinable cdata encoding converter
    def cdataConverter(str)
      str
    end

=begin
=== Methods
    --- Builder#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 = DocumentFragment.new
      else
        @tree = Document.new
      end
      @parse_ext = parse_ext
      @current = @tree
      @inDocDecl = 0
      @decl = ""
      @inDecl = 0
      @idRest = 0
      @extID = nil
      @cdata_f = 0
      @cdata_buf = ''
      super(xml)
      @tree
    end

    def startElement(name, data)
      attr = {}
      data.each do |key, value|
        attr[nameConverter(key)] = cdataConverter(value)
      end
      elem = Element.new(nameConverter(name), attr)
      @current.appendChild(elem)
      @current = elem
    end

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

    def character(data)
      ## old expat only
      if data == ''
        if @level > 0
          @cdata_f = 1
          defaultCurrent
        end
        return
      end

      if @cdata_f == 2
        @cdata_buf += data
      else
        cdata = Text.new(cdataConverter(data))
        @current.appendChild(cdata)
      end
     end

    def processingInstruction(name, data)
      pi = ProcessingInstruction.new(nameConverter(name),
                                     cdataConverter(data))
      ## PI data should not be converted
      @current.appendChild(pi)
    end

    def externalEntityRef(context, base, systemId, publicId)
      tree = nil
      if @parse_ext
        extp = SimpleTreeBuilder.new(@level, self, context)
        extp.setBase(base) if base
        file = systemId
        if systemId !~ /^\/|^\.|^http:|^ftp:/ && !base.nil?
          file = base + systemId
        end
        begin
          tree = extp.parse(open(file).read, @parse_ext)
        rescue XML::ParserError
          raise XML::ParserError.new("#{systemId}(#{extp.line}): #{$!}")
        rescue Errno::ENOENT
          raise Errno::ENOENT.new("#{$!}")
        end
        extp.done
      end
      if @level > 0
        entref = EntityReference.new(nameConverter(context))
        @current.appendChild(entref)
        entref.appendChild(tree) if tree
      else
        @current.appendChild(tree) if tree
      end
    end

    ## new expat only
    def startCdata
      return if @level < 1
      @cdata_f = 2
      @cdata_buf = ''
    end

    ## new expat only
    def endCdata
      return if @level < 1
      cdata = CDATASection.new(cdataConverter(@cdata_buf))
      @current.appendChild(cdata)
      @cdata_buf = ''
      @cdata_f = 0
    end

    ## new expat only
    def comment(data)
      comment = Comment.new(cdataConverter(data))
      ## Comment should not be converted
      @current.appendChild(comment)
    end

    def defaultHandler(data)
      ## old expat only
      if @cdata_f == 1
        if data == '<![CDATA['
          @cdata_f = 2
          @cdata_buf = ''
        elsif data == ']]>'
          cdata = CDATASection.new(cdataConverter(@cdata_buf))
          @current.appendChild(cdata)
          @cdata_buf = ''
          @cdata_f = 0
        else
          print "Unexpected default event\n"
          @cdata_f = 0
        end
        return
      end

      ## Large comment may crash regexp of Ruby
      ##          if data =~ /^<!--([\s\S]*)-->$/
      ##            comment = Comment.new(cdataConverter($1))
      if data =~ /^<!--/ && data =~ /-->$/ && data.length >= 7 
        ## old expat only
        comment = Comment.new(cdataConverter(data[4..-4]))
        ## Comment should not be converted
        @current.appendChild(comment)
      elsif data =~ /^\&(.+);$/
        eref = EntityReference.new(nameConverter($1))
        @current.appendChild(eref)
      elsif data =~ /^<\?xml\s*([\s\S]*)\?>$/
        pi = ProcessingInstruction.new("xml",
                                       cdataConverter($1))
        ## PI data should not be converted
        @current.appendChild(pi)
      elsif @inDocDecl == 0 && data =~ /^<\!DOCTYPE$/
        @inDocDecl = 1
        @inDecl = 0
        @idRest = 0
        @extID = nil
      elsif @inDocDecl == 1
        if data == "["
          @inDocDecl = 2
        elsif data == ">"
          if !@extID.nil?
            @current.nodeValue = @extID
          end
          @inDocDecl = 0
          @current = @current.parentNode
        elsif data == "SYSTEM"
          @idRest = 1
          @extID = data
        elsif data == "PUBLIC"
          @idRest = 2
          @extID = data
        elsif data !~ /^\s+$/
          if @idRest > 0
            ## SysID or PubID
            @extID <<= " " + data
            @idRest -= 1
          else
            ## Root Element Type
            docType = data
            doctype = DocumentType.new(nameConverter(docType))
            @current.appendChild(doctype)
            @current = doctype
          end
        end
      elsif @inDocDecl == 2
        if @inDecl == 0
          if data == "]"
            @inDocDecl = 1
          elsif data =~ /^<\!/
            @decl = data
            @inDecl = 1
          elsif data =~ /^%(.+);$/
            ## PERef
            cdata = Text.new(nameConverter(data))
            @current.appendChild(cdata)
          else
            ## WHITESPCAE
          end
        else ## inDecl == 1
          if data == ">"
            @decl <<= data
            @inDecl = 0
            ## Markup Decl
            cdata = Text.new(cdataConverter(@decl))
            ## Markup decl should not be converted
            @current.appendChild(cdata)
          elsif data =~ /^\s+$/
            ## WHITESPACE
            @decl << " "
          else
            @decl << data
          end
        end
      else
        ## maybe WHITESPACE
        cdata = Text.new(cdataConverter(data))
        @current.appendChild(cdata)
      end
    end

  end

  module DOM
    Builder = SimpleTreeBuilder
  end
end