Sha256: e4b66d57a18e004cb68eccc4ad9364407178efceaf2584d2bca617e065f29eee

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 KB

Contents

# frozen_string_literal: true

require 'stringio'
require_relative 'token'
require_relative 'gherkin_line'

module Gherkin
  # The scanner reads a gherkin doc (typically read from a .feature file) and
  # creates a token for line. The tokens are passed to the parser, which outputs
  # an AST (Abstract Syntax Tree).
  #
  # If the scanner sees a # language header, it will reconfigure itself dynamically
  # to look for Gherkin keywords for the associated language. The keywords are defined
  # in gherkin-languages.json.
  class TokenScanner
    def initialize(source_or_io)
      @line_number = 0

      case source_or_io
      when String
        @io = StringIO.new(source_or_io)
      when StringIO, IO
        @io = source_or_io
      else
        fail ArgumentError, "Please a pass String, StringIO or IO. I got a #{source_or_io.class}"
      end
    end

    def read
      location = { line: @line_number += 1 }
      if @io.nil?
        Token.new(nil, location)
      elsif (line = @io.gets)
        gherkin_line = GherkinLine.new(line, location[:line])
        Token.new(gherkin_line, location)
      else
        @io.close unless @io.closed? # ARGF closes the last file after final gets
        @io = nil
        Token.new(nil, location)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cucumber-gherkin-30.0.4 lib/gherkin/token_scanner.rb
cucumber-gherkin-30.0.3 lib/gherkin/token_scanner.rb
cucumber-gherkin-30.0.2 lib/gherkin/token_scanner.rb
cucumber-gherkin-30.0.1 lib/gherkin/token_scanner.rb