Class: Stupidedi::Parser::BuilderDsl
- Inherits:
-
Object
- Object
- Stupidedi::Parser::BuilderDsl
show all
- Includes:
- Inspect, Tokenization
- Defined in:
- lib/stupidedi/parser/builder_dsl.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
#blank, #composite, #default, #not_used, #repeated
Methods included from Inspect
#inspect
Constructor Details
#initialize(machine, strict = true) ⇒ BuilderDsl
Returns a new instance of BuilderDsl.
24
25
26
27
28
29
|
# File 'lib/stupidedi/parser/builder_dsl.rb', line 24
def initialize(machine, strict = true)
@machine = machine
@strict = strict
@reader = DslReader.new(Reader::Separators.empty,
Reader::SegmentDict.empty)
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args)
101
102
103
104
105
106
107
|
# File 'lib/stupidedi/parser/builder_dsl.rb', line 101
def method_missing(name, *args)
if SEGMENT_ID =~ name.to_s
segment!(name, Reader::Position.caller(2), *args)
else
super
end
end
|
Instance Attribute Details
14
15
16
|
# File 'lib/stupidedi/parser/builder_dsl.rb', line 14
def machine
@machine
end
|
#reader ⇒ DslReader
20
21
22
|
# File 'lib/stupidedi/parser/builder_dsl.rb', line 20
def reader
@reader
end
|
#strict=(value) ⇒ Boolean
17
18
19
|
# File 'lib/stupidedi/parser/builder_dsl.rb', line 17
def strict=(value)
@strict = value
end
|
Class Method Details
.build(config, strict = true) ⇒ BuilderDsl
260
261
262
|
# File 'lib/stupidedi/parser/builder_dsl.rb', line 260
def build(config, strict = true)
new(StateMachine.build(config), strict)
end
|
Instance Method Details
#respond_to_missing?(name, include_private = false) ⇒ Boolean
31
32
33
|
# File 'lib/stupidedi/parser/builder_dsl.rb', line 31
def respond_to_missing?(name, include_private = false)
SEGMENT_ID =~ name.to_s || super
end
|
#segment!(name, position, *elements) ⇒ BuilderDsl
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
|
# File 'lib/stupidedi/parser/builder_dsl.rb', line 40
def segment!(name, position, *elements)
segment_tok = mksegment_tok(@reader.segment_dict, name, elements, position)
machine, reader = @machine.insert(segment_tok, @strict, @reader)
if @strict
unless machine.deterministic?
matches = machine.active.map do |m|
segment_def = m.node.zipper.node.definition
"#{segment_def.id} #{segment_def.name}"
end.join(", ")
raise Exceptions::ParseError,
"non-deterministic machine state: #{matches}"
end
machine.active.each{|m| critique(m.node.zipper) }
machine.prev.tap do |prev|
prev.active.zip(machine.active) do |p, q|
qancestors = Set.new
q = q.node.zipper
p = p.node.zipper
while q.respond_to?(:parent)
qancestors << q.parent
q = q.parent
end
while p.respond_to?(:parent)
break if qancestors.include?(p)
critique(p)
p = p.parent
end
end
end
end
@machine = machine
@reader = reader
self
end
|
#strict? ⇒ Boolean
35
36
37
|
# File 'lib/stupidedi/parser/builder_dsl.rb', line 35
def strict?
@strict
end
|