Class: Stupidedi::Builder::BuilderDsl
- Inherits:
-
Object
- Object
- Stupidedi::Builder::BuilderDsl
show all
- Includes:
- Tokenization, Inspect
- Defined in:
- lib/stupidedi/builder/builder_dsl.rb
Constant Summary
Instance Attribute Summary (collapse)
Instance Method Summary
(collapse)
#blank, #composite, #default, #not_used, #repeated
Methods included from Inspect
#inspect
Constructor Details
- (BuilderDsl) initialize(machine, strict = true)
A new instance of BuilderDsl
20
21
22
23
24
25
|
# File 'lib/stupidedi/builder/builder_dsl.rb', line 20
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)
91
92
93
94
95
96
97
|
# File 'lib/stupidedi/builder/builder_dsl.rb', line 91
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
12
13
14
|
# File 'lib/stupidedi/builder/builder_dsl.rb', line 12
def machine
@machine
end
|
- (Boolean) strict=(value)
15
16
17
|
# File 'lib/stupidedi/builder/builder_dsl.rb', line 15
def strict=(value)
@strict = value
end
|
Class Method Details
+ (BuilderDsl) build(config, strict = true)
247
248
249
|
# File 'lib/stupidedi/builder/builder_dsl.rb', line 247
def build(config, strict = true)
new(StateMachine.build(config), strict)
end
|
Instance Method Details
- (BuilderDsl) segment!(name, position, *elements)
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
|
# File 'lib/stupidedi/builder/builder_dsl.rb', line 32
def segment!(name, position, *elements)
segment_tok = mksegment_tok(@reader.segment_dict, name, elements, position)
machine, reader = @machine.insert(segment_tok, @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
|
- (Boolean) strict?
27
28
29
|
# File 'lib/stupidedi/builder/builder_dsl.rb', line 27
def strict?
@strict
end
|