Class: REXML::Entity
- Includes:
- XMLTokens
- Defined in:
- lib/rexml/entity.rb
Constant Summary collapse
- PUBIDCHAR =
"\x20\x0D\x0Aa-zA-Z0-9\\-()+,./:=?;!*@$_%#"
- SYSTEMLITERAL =
%Q{((?:"[^"]*")|(?:'[^']*'))}
- PUBIDLITERAL =
%Q{("[#{PUBIDCHAR}']*"|'[#{PUBIDCHAR}]*')}
- EXTERNALID =
"(?:(?:(SYSTEM)\\s+#{SYSTEMLITERAL})|(?:(PUBLIC)\\s+#{PUBIDLITERAL}\\s+#{SYSTEMLITERAL}))"
- NDATADECL =
"\\s+NDATA\\s+#{NAME}"
- PEREFERENCE =
"%#{NAME};"
- ENTITYVALUE =
%Q{((?:"(?:[^%&"]|#{PEREFERENCE}|#{REFERENCE})*")|(?:'([^%&']|#{PEREFERENCE}|#{REFERENCE})*'))}
- PEDEF =
"(?:#{ENTITYVALUE}|#{EXTERNALID})"
- ENTITYDEF =
"(?:#{ENTITYVALUE}|(?:#{EXTERNALID}(#{NDATADECL})?))"
- PEDECL =
"<!ENTITY\\s+(%)\\s+#{NAME}\\s+#{PEDEF}\\s*>"
- GEDECL =
"<!ENTITY\\s+#{NAME}\\s+#{ENTITYDEF}\\s*>"
- ENTITYDECL =
/\s*(?:#{GEDECL})|(?:#{PEDECL})/um
- PEREFERENCE_RE =
/#{PEREFERENCE}/um
Constants included from XMLTokens
XMLTokens::NAME, XMLTokens::NAMECHAR, XMLTokens::NAME_CHAR, XMLTokens::NAME_START_CHAR, XMLTokens::NAME_STR, XMLTokens::NCNAME_STR, XMLTokens::NMTOKEN, XMLTokens::NMTOKENS, XMLTokens::REFERENCE
Instance Attribute Summary collapse
-
#external ⇒ Object
readonly
Returns the value of attribute external.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#ndata ⇒ Object
readonly
Returns the value of attribute ndata.
-
#pubid ⇒ Object
readonly
Returns the value of attribute pubid.
-
#ref ⇒ Object
readonly
Returns the value of attribute ref.
Attributes inherited from Child
Class Method Summary collapse
-
.matches?(string) ⇒ Boolean
Evaluates whether the given string matches an entity definition, returning true if so, and false otherwise.
Instance Method Summary collapse
-
#initialize(stream, value = nil, parent = nil, reference = false) ⇒ Entity
constructor
Create a new entity.
-
#normalized ⇒ Object
Returns the value of this entity unprocessed – raw.
-
#to_s ⇒ Object
Returns this entity as a string.
-
#unnormalized ⇒ Object
Evaluates to the unnormalized value of this entity; that is, replacing all entities – both %ent; and &ent; entities.
-
#value ⇒ Object
Returns the value of this entity.
-
#write(out, indent = -1) ⇒ Object
Write out a fully formed, correct entity definition (assuming the Entity object itself is valid.).
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(stream, value = nil, parent = nil, reference = false) ⇒ Entity
Create a new entity. Simple entities can be constructed by passing a name, value to the constructor; this creates a generic, plain entity reference. For anything more complicated, you have to pass a Source to the constructor with the entity definition, or use the accessor methods. WARNING
: There is no validation of entity state except when the entity is read from a stream. If you start poking around with the accessors, you can easily create a non-conformant Entity.
e = Entity.new( 'amp', '&' )
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 |
# File 'lib/rexml/entity.rb', line 33 def initialize stream, value=nil, parent=nil, reference=false super(parent) @ndata = @pubid = @value = @external = nil if stream.kind_of? Array @name = stream[1] if stream[-1] == '%' @reference = true stream.pop else @reference = false end if stream[2] =~ /SYSTEM|PUBLIC/ @external = stream[2] if @external == 'SYSTEM' @ref = stream[3] @ndata = stream[4] if stream.size == 5 else @pubid = stream[3] @ref = stream[4] end else @value = stream[2] end else @reference = reference @external = nil @name = stream @value = value end end |
Instance Attribute Details
#external ⇒ Object (readonly)
Returns the value of attribute external.
22 23 24 |
# File 'lib/rexml/entity.rb', line 22 def external @external end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
22 23 24 |
# File 'lib/rexml/entity.rb', line 22 def name @name end |
#ndata ⇒ Object (readonly)
Returns the value of attribute ndata.
22 23 24 |
# File 'lib/rexml/entity.rb', line 22 def ndata @ndata end |
#pubid ⇒ Object (readonly)
Returns the value of attribute pubid.
22 23 24 |
# File 'lib/rexml/entity.rb', line 22 def pubid @pubid end |
#ref ⇒ Object (readonly)
Returns the value of attribute ref.
22 23 24 |
# File 'lib/rexml/entity.rb', line 22 def ref @ref end |
Class Method Details
.matches?(string) ⇒ Boolean
Evaluates whether the given string matches an entity definition, returning true if so, and false otherwise.
66 67 68 |
# File 'lib/rexml/entity.rb', line 66 def Entity::matches? string (ENTITYDECL =~ string) == 0 end |
Instance Method Details
#normalized ⇒ Object
Returns the value of this entity unprocessed – raw. This is the normalized value; that is, with all %ent; and &ent; entities intact
85 86 87 |
# File 'lib/rexml/entity.rb', line 85 def normalized @value end |
#to_s ⇒ Object
Returns this entity as a string. See write().
119 120 121 122 123 |
# File 'lib/rexml/entity.rb', line 119 def to_s rv = '' write rv rv end |
#unnormalized ⇒ Object
Evaluates to the unnormalized value of this entity; that is, replacing all entities – both %ent; and &ent; entities. This differs from value() in that value
only replaces %ent; entities.
73 74 75 76 77 78 79 |
# File 'lib/rexml/entity.rb', line 73 def unnormalized document.record_entity_expansion unless document.nil? v = value() return nil if v.nil? @unnormalized = Text::unnormalize(v, parent) @unnormalized end |
#value ⇒ Object
Returns the value of this entity. At the moment, only internal entities are processed. If the value contains internal references (IE, %blah;), those are replaced with their values. IE, if the doctype contains:
<!ENTITY % foo "bar">
<!ENTITY yada "nanoo %foo; nanoo>
then:
doctype.entity('yada').value #-> "nanoo bar nanoo"
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
# File 'lib/rexml/entity.rb', line 134 def value if @value matches = @value.scan(PEREFERENCE_RE) rv = @value.clone if @parent sum = 0 matches.each do |entity_reference| entity_value = @parent.entity( entity_reference[0] ) if sum + entity_value.bytesize > Security.entity_expansion_text_limit raise "entity expansion has grown too large" else sum += entity_value.bytesize end rv.gsub!( /%#{entity_reference.join};/um, entity_value ) end end return rv end nil end |
#write(out, indent = -1) ⇒ Object
Write out a fully formed, correct entity definition (assuming the Entity object itself is valid.)
- out
-
An object implementing <TT><<<TT> to which the entity will be output
- indent
-
DEPRECATED and ignored
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/rexml/entity.rb', line 97 def write out, indent=-1 out << '<!ENTITY ' out << '% ' if @reference out << @name out << ' ' if @external out << @external << ' ' if @pubid q = @pubid.include?('"')?"'":'"' out << q << @pubid << q << ' ' end q = @ref.include?('"')?"'":'"' out << q << @ref << q out << ' NDATA ' << @ndata if @ndata else q = @value.include?('"')?"'":'"' out << q << @value << q end out << '>' end |