Class: Parser::Source::Buffer
- Inherits:
-
Object
- Object
- Parser::Source::Buffer
- Defined in:
- lib/parser/source/buffer.rb
Overview
A buffer with source code. Buffer contains the source code itself, associated location information (name and first line), and takes care of encoding.
A source buffer is immutable once populated.
Constant Summary collapse
- ENCODING_RE =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
/[\s#](en)?coding\s*[:=]\s* ( # Special-case: there's a UTF8-MAC encoding. (utf8-mac) | # Chew the suffix; it's there for emacs compat. ([A-Za-z0-9_-]+?)(-unix|-dos|-mac) | ([A-Za-z0-9_-]+) ) /x
Instance Attribute Summary collapse
-
#first_line ⇒ Integer
readonly
First line of the buffer, 1 by default.
-
#name ⇒ String
readonly
Buffer name.
Class Method Summary collapse
-
.recognize_encoding(string) ⇒ String?
Try to recognize encoding of ‘string` as Ruby would, i.e.
-
.reencode_string(input) ⇒ String
Recognize encoding of ‘input` and process it so it could be lexed.
Instance Method Summary collapse
-
#column_for_position(position) ⇒ Integer
private
Convert a character index into the source to a column number.
-
#decompose_position(position) ⇒ [Integer, Integer]
Convert a character index into the source to a ‘[line, column]` tuple.
-
#freeze ⇒ Object
:nodoc:.
-
#initialize(name, first_line = 1, source: nil) ⇒ Buffer
constructor
A new instance of Buffer.
-
#inspect ⇒ Object
:nodoc:.
-
#last_line ⇒ Integer
Number of last line in the buffer.
-
#line_for_position(position) ⇒ Integer
private
Convert a character index into the source to a line number.
-
#line_range(lineno) ⇒ Range
Extract line ‘lineno` as a new `Range`, taking `first_line` into account.
-
#raw_source=(input) ⇒ String
Populate this buffer from a string without encoding autodetection.
-
#read ⇒ Buffer
Populate this buffer from correspondingly named file.
- #slice(start, length = nil) ⇒ Object
-
#source ⇒ String
Source code contained in this buffer.
-
#source=(input) ⇒ String
Populate this buffer from a string with encoding autodetection.
-
#source_line(lineno) ⇒ String
Extract line ‘lineno` from source, taking `first_line` into account.
-
#source_lines ⇒ Array<String>
Return an ‘Array` of source code lines.
-
#source_range ⇒ Range
A range covering the whole source.
Constructor Details
#initialize(name, first_line = 1, source: nil) ⇒ Buffer
Returns a new instance of Buffer.
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/parser/source/buffer.rb', line 110 def initialize(name, first_line = 1, source: nil) @name = name.to_s @source = nil @first_line = first_line @lines = nil @line_begins = nil # UTF-32-reencoded source for O(1) slicing @slice_source = nil # Cache for fast lookup @line_index_for_position = {} self.source = source if source end |
Instance Attribute Details
#first_line ⇒ Integer (readonly)
First line of the buffer, 1 by default.
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 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 |
# File 'lib/parser/source/buffer.rb', line 25 class Buffer attr_reader :name, :first_line ## # @api private # ENCODING_RE = /[\s#](en)?coding\s*[:=]\s* ( # Special-case: there's a UTF8-MAC encoding. (utf8-mac) | # Chew the suffix; it's there for emacs compat. ([A-Za-z0-9_-]+?)(-unix|-dos|-mac) | ([A-Za-z0-9_-]+) ) /x ## # Try to recognize encoding of `string` as Ruby would, i.e. by looking for # magic encoding comment or UTF-8 BOM. `string` can be in any encoding. # # @param [String] string # @raise [Parser::UnknownEncodingInMagicComment] if the encoding is not recognized # @return [String, nil] encoding name, if recognized # def self.recognize_encoding(string) return if string.empty? # extract the first two lines in an efficient way string =~ /\A(.*)\n?(.*\n)?/ first_line, second_line = $1, $2 if first_line.start_with?("\xef\xbb\xbf".freeze) # BOM return Encoding::UTF_8 elsif first_line[0, 2] == '#!'.freeze encoding_line = second_line else encoding_line = first_line end return nil if encoding_line.nil? || encoding_line[0] != '#' if (result = ENCODING_RE.match(encoding_line)) begin Encoding.find(result[3] || result[4] || result[6]) rescue ArgumentError => e raise Parser::UnknownEncodingInMagicComment, e. end else nil end end ## # Recognize encoding of `input` and process it so it could be lexed. # # * If `input` does not contain BOM or magic encoding comment, it is # kept in the original encoding. # * If the detected encoding is binary, `input` is kept in binary. # * Otherwise, `input` is re-encoded into UTF-8 and returned as a # new string. # # This method mutates the encoding of `input`, but not its content. # # @param [String] input # @return [String] # @raise [EncodingError] # def self.reencode_string(input) original_encoding = input.encoding detected_encoding = recognize_encoding(input.force_encoding(Encoding::BINARY)) if detected_encoding.nil? input.force_encoding(original_encoding) elsif detected_encoding == Encoding::BINARY input else input. force_encoding(detected_encoding). encode(Encoding::UTF_8) end end def initialize(name, first_line = 1, source: nil) @name = name.to_s @source = nil @first_line = first_line @lines = nil @line_begins = nil # UTF-32-reencoded source for O(1) slicing @slice_source = nil # Cache for fast lookup @line_index_for_position = {} self.source = source if source end ## # Populate this buffer from correspondingly named file. # # @example # Parser::Source::Buffer.new('foo/bar.rb').read # # @return [Buffer] self # @raise [ArgumentError] if already populated # def read File.open(@name, 'rb') do |io| self.source = io.read end self end ## # Source code contained in this buffer. # # @return [String] source code # @raise [RuntimeError] if buffer is not populated yet # def source if @source.nil? raise RuntimeError, 'Cannot extract source from uninitialized Source::Buffer' end @source end ## # Populate this buffer from a string with encoding autodetection. # `input` is mutated if not frozen. # # @param [String] input # @raise [ArgumentError] if already populated # @raise [EncodingError] if `input` includes invalid byte sequence for the encoding # @return [String] # def source=(input) input = input.dup if input.frozen? input = self.class.reencode_string(input) unless input.valid_encoding? raise EncodingError, "invalid byte sequence in #{input.encoding.name}" end self.raw_source = input end ## # Populate this buffer from a string without encoding autodetection. # # @param [String] input # @raise [ArgumentError] if already populated # @return [String] # def raw_source=(input) if @source raise ArgumentError, 'Source::Buffer is immutable' end @source = input.gsub("\r\n".freeze, "\n".freeze).freeze if !@source.ascii_only? && @source.encoding != Encoding::UTF_32LE && @source.encoding != Encoding::BINARY @slice_source = @source.encode(Encoding::UTF_32LE) end end def slice(start, length = nil) if length.nil? if start.is_a?(::Range) length = start.size start = start.begin else length = 1 end end if @slice_source.nil? @source[start, length] else @slice_source[start, length].encode(@source.encoding) end end ## # Convert a character index into the source to a `[line, column]` tuple. # # @param [Integer] position # @return [[Integer, Integer]] `[line, column]` # def decompose_position(position) line_index = line_index_for_position(position) line_begin = line_begins[line_index] [ @first_line + line_index , position - line_begin ] end ## # Convert a character index into the source to a line number. # # @param [Integer] position # @return [Integer] line # @api private # def line_for_position(position) line_index_for_position(position) + @first_line end ## # Convert a character index into the source to a column number. # # @param [Integer] position # @return [Integer] column # @api private # def column_for_position(position) line_index = line_index_for_position(position) position - line_begins[line_index] end ## # Return an `Array` of source code lines. # # @return [Array<String>] # def source_lines @lines ||= begin lines = @source.lines.to_a lines << ''.dup if @source.end_with?("\n".freeze) lines.each do |line| line.chomp!("\n".freeze) line.freeze end lines.freeze end end ## # Extract line `lineno` from source, taking `first_line` into account. # # @param [Integer] lineno # @return [String] # @raise [IndexError] if `lineno` is out of bounds # def source_line(lineno) source_lines.fetch(lineno - @first_line).dup end ## # Extract line `lineno` as a new `Range`, taking `first_line` into account. # # @param [Integer] lineno # @return [Range] # @raise [IndexError] if `lineno` is out of bounds # def line_range(lineno) index = lineno - @first_line if index < 0 || index + 1 >= line_begins.size raise IndexError, 'Parser::Source::Buffer: range for line ' \ "#{lineno} requested, valid line numbers are #{@first_line}.." \ "#{@first_line + line_begins.size - 2}" else Range.new(self, line_begins[index], line_begins[index + 1] - 1) end end ## # @return [Range] A range covering the whole source # def source_range @source_range ||= Range.new(self, 0, source.size) end ## # Number of last line in the buffer # # @return [Integer] # def last_line line_begins.size + @first_line - 2 end # :nodoc: def freeze source_lines; line_begins; source_range # build cache super end # :nodoc: def inspect "#<#{self.class} #{name}>" end private # @returns [0, line_begin_of_line_1, ..., source.size + 1] def line_begins @line_begins ||= begin begins = [0] index = 0 while index = @source.index("\n".freeze, index) index += 1 begins << index end begins << @source.size + 1 begins end end # @returns 0-based line index of position def line_index_for_position(position) @line_index_for_position[position] || begin index = bsearch(line_begins, position) - 1 @line_index_for_position[position] = index unless @line_index_for_position.frozen? index end end if Array.method_defined?(:bsearch_index) # RUBY_VERSION >= 2.3 def bsearch(line_begins, position) line_begins.bsearch_index do |line_begin| position < line_begin end || line_begins.size - 1 # || only for out of bound values end else def bsearch(line_begins, position) @line_range ||= 0...line_begins.size @line_range.bsearch do |i| position < line_begins[i] end || line_begins.size - 1 # || only for out of bound values end end end |
#name ⇒ String (readonly)
Buffer name. If the buffer was created from a file, the name corresponds to relative path to the file.
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 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 |
# File 'lib/parser/source/buffer.rb', line 25 class Buffer attr_reader :name, :first_line ## # @api private # ENCODING_RE = /[\s#](en)?coding\s*[:=]\s* ( # Special-case: there's a UTF8-MAC encoding. (utf8-mac) | # Chew the suffix; it's there for emacs compat. ([A-Za-z0-9_-]+?)(-unix|-dos|-mac) | ([A-Za-z0-9_-]+) ) /x ## # Try to recognize encoding of `string` as Ruby would, i.e. by looking for # magic encoding comment or UTF-8 BOM. `string` can be in any encoding. # # @param [String] string # @raise [Parser::UnknownEncodingInMagicComment] if the encoding is not recognized # @return [String, nil] encoding name, if recognized # def self.recognize_encoding(string) return if string.empty? # extract the first two lines in an efficient way string =~ /\A(.*)\n?(.*\n)?/ first_line, second_line = $1, $2 if first_line.start_with?("\xef\xbb\xbf".freeze) # BOM return Encoding::UTF_8 elsif first_line[0, 2] == '#!'.freeze encoding_line = second_line else encoding_line = first_line end return nil if encoding_line.nil? || encoding_line[0] != '#' if (result = ENCODING_RE.match(encoding_line)) begin Encoding.find(result[3] || result[4] || result[6]) rescue ArgumentError => e raise Parser::UnknownEncodingInMagicComment, e. end else nil end end ## # Recognize encoding of `input` and process it so it could be lexed. # # * If `input` does not contain BOM or magic encoding comment, it is # kept in the original encoding. # * If the detected encoding is binary, `input` is kept in binary. # * Otherwise, `input` is re-encoded into UTF-8 and returned as a # new string. # # This method mutates the encoding of `input`, but not its content. # # @param [String] input # @return [String] # @raise [EncodingError] # def self.reencode_string(input) original_encoding = input.encoding detected_encoding = recognize_encoding(input.force_encoding(Encoding::BINARY)) if detected_encoding.nil? input.force_encoding(original_encoding) elsif detected_encoding == Encoding::BINARY input else input. force_encoding(detected_encoding). encode(Encoding::UTF_8) end end def initialize(name, first_line = 1, source: nil) @name = name.to_s @source = nil @first_line = first_line @lines = nil @line_begins = nil # UTF-32-reencoded source for O(1) slicing @slice_source = nil # Cache for fast lookup @line_index_for_position = {} self.source = source if source end ## # Populate this buffer from correspondingly named file. # # @example # Parser::Source::Buffer.new('foo/bar.rb').read # # @return [Buffer] self # @raise [ArgumentError] if already populated # def read File.open(@name, 'rb') do |io| self.source = io.read end self end ## # Source code contained in this buffer. # # @return [String] source code # @raise [RuntimeError] if buffer is not populated yet # def source if @source.nil? raise RuntimeError, 'Cannot extract source from uninitialized Source::Buffer' end @source end ## # Populate this buffer from a string with encoding autodetection. # `input` is mutated if not frozen. # # @param [String] input # @raise [ArgumentError] if already populated # @raise [EncodingError] if `input` includes invalid byte sequence for the encoding # @return [String] # def source=(input) input = input.dup if input.frozen? input = self.class.reencode_string(input) unless input.valid_encoding? raise EncodingError, "invalid byte sequence in #{input.encoding.name}" end self.raw_source = input end ## # Populate this buffer from a string without encoding autodetection. # # @param [String] input # @raise [ArgumentError] if already populated # @return [String] # def raw_source=(input) if @source raise ArgumentError, 'Source::Buffer is immutable' end @source = input.gsub("\r\n".freeze, "\n".freeze).freeze if !@source.ascii_only? && @source.encoding != Encoding::UTF_32LE && @source.encoding != Encoding::BINARY @slice_source = @source.encode(Encoding::UTF_32LE) end end def slice(start, length = nil) if length.nil? if start.is_a?(::Range) length = start.size start = start.begin else length = 1 end end if @slice_source.nil? @source[start, length] else @slice_source[start, length].encode(@source.encoding) end end ## # Convert a character index into the source to a `[line, column]` tuple. # # @param [Integer] position # @return [[Integer, Integer]] `[line, column]` # def decompose_position(position) line_index = line_index_for_position(position) line_begin = line_begins[line_index] [ @first_line + line_index , position - line_begin ] end ## # Convert a character index into the source to a line number. # # @param [Integer] position # @return [Integer] line # @api private # def line_for_position(position) line_index_for_position(position) + @first_line end ## # Convert a character index into the source to a column number. # # @param [Integer] position # @return [Integer] column # @api private # def column_for_position(position) line_index = line_index_for_position(position) position - line_begins[line_index] end ## # Return an `Array` of source code lines. # # @return [Array<String>] # def source_lines @lines ||= begin lines = @source.lines.to_a lines << ''.dup if @source.end_with?("\n".freeze) lines.each do |line| line.chomp!("\n".freeze) line.freeze end lines.freeze end end ## # Extract line `lineno` from source, taking `first_line` into account. # # @param [Integer] lineno # @return [String] # @raise [IndexError] if `lineno` is out of bounds # def source_line(lineno) source_lines.fetch(lineno - @first_line).dup end ## # Extract line `lineno` as a new `Range`, taking `first_line` into account. # # @param [Integer] lineno # @return [Range] # @raise [IndexError] if `lineno` is out of bounds # def line_range(lineno) index = lineno - @first_line if index < 0 || index + 1 >= line_begins.size raise IndexError, 'Parser::Source::Buffer: range for line ' \ "#{lineno} requested, valid line numbers are #{@first_line}.." \ "#{@first_line + line_begins.size - 2}" else Range.new(self, line_begins[index], line_begins[index + 1] - 1) end end ## # @return [Range] A range covering the whole source # def source_range @source_range ||= Range.new(self, 0, source.size) end ## # Number of last line in the buffer # # @return [Integer] # def last_line line_begins.size + @first_line - 2 end # :nodoc: def freeze source_lines; line_begins; source_range # build cache super end # :nodoc: def inspect "#<#{self.class} #{name}>" end private # @returns [0, line_begin_of_line_1, ..., source.size + 1] def line_begins @line_begins ||= begin begins = [0] index = 0 while index = @source.index("\n".freeze, index) index += 1 begins << index end begins << @source.size + 1 begins end end # @returns 0-based line index of position def line_index_for_position(position) @line_index_for_position[position] || begin index = bsearch(line_begins, position) - 1 @line_index_for_position[position] = index unless @line_index_for_position.frozen? index end end if Array.method_defined?(:bsearch_index) # RUBY_VERSION >= 2.3 def bsearch(line_begins, position) line_begins.bsearch_index do |line_begin| position < line_begin end || line_begins.size - 1 # || only for out of bound values end else def bsearch(line_begins, position) @line_range ||= 0...line_begins.size @line_range.bsearch do |i| position < line_begins[i] end || line_begins.size - 1 # || only for out of bound values end end end |
Class Method Details
.recognize_encoding(string) ⇒ String?
Try to recognize encoding of ‘string` as Ruby would, i.e. by looking for magic encoding comment or UTF-8 BOM. `string` can be in any encoding.
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 |
# File 'lib/parser/source/buffer.rb', line 52 def self.recognize_encoding(string) return if string.empty? # extract the first two lines in an efficient way string =~ /\A(.*)\n?(.*\n)?/ first_line, second_line = $1, $2 if first_line.start_with?("\xef\xbb\xbf".freeze) # BOM return Encoding::UTF_8 elsif first_line[0, 2] == '#!'.freeze encoding_line = second_line else encoding_line = first_line end return nil if encoding_line.nil? || encoding_line[0] != '#' if (result = ENCODING_RE.match(encoding_line)) begin Encoding.find(result[3] || result[4] || result[6]) rescue ArgumentError => e raise Parser::UnknownEncodingInMagicComment, e. end else nil end end |
.reencode_string(input) ⇒ String
Recognize encoding of ‘input` and process it so it could be lexed.
* If `input` does not contain BOM or magic encoding comment, it is
kept in the original encoding.
* If the detected encoding is binary, `input` is kept in binary.
* Otherwise, `input` is re-encoded into UTF-8 and returned as a
new string.
This method mutates the encoding of ‘input`, but not its content.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/parser/source/buffer.rb', line 95 def self.reencode_string(input) original_encoding = input.encoding detected_encoding = recognize_encoding(input.force_encoding(Encoding::BINARY)) if detected_encoding.nil? input.force_encoding(original_encoding) elsif detected_encoding == Encoding::BINARY input else input. force_encoding(detected_encoding). encode(Encoding::UTF_8) end end |
Instance Method Details
#column_for_position(position) ⇒ Integer
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Convert a character index into the source to a column number.
247 248 249 250 |
# File 'lib/parser/source/buffer.rb', line 247 def column_for_position(position) line_index = line_index_for_position(position) position - line_begins[line_index] end |
#decompose_position(position) ⇒ [Integer, Integer]
Convert a character index into the source to a ‘[line, column]` tuple.
222 223 224 225 226 227 |
# File 'lib/parser/source/buffer.rb', line 222 def decompose_position(position) line_index = line_index_for_position(position) line_begin = line_begins[line_index] [ @first_line + line_index , position - line_begin ] end |
#freeze ⇒ Object
:nodoc:
317 318 319 320 |
# File 'lib/parser/source/buffer.rb', line 317 def freeze source_lines; line_begins; source_range # build cache super end |
#inspect ⇒ Object
:nodoc:
323 324 325 |
# File 'lib/parser/source/buffer.rb', line 323 def inspect "#<#{self.class} #{name}>" end |
#last_line ⇒ Integer
Number of last line in the buffer
312 313 314 |
# File 'lib/parser/source/buffer.rb', line 312 def last_line line_begins.size + @first_line - 2 end |
#line_for_position(position) ⇒ Integer
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Convert a character index into the source to a line number.
236 237 238 |
# File 'lib/parser/source/buffer.rb', line 236 def line_for_position(position) line_index_for_position(position) + @first_line end |
#line_range(lineno) ⇒ Range
Extract line ‘lineno` as a new `Range`, taking `first_line` into account.
289 290 291 292 293 294 295 296 297 298 |
# File 'lib/parser/source/buffer.rb', line 289 def line_range(lineno) index = lineno - @first_line if index < 0 || index + 1 >= line_begins.size raise IndexError, 'Parser::Source::Buffer: range for line ' \ "#{lineno} requested, valid line numbers are #{@first_line}.." \ "#{@first_line + line_begins.size - 2}" else Range.new(self, line_begins[index], line_begins[index + 1] - 1) end end |
#raw_source=(input) ⇒ String
Populate this buffer from a string without encoding autodetection.
185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/parser/source/buffer.rb', line 185 def raw_source=(input) if @source raise ArgumentError, 'Source::Buffer is immutable' end @source = input.gsub("\r\n".freeze, "\n".freeze).freeze if !@source.ascii_only? && @source.encoding != Encoding::UTF_32LE && @source.encoding != Encoding::BINARY @slice_source = @source.encode(Encoding::UTF_32LE) end end |
#read ⇒ Buffer
Populate this buffer from correspondingly named file.
136 137 138 139 140 141 142 |
# File 'lib/parser/source/buffer.rb', line 136 def read File.open(@name, 'rb') do |io| self.source = io.read end self end |
#slice(start, length = nil) ⇒ Object
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/parser/source/buffer.rb', line 199 def slice(start, length = nil) if length.nil? if start.is_a?(::Range) length = start.size start = start.begin else length = 1 end end if @slice_source.nil? @source[start, length] else @slice_source[start, length].encode(@source.encoding) end end |
#source ⇒ String
Source code contained in this buffer.
150 151 152 153 154 155 156 |
# File 'lib/parser/source/buffer.rb', line 150 def source if @source.nil? raise RuntimeError, 'Cannot extract source from uninitialized Source::Buffer' end @source end |
#source=(input) ⇒ String
Populate this buffer from a string with encoding autodetection. ‘input` is mutated if not frozen.
167 168 169 170 171 172 173 174 175 176 |
# File 'lib/parser/source/buffer.rb', line 167 def source=(input) input = input.dup if input.frozen? input = self.class.reencode_string(input) unless input.valid_encoding? raise EncodingError, "invalid byte sequence in #{input.encoding.name}" end self.raw_source = input end |
#source_line(lineno) ⇒ String
Extract line ‘lineno` from source, taking `first_line` into account.
278 279 280 |
# File 'lib/parser/source/buffer.rb', line 278 def source_line(lineno) source_lines.fetch(lineno - @first_line).dup end |
#source_lines ⇒ Array<String>
Return an ‘Array` of source code lines.
257 258 259 260 261 262 263 264 265 266 267 268 269 |
# File 'lib/parser/source/buffer.rb', line 257 def source_lines @lines ||= begin lines = @source.lines.to_a lines << ''.dup if @source.end_with?("\n".freeze) lines.each do |line| line.chomp!("\n".freeze) line.freeze end lines.freeze end end |