Class: REXML::Source
Overview
A Source can be searched for patterns, and wraps buffers and other objects and provides consumption of text
Direct Known Subclasses
Instance Attribute Summary collapse
-
#buffer ⇒ Object
readonly
The current buffer (what we’re going to read next).
-
#encoding ⇒ Object
Returns the value of attribute encoding.
-
#line ⇒ Object
readonly
The line number of the last consumed text.
Instance Method Summary collapse
- #consume(pattern) ⇒ Object
-
#current_line ⇒ Object
The current line in the source.
-
#empty? ⇒ Boolean
True if the Source is exhausted.
-
#initialize(arg, encoding = nil) ⇒ Source
constructor
Constructor value, overriding all encoding detection.
- #match(pattern, cons = false) ⇒ Object
- #match_to(char, pattern) ⇒ Object
- #match_to_consume(char, pattern) ⇒ Object
- #position ⇒ Object
- #read ⇒ Object
-
#scan(pattern, cons = false) ⇒ Object
Scans the source for a given pattern.
Methods included from Encoding
Constructor Details
#initialize(arg, encoding = nil) ⇒ Source
Constructor value, overriding all encoding detection
43 44 45 46 47 48 49 50 51 |
# File 'lib/rexml/source.rb', line 43 def initialize(arg, encoding=nil) @orig = @buffer = arg if encoding self.encoding = encoding else detect_encoding end @line = 0 end |
Instance Attribute Details
#buffer ⇒ Object (readonly)
The current buffer (what we’re going to read next)
34 35 36 |
# File 'lib/rexml/source.rb', line 34 def buffer @buffer end |
#encoding ⇒ Object
Returns the value of attribute encoding
37 38 39 |
# File 'lib/rexml/source.rb', line 37 def encoding @encoding end |
#line ⇒ Object (readonly)
The line number of the last consumed text
36 37 38 |
# File 'lib/rexml/source.rb', line 36 def line @line end |
Instance Method Details
#consume(pattern) ⇒ Object
87 88 89 |
# File 'lib/rexml/source.rb', line 87 def consume( pattern ) @buffer = $' if pattern.match( @buffer ) end |
#current_line ⇒ Object
Returns the current line in the source.
117 118 119 120 121 122 |
# File 'lib/rexml/source.rb', line 117 def current_line lines = @orig.split res = lines.grep @buffer[0..30] res = res[-1] if res.kind_of? Array lines.index( res ) if res end |
#empty? ⇒ Boolean
Returns true if the Source is exhausted.
108 109 110 |
# File 'lib/rexml/source.rb', line 108 def empty? @buffer == "" end |
#match(pattern, cons = false) ⇒ Object
101 102 103 104 105 |
# File 'lib/rexml/source.rb', line 101 def match(pattern, cons=false) md = pattern.match(@buffer) @buffer = $' if cons and md return md end |
#match_to(char, pattern) ⇒ Object
91 92 93 |
# File 'lib/rexml/source.rb', line 91 def match_to( char, pattern ) return pattern.match(@buffer) end |
#match_to_consume(char, pattern) ⇒ Object
95 96 97 98 99 |
# File 'lib/rexml/source.rb', line 95 def match_to_consume( char, pattern ) md = pattern.match(@buffer) @buffer = $' return md end |
#position ⇒ Object
112 113 114 |
# File 'lib/rexml/source.rb', line 112 def position @orig.index( @buffer ) end |
#read ⇒ Object
84 85 |
# File 'lib/rexml/source.rb', line 84 def read end |
#scan(pattern, cons = false) ⇒ Object
Scans the source for a given pattern. Note, that this is not your usual scan() method. For one thing, the pattern argument has some requirements; for another, the source can be consumed. You can easily confuse this method. Originally, the patterns were easier to construct and this method more robust, because this method generated search regexps on the fly; however, this was computationally expensive and slowed down the entire REXML package considerably, since this is by far the most commonly called method. /^s*(#pattern, with no groups)(.*)/. The first group will be returned; the second group is used if the consume flag is set. everything after it in the Source. pattern is not found.
77 78 79 80 81 82 |
# File 'lib/rexml/source.rb', line 77 def scan(pattern, cons=false) return nil if @buffer.nil? rv = @buffer.scan(pattern) @buffer = $' if cons and rv.size>0 rv end |