Class: REXML::Text
- Includes:
- Comparable
- Defined in:
- lib/rexml/text.rb
Overview
Represents text nodes in an XML document
Direct Known Subclasses
Constant Summary collapse
- SPECIALS =
The order in which the substitutions occur
[ /&(?!#?[\w-]+;)/u, /</u, />/u, /"/u, /'/u, /\r/u ]
- SUBSTITUTES =
['&', '<', '>', '"', ''', ' ']
- SLAICEPS =
Characters which are substituted in written strings
[ '<', '>', '"', "'", '&' ]
- SETUTITSBUS =
[ /</u, />/u, /"/u, /'/u, /&/u ]
- NEEDS_A_SECOND_CHECK =
/(<|&((#{Entity::NAME});|(#0*((?:\d+)|(?:x[a-fA-F0-9]+)));)?)/um
- NUMERICENTITY =
/�*((?:\d+)|(?:x[a-fA-F0-9]+));/
- VALID_CHAR =
[ 0x9, 0xA, 0xD, (0x20..0xD7FF), (0xE000..0xFFFD), (0x10000..0x10FFFF) ]
- VALID_XML_CHARS =
Regexp.new('^['+ VALID_CHAR.map { |item| case item when Integer [item].pack('U').force_encoding('utf-8') when Range [item.first, '-'.ord, item.last].pack('UUU').force_encoding('utf-8') end }.join + ']*$')
- REFERENCE =
/#{Entity::REFERENCE}/
Instance Attribute Summary collapse
-
#raw ⇒ Object
If
raw
is true, then REXML leaves the value alone.
Attributes inherited from Child
Class Method Summary collapse
-
.check(string, pattern, doctype) ⇒ Object
check for illegal characters.
Instance Method Summary collapse
-
#<<(to_append) ⇒ Object
Appends text to this text node.
-
#<=>(other) ⇒ Object
other
a String or a Textreturns
the result of (to_s <=> arg.to_s). - #clone ⇒ Object
- #doctype ⇒ Object
- #empty? ⇒ Boolean
- #indent_text(string, level = 1, style = "\t", indentfirstline = true) ⇒ Object
-
#initialize(arg, respect_whitespace = false, parent = nil, raw = nil, entity_filter = nil, illegal = NEEDS_A_SECOND_CHECK) ⇒ Text
constructor
Constructor
arg
if a String, the content is set to the String. - #inspect ⇒ Object
- #node_type ⇒ Object
- #parent=(parent) ⇒ Object
-
#to_s ⇒ Object
Returns the string value of this text node.
-
#value ⇒ Object
Returns the string value of this text.
-
#value=(val) ⇒ Object
Sets the contents of this text node.
- #wrap(string, width, addnewline = false) ⇒ Object
-
#write(writer, indent = -1,, transitive = false, ie_hack = false) ⇒ Object
DEPRECATED See REXML::Formatters.
-
#write_with_substitution(out, input) ⇒ Object
Writes out text, substituting special characters beforehand.
-
#xpath ⇒ Object
FIXME This probably won’t work properly.
Methods inherited from Child
#bytes, #document, #next_sibling=, #previous_sibling=, #remove, #replace_with
Methods included from Node
#each_recursive, #find_first_recursive, #indent, #index_in_parent, #next_sibling_node, #parent?, #previous_sibling_node
Constructor Details
#initialize(arg, respect_whitespace = false, parent = nil, raw = nil, entity_filter = nil, illegal = NEEDS_A_SECOND_CHECK) ⇒ Text
Constructor arg
if a String, the content is set to the String. If a Text, the object is shallowly cloned.
respect_whitespace
(boolean, false) if true, whitespace is respected
parent
(nil) if this is a Parent object, the parent will be set to this.
raw
(nil) This argument can be given three values. If true, then the value of used to construct this object is expected to contain no unescaped XML markup, and REXML will not change the text. If this value is false, the string may contain any characters, and REXML will escape any and all defined entities whose values are contained in the text. If this value is nil (the default), then the raw value of the parent will be used as the raw value for this node. If there is no raw value for the parent, and no value is supplied, the default is false. Use this field if you have entities defined for some text, and you don’t want REXML to escape that text in output.
Text.new( "<&", false, nil, false ) #-> "<&"
Text.new( "<&", false, nil, false ) #-> "&lt;&amp;"
Text.new( "<&", false, nil, true ) #-> Parse exception
Text.new( "<&", false, nil, true ) #-> "<&"
# Assume that the entity "s" is defined to be "sean"
# and that the entity "r" is defined to be "russell"
Text.new( "sean russell" ) #-> "&s; &r;"
Text.new( "sean russell", false, nil, true ) #-> "sean russell"
entity_filter
(nil) This can be an array of entities to match in the supplied text. This argument is only useful if raw
is set to false.
Text.new( "sean russell", false, nil, false, ["s"] ) #-> "&s; russell"
Text.new( "sean russell", false, nil, true, ["s"] ) #-> "sean russell"
In the last example, the entity_filter
argument is ignored.
illegal
INTERNAL USE ONLY
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 |
# File 'lib/rexml/text.rb', line 79 def initialize(arg, respect_whitespace=false, parent=nil, raw=nil, entity_filter=nil, illegal=NEEDS_A_SECOND_CHECK ) @raw = false @parent = nil @entity_filter = nil if parent super( parent ) @raw = parent.raw end if arg.kind_of? String @string = arg.dup elsif arg.kind_of? Text @string = arg.instance_variable_get(:@string).dup @raw = arg.raw @entity_filter = arg.instance_variable_get(:@entity_filter) else raise "Illegal argument of type #{arg.type} for Text constructor (#{arg})" end @string.squeeze!(" \n\t") unless respect_whitespace @string.gsub!(/\r\n?/, "\n") @raw = raw unless raw.nil? @entity_filter = entity_filter if entity_filter clear_cache Text.check(@string, illegal, doctype) if @raw end |
Instance Attribute Details
#raw ⇒ Object
If raw
is true, then REXML leaves the value alone
21 22 23 |
# File 'lib/rexml/text.rb', line 21 def raw @raw end |
Class Method Details
.check(string, pattern, doctype) ⇒ Object
check for illegal characters
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 |
# File 'lib/rexml/text.rb', line 116 def Text.check string, pattern, doctype # illegal anywhere if !string.match?(VALID_XML_CHARS) string.chars.each do |c| case c.ord when *VALID_CHAR else raise "Illegal character #{c.inspect} in raw string #{string.inspect}" end end end pos = 0 while (index = string.index(/<|&/, pos)) if string[index] == "<" raise "Illegal character \"#{string[index]}\" in raw string #{string.inspect}" end unless (end_index = string.index(/[^\s];/, index + 1)) raise "Illegal character \"#{string[index]}\" in raw string #{string.inspect}" end value = string[(index + 1)..end_index] if /\s/.match?(value) raise "Illegal character \"#{string[index]}\" in raw string #{string.inspect}" end if value[0] == "#" character_reference = value[1..-1] unless (/\A(\d+|x[0-9a-fA-F]+)\z/.match?(character_reference)) if character_reference[0] == "x" || character_reference[-1] == "x" raise "Illegal character \"#{string[index]}\" in raw string #{string.inspect}" else raise "Illegal character #{string.inspect} in raw string #{string.inspect}" end end case (character_reference[0] == "x" ? character_reference[1..-1].to_i(16) : character_reference[0..-1].to_i) when *VALID_CHAR else raise "Illegal character #{string.inspect} in raw string #{string.inspect}" end elsif !(/\A#{Entity::NAME}\z/um.match?(value)) raise "Illegal character \"#{string[index]}\" in raw string #{string.inspect}" end pos = end_index + 1 end string end |
Instance Method Details
#<<(to_append) ⇒ Object
Appends text to this text node. The text is appended in the raw
mode of this text node.
returns
the text itself to enable method chain like ‘text << “XXX” << “YYY”’.
189 190 191 192 193 |
# File 'lib/rexml/text.rb', line 189 def <<( to_append ) @string << to_append.gsub( /\r\n?/, "\n" ) clear_cache self end |
#<=>(other) ⇒ Object
other
a String or a Text returns
the result of (to_s <=> arg.to_s)
198 199 200 |
# File 'lib/rexml/text.rb', line 198 def <=>( other ) to_s() <=> other.to_s end |
#clone ⇒ Object
179 180 181 |
# File 'lib/rexml/text.rb', line 179 def clone return Text.new(self, true) end |
#doctype ⇒ Object
202 203 204 205 206 207 |
# File 'lib/rexml/text.rb', line 202 def doctype if @parent doc = @parent.document doc.doctype if doc end end |
#empty? ⇒ Boolean
174 175 176 |
# File 'lib/rexml/text.rb', line 174 def empty? @string.size==0 end |
#indent_text(string, level = 1, style = "\t", indentfirstline = true) ⇒ Object
274 275 276 277 278 279 280 281 282 283 284 |
# File 'lib/rexml/text.rb', line 274 def indent_text(string, level=1, style="\t", indentfirstline=true) return string if level < 0 new_string = '' string.each_line { |line| indent_string = style * level new_line = (indent_string + line).sub(/[\s]+$/,'') new_string << new_line } new_string.strip! unless indentfirstline return new_string end |
#inspect ⇒ Object
228 229 230 |
# File 'lib/rexml/text.rb', line 228 def inspect @string.inspect end |
#node_type ⇒ Object
170 171 172 |
# File 'lib/rexml/text.rb', line 170 def node_type :text end |
#parent=(parent) ⇒ Object
110 111 112 113 |
# File 'lib/rexml/text.rb', line 110 def parent= parent super(parent) Text.check(@string, NEEDS_A_SECOND_CHECK, doctype) if @raw and @parent end |
#to_s ⇒ Object
Returns the string value of this text node. This string is always escaped, meaning that it is a valid XML text node string, and all entities that can be escaped, have been inserted. This method respects the entity filter set in the constructor.
# Assume that the entity "s" is defined to be "sean", and that the
# entity "r" is defined to be "russell"
t = Text.new( "< & sean russell", false, nil, false, ['s'] )
t.to_s #-> "< & &s; russell"
t = Text.new( "< & &s; russell", false, nil, false )
t.to_s #-> "< & &s; russell"
u = Text.new( "sean russell", false, nil, true )
u.to_s #-> "sean russell"
223 224 225 226 |
# File 'lib/rexml/text.rb', line 223 def to_s return @string if @raw @normalized ||= Text::normalize( @string, doctype, @entity_filter ) end |
#value ⇒ Object
Returns the string value of this text. This is the text without entities, as it might be used programmatically, or printed to the console. This ignores the ‘raw’ attribute setting, and any entity_filter.
# Assume that the entity "s" is defined to be "sean", and that the
# entity "r" is defined to be "russell"
t = Text.new( "< & sean russell", false, nil, false, ['s'] )
t.value #-> "< & sean russell"
t = Text.new( "< & &s; russell", false, nil, false )
t.value #-> "< & sean russell"
u = Text.new( "sean russell", false, nil, true )
u.value #-> "sean russell"
245 246 247 248 |
# File 'lib/rexml/text.rb', line 245 def value @unnormalized ||= Text::unnormalize(@string, doctype, entity_expansion_text_limit: document&.entity_expansion_text_limit) end |
#value=(val) ⇒ Object
257 258 259 260 261 |
# File 'lib/rexml/text.rb', line 257 def value=( val ) @string = val.gsub( /\r\n?/, "\n" ) clear_cache @raw = false end |
#wrap(string, width, addnewline = false) ⇒ Object
263 264 265 266 267 268 269 270 271 272 |
# File 'lib/rexml/text.rb', line 263 def wrap(string, width, addnewline=false) # Recursively wrap string at width. return string if string.length <= width place = string.rindex(' ', width) # Position in string with last ' ' before cutoff if addnewline then return "\n" + string[0,place] + "\n" + wrap(string[place+1..-1], width) else return string[0,place] + "\n" + wrap(string[place+1..-1], width) end end |
#write(writer, indent = -1,, transitive = false, ie_hack = false) ⇒ Object
DEPRECATED
See REXML::Formatters
289 290 291 292 293 294 295 296 297 |
# File 'lib/rexml/text.rb', line 289 def write( writer, indent=-1, transitive=false, ie_hack=false ) Kernel.warn("#{self.class.name}.write is deprecated. See REXML::Formatters", uplevel: 1) formatter = if indent > -1 REXML::Formatters::Pretty.new( indent ) else REXML::Formatters::Default.new end formatter.write( self, writer ) end |
#write_with_substitution(out, input) ⇒ Object
Writes out text, substituting special characters beforehand. out
A String, IO, or any other object supporting <<( String ) input
the text to substitute and the write out
z=utf8.unpack("U*")
ascOut=""
z.each{|r|
if r < 0x100
ascOut.concat(r.chr)
else
ascOut.concat(sprintf("&#x%x;", r))
end
}
puts ascOut
321 322 323 324 325 326 327 328 329 330 331 |
# File 'lib/rexml/text.rb', line 321 def write_with_substitution out, input copy = input.clone # Doing it like this rather than in a loop improves the speed copy.gsub!( SPECIALS[0], SUBSTITUTES[0] ) copy.gsub!( SPECIALS[1], SUBSTITUTES[1] ) copy.gsub!( SPECIALS[2], SUBSTITUTES[2] ) copy.gsub!( SPECIALS[3], SUBSTITUTES[3] ) copy.gsub!( SPECIALS[4], SUBSTITUTES[4] ) copy.gsub!( SPECIALS[5], SUBSTITUTES[5] ) out << copy end |
#xpath ⇒ Object
FIXME This probably won’t work properly
301 302 303 304 305 |
# File 'lib/rexml/text.rb', line 301 def xpath path = @parent.xpath path += "/text()" return path end |