Class: GherkinRuby::Parser

Inherits:
Racc::Parser
  • Object
show all
Defined in:
lib/gherkin_ruby/parser/lexer.rb,
lib/gherkin_ruby/parser/parser.rb

Overview

Compile with: rex gherkin.rex -o lexer.rb

Defined Under Namespace

Classes: ScanError

Constant Summary collapse

Racc_arg =
[
racc_action_table,
racc_action_check,
racc_action_default,
racc_action_pointer,
racc_goto_table,
racc_goto_check,
racc_goto_default,
racc_goto_pointer,
racc_nt_base,
racc_reduce_table,
racc_token_table,
racc_shift_n,
racc_reduce_n,
racc_use_result_var ]
Racc_token_to_s_table =
[
"$end",
"error",
"NEWLINE",
"FEATURE",
"BACKGROUND",
"SCENARIO",
"TAG",
"GIVEN",
"WHEN",
"THEN",
"AND",
"BUT",
"TEXT",
"$start",
"Root",
"Feature",
"Scenarios",
"FeatureTags",
"Newline",
"Tags",
"FeatureHeader",
"Background",
"FeatureName",
"Description",
"BackgroundHeader",
"Steps",
"Step",
"Keyword",
"Scenario" ]
Racc_debug_parser =
false

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#filenameObject (readonly)

Returns the value of attribute filename.



16
17
18
# File 'lib/gherkin_ruby/parser/lexer.rb', line 16

def filename
  @filename
end

#linenoObject (readonly)

Returns the value of attribute lineno.



15
16
17
# File 'lib/gherkin_ruby/parser/lexer.rb', line 15

def lineno
  @lineno
end

#stateObject

Returns the value of attribute state.



17
18
19
# File 'lib/gherkin_ruby/parser/lexer.rb', line 17

def state
  @state
end

Instance Method Details

#_next_tokenObject



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
# File 'lib/gherkin_ruby/parser/lexer.rb', line 56

def _next_token
  text = @ss.peek(1)
  @lineno  +=  1  if text == "\n"
  token = case @state
  when nil
    case
    when (text = @ss.scan(/[ \t]+/))
      ;

    when (text = @ss.scan(/\#.*$/))
      ;

    when (text = @ss.scan(/\n/))
       action { [:NEWLINE, text] }

    when (text = @ss.scan(/Feature:/))
       action { [:FEATURE, text[0..-2]] }

    when (text = @ss.scan(/Background:/))
       action { [:BACKGROUND, text[0..-2]] }

    when (text = @ss.scan(/Scenario:/))
       action { [:SCENARIO, text[0..-2]] }

    when (text = @ss.scan(/@(\w|-)+/))
       action { [:TAG, text[1..-1]] }

    when (text = @ss.scan(/Given/))
       action { [:GIVEN, text] }

    when (text = @ss.scan(/When/))
       action { [:WHEN, text] }

    when (text = @ss.scan(/Then/))
       action { [:THEN, text] }

    when (text = @ss.scan(/And/))
       action { [:AND, text] }

    when (text = @ss.scan(/But/))
       action { [:BUT, text] }

    when (text = @ss.scan(/[^#\n]*/))
       action { [:TEXT, text.strip] }

    else
      text = @ss.string[@ss.pos .. -1]
      raise  ScanError, "can not match: '" + text + "'"
    end  # if

  else
    raise  ScanError, "undefined state: '" + state.to_s + "'"
  end  # case state
  token
end

#_reduce_none(val, _values, result) ⇒ Object



398
399
400
# File 'lib/gherkin_ruby/parser/parser.rb', line 398

def _reduce_none(val, _values, result)
  val[0]
end

#actionObject



25
26
27
# File 'lib/gherkin_ruby/parser/lexer.rb', line 25

def action
  yield
end

#load_file(filename) ⇒ Object



35
36
37
38
39
40
# File 'lib/gherkin_ruby/parser/lexer.rb', line 35

def load_file( filename )
  @filename = filename
  open(filename, "r") do |f|
    scan_setup(f.read)
  end
end

#next_tokenObject



48
49
50
51
52
53
54
# File 'lib/gherkin_ruby/parser/lexer.rb', line 48

def next_token
  return if @ss.eos?
  
  # skips empty actions
  until token = _next_token or @ss.eos?; end
  token
end

#scan_file(filename) ⇒ Object



42
43
44
45
# File 'lib/gherkin_ruby/parser/lexer.rb', line 42

def scan_file( filename )
  load_file(filename)
  do_parse
end

#scan_setup(str) ⇒ Object



19
20
21
22
23
# File 'lib/gherkin_ruby/parser/lexer.rb', line 19

def scan_setup(str)
  @ss = StringScanner.new(str)
  @lineno =  1
  @state  = nil
end

#scan_str(str) ⇒ Object Also known as: scan



29
30
31
32
# File 'lib/gherkin_ruby/parser/lexer.rb', line 29

def scan_str(str)
  scan_setup(str)
  do_parse
end

#tokenize(code) ⇒ Object

def _next_token



112
113
114
115
116
117
118
119
# File 'lib/gherkin_ruby/parser/lexer.rb', line 112

def tokenize(code)
  scan_setup(code)
  tokens = []
  while token = next_token
    tokens << token
  end
  tokens
end