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
|
## -*- Ruby -*-
## XML::DOM::Builder
## 1999 by yoshidam
require 'xml/parser'
require 'xml/dom/core'
=begin
= XML::DOM::Builder
== Module XML
=end
module XML
module DOM
=begin
== Class XML::DOM::Builder (XML::SimpleTreeBuilder)
=== superclass
XML::Parser
=end
class Builder<Parser
include XML::DOM
attr :createCDATASection, true
attr :createEntityReference, true
## 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 self.new(level = 0, *args)
document = Document.new
ret = super(*args)
external = false
external = true if args[0].is_a?(SimpleTreeBuilder)
ret.__initialize__(level, document, 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, document, external)
@tree = nil
@level = level
@document = document
@external = external
@createCDATASection = false
@createEntityReference = false
if @level > 0
@createCDATASection = true
@createEntityReference = true
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 = @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 = ''
super(xml)
@tree
end
def text
return if @cdata_buf == ''
textnode = @document.createTextNode(cdataConverter(@cdata_buf))
@current.appendChild(textnode)
@cdata_buf = ''
end
def startElement(name, data)
text
elem = @document.createElement(nameConverter(name))
data.each do |key, value|
attr = @document.createAttribute(nameConverter(key))
attr.appendChild(@document.createTextNode(cdataConverter(value)))
elem.setAttributeNode(attr)
end
@current.appendChild(elem)
@current = elem
end
def endElement(name)
text
@current = @current.parentNode
end
def character(data)
@cdata_buf << data
end
def processingInstruction(name, data)
text
pi = @document.createProcessingInstruction(nameConverter(name),
cdataConverter(data))
## PI data should not be converted
@current.appendChild(pi)
end
def externalEntityRef(context, base, systemId, publicId)
text
tree = nil
if @parse_ext
extp = self.class.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 @createEntityReference
entref = @document.createEntityReference(nameConverter(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
end
def endCdata
return unless @createCDATASection
cdata = @document.createCDATASection(cdataConverter(@cdata_buf))
@current.appendChild(cdata)
@cdata_buf = ''
@cdata_f = false
end
def comment(data)
text
comment = @document.createComment(cdataConverter(data))
## Comment should not be converted
@current.appendChild(comment)
end
def defaultHandler(data)
if data =~ /^\&(.+);$/
eref = @document.createEntityReference(nameConverter($1))
@current.appendChild(eref)
elsif data =~ /^<\?xml\s*([\s\S]*)\?>$/
## XML declaration should not be a PI.
pi = @document.createProcessingInstruction("xml",
cdataConverter($1))
@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 = @document.createTextNode(nameConverter(data))
## @current.appendChild(cdata)
else
## WHITESPCAE
end
else ## inDecl == 1
if data == ">"
@decl <<= data
@inDecl = 0
## Markup Decl
## cdata = @document.createTextNode(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 = @document.createTextNode(cdataConverter(data))
## @current.appendChild(cdata)
end
end
end
end
SimpleTreeBuilder = DOM::Builder
end
|