Class: Racc::Grammar

Inherits:
Object show all
Extended by:
Forwardable
Defined in:
lib/racc/grammar.rb

Defined Under Namespace

Classes: DefinitionEnv, PrecedenceDefinitionEnv

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(debug_flags = DebugFlags.new) ⇒ Grammar

Returns a new instance of Grammar.



24
25
26
27
28
29
30
31
32
33
34
# File 'lib/racc/grammar.rb', line 24

def initialize(debug_flags = DebugFlags.new)
  @symboltable = SymbolTable.new
  @debug_symbol = debug_flags.token
  @rules   = []  # :: [Rule]
  @start   = nil
  @n_expected_srconflicts = nil
  @prec_table = []
  @prec_table_closed = false
  @closed = false
  @states = nil
end

Instance Attribute Details

#n_expected_srconflictsObject

Returns the value of attribute n_expected_srconflicts.



38
39
40
# File 'lib/racc/grammar.rb', line 38

def n_expected_srconflicts
  @n_expected_srconflicts
end

#startObject (readonly)

Returns the value of attribute start.



36
37
38
# File 'lib/racc/grammar.rb', line 36

def start
  @start
end

#symboltableObject (readonly)

Returns the value of attribute symboltable.



37
38
39
# File 'lib/racc/grammar.rb', line 37

def symboltable
  @symboltable
end

Class Method Details

.define(&block) ⇒ Object

Dynamic Generation Interface



201
202
203
204
205
# File 'lib/racc/grammar.rb', line 201

def Grammar.define(&block)
  env = DefinitionEnv.new
  env.instance_eval(&block)
  env.grammar
end

Instance Method Details

#[](x) ⇒ Object



40
41
42
# File 'lib/racc/grammar.rb', line 40

def [](x)
  @rules[x]
end

#add(rule) ⇒ Object

Grammar Definition Interface

Raises:

  • (ArgumentError)


166
167
168
169
# File 'lib/racc/grammar.rb', line 166

def add(rule)
  raise ArgumentError, "rule added after the Grammar closed" if @closed
  @rules.push rule
end

#added?(sym) ⇒ Boolean

Returns:

  • (Boolean)


171
172
173
# File 'lib/racc/grammar.rb', line 171

def added?(sym)
  @rules.detect {|r| r.target == sym }
end

#declare_precedence(assoc, syms) ⇒ Object

Raises:



180
181
182
183
# File 'lib/racc/grammar.rb', line 180

def declare_precedence(assoc, syms)
  raise CompileError, "precedence table defined twice" if @prec_table_closed
  @prec_table.push [assoc, syms]
end

#dfaObject Also known as: states



120
121
122
# File 'lib/racc/grammar.rb', line 120

def dfa
  (@states ||= States.new(self)).dfa
end

#each_index(&block) ⇒ Object



50
51
52
# File 'lib/racc/grammar.rb', line 50

def each_index(&block)
  @rules.each_index(&block)
end

#each_rule(&block) ⇒ Object Also known as: each



44
45
46
# File 'lib/racc/grammar.rb', line 44

def each_rule(&block)
  @rules.each(&block)
end

#each_useless_nonterminalObject



92
93
94
95
96
97
98
# File 'lib/racc/grammar.rb', line 92

def each_useless_nonterminal
  return to_enum __method__ unless block_given?

  @symboltable.each_nonterminal do |sym|
    yield sym if sym.useless?
  end
end

#each_useless_ruleObject



108
109
110
111
112
113
114
# File 'lib/racc/grammar.rb', line 108

def each_useless_rule
  return to_enum __method__ unless block_given?

  each do |r|
    yield r if r.useless?
  end
end

#each_with_index(&block) ⇒ Object



54
55
56
# File 'lib/racc/grammar.rb', line 54

def each_with_index(&block)
  @rules.each_with_index(&block)
end

#end_precedence_declaration(reverse) ⇒ Object



185
186
187
188
189
190
191
192
193
194
195
# File 'lib/racc/grammar.rb', line 185

def end_precedence_declaration(reverse)
  @prec_table_closed = true
  return if @prec_table.empty?
  table = reverse ? @prec_table.reverse : @prec_table
  table.each_with_index do |(assoc, syms), idx|
    syms.each do |sym|
      sym.assoc = assoc
      sym.precedence = idx
    end
  end
end

#initObject

Computation

Raises:



409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
# File 'lib/racc/grammar.rb', line 409

def init
  return if @closed
  @closed = true
  @start ||= @rules.map {|r| r.target }.detect {|sym| not sym.dummy? }
  raise CompileError, 'no rule in input' if @rules.empty?
  add_start_rule
  @rules.freeze
  fix_ident
  compute_hash
  compute_heads
  determine_terminals
  compute_nullable_0
  @symboltable.fix
  compute_locate
  @symboltable.each_nonterminal {|t| compute_expand t }
  compute_nullable
  compute_useless
end

#intern(value, dummy = false) ⇒ Object



72
73
74
# File 'lib/racc/grammar.rb', line 72

def intern(value, dummy = false)
  @symboltable.intern(value, dummy)
end

#n_useless_nonterminalsObject



88
89
90
# File 'lib/racc/grammar.rb', line 88

def n_useless_nonterminals
  @n_useless_nonterminals ||= each_useless_nonterminal.count
end

#n_useless_rulesObject



104
105
106
# File 'lib/racc/grammar.rb', line 104

def n_useless_rules
  @n_useless_rules ||= each_useless_rule.count
end

#nfaObject



116
117
118
# File 'lib/racc/grammar.rb', line 116

def nfa
  (@states ||= States.new(self)).nfa
end

#nonterminal_baseObject



80
81
82
# File 'lib/racc/grammar.rb', line 80

def nonterminal_base
  @symboltable.nt_base
end

#parser_classObject



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
# File 'lib/racc/grammar.rb', line 130

def parser_class
  states = states()   # cache
  if $DEBUG
    srcfilename = caller(1).first.slice(/\A(.*?):/, 1)
    begin
      write_log srcfilename + ".output"
    rescue SystemCallError
    end
    report = lambda {|s| $stderr.puts "racc: #{srcfilename}: #{s}" }
    if states.should_report_srconflict?
      report["#{states.n_srconflicts} shift/reduce conflicts"]
    end
    if states.rrconflict_exist?
      report["#{states.n_rrconflicts} reduce/reduce conflicts"]
    end
    g = states.grammar
    if g.useless_nonterminal_exist?
      report["#{g.n_useless_nonterminals} useless nonterminals"]
    end
    if g.useless_rule_exist?
      report["#{g.n_useless_rules} useless rules"]
    end
  end
  states.state_transition_table.parser_class
end

#sizeObject



58
59
60
# File 'lib/racc/grammar.rb', line 58

def size
  @rules.size
end

#start_symbol=(s) ⇒ Object

Raises:



175
176
177
178
# File 'lib/racc/grammar.rb', line 175

def start_symbol=(s)
  raise CompileError, "start symbol set twice'" if @start
  @start = s
end

#state_transition_tableObject



126
127
128
# File 'lib/racc/grammar.rb', line 126

def state_transition_table
  states().state_transition_table
end

#symbolsObject



76
77
78
# File 'lib/racc/grammar.rb', line 76

def symbols
  @symboltable.symbols
end

#to_sObject



62
63
64
# File 'lib/racc/grammar.rb', line 62

def to_s
  "<Racc::Grammar>"
end

#useless_nonterminal_exist?Boolean

Returns:

  • (Boolean)


84
85
86
# File 'lib/racc/grammar.rb', line 84

def useless_nonterminal_exist?
  n_useless_nonterminals() != 0
end

#useless_rule_exist?Boolean

Returns:

  • (Boolean)


100
101
102
# File 'lib/racc/grammar.rb', line 100

def useless_rule_exist?
  n_useless_rules() != 0
end

#write_log(path) ⇒ Object



156
157
158
159
160
# File 'lib/racc/grammar.rb', line 156

def write_log(path)
  File.open(path, 'w') {|f|
    LogFileGenerator.new(states()).output f
  }
end