Class: Journey::GTG::TransitionTable
- Inherits:
-
Object
- Object
- Journey::GTG::TransitionTable
- Includes:
- NFA::Dot
- Defined in:
- lib/journey/gtg/transition_table.rb
Instance Attribute Summary collapse
-
#memos ⇒ Object
readonly
Returns the value of attribute memos.
Instance Method Summary collapse
- #[]=(from, to, sym) ⇒ Object
- #accepting?(state) ⇒ Boolean
- #accepting_states ⇒ Object
- #add_accepting(state) ⇒ Object
- #add_memo(idx, memo) ⇒ Object
- #eclosure(t) ⇒ Object
-
#initialize ⇒ TransitionTable
constructor
A new instance of TransitionTable.
- #memo(idx) ⇒ Object
- #move(t, a) ⇒ Object
- #states ⇒ Object
- #to_json ⇒ Object
- #to_svg ⇒ Object
- #transitions ⇒ Object
- #visualizer(paths, title = 'FSM') ⇒ Object
Methods included from NFA::Dot
Constructor Details
#initialize ⇒ TransitionTable
Returns a new instance of TransitionTable.
10 11 12 13 14 15 |
# File 'lib/journey/gtg/transition_table.rb', line 10 def initialize @regexp_states = Hash.new { |h,k| h[k] = {} } @string_states = Hash.new { |h,k| h[k] = {} } @accepting = {} @memos = Hash.new { |h,k| h[k] = [] } end |
Instance Attribute Details
#memos ⇒ Object (readonly)
Returns the value of attribute memos.
8 9 10 |
# File 'lib/journey/gtg/transition_table.rb', line 8 def memos @memos end |
Instance Method Details
#[]=(from, to, sym) ⇒ Object
115 116 117 118 119 120 121 122 123 124 |
# File 'lib/journey/gtg/transition_table.rb', line 115 def []= from, to, sym case sym when String @string_states[from][sym] = to when Regexp @regexp_states[from][sym] = to else raise ArgumentError, 'unknown symbol: %s' % sym.class end end |
#accepting?(state) ⇒ Boolean
25 26 27 |
# File 'lib/journey/gtg/transition_table.rb', line 25 def accepting? state @accepting[state] end |
#accepting_states ⇒ Object
21 22 23 |
# File 'lib/journey/gtg/transition_table.rb', line 21 def accepting_states @accepting.keys end |
#add_accepting(state) ⇒ Object
17 18 19 |
# File 'lib/journey/gtg/transition_table.rb', line 17 def add_accepting state @accepting[state] = true end |
#add_memo(idx, memo) ⇒ Object
29 30 31 |
# File 'lib/journey/gtg/transition_table.rb', line 29 def add_memo idx, memo @memos[idx] << memo end |
#eclosure(t) ⇒ Object
37 38 39 |
# File 'lib/journey/gtg/transition_table.rb', line 37 def eclosure t Array(t) end |
#memo(idx) ⇒ Object
33 34 35 |
# File 'lib/journey/gtg/transition_table.rb', line 33 def memo idx @memos[idx] end |
#move(t, a) ⇒ Object
41 42 43 44 |
# File 'lib/journey/gtg/transition_table.rb', line 41 def move t, a t = Array(t) move_string(t, a) + move_regexp(t, a) end |
#states ⇒ Object
126 127 128 129 130 |
# File 'lib/journey/gtg/transition_table.rb', line 126 def states ss = @string_states.keys + @string_states.values.map(&:values).flatten rs = @regexp_states.keys + @regexp_states.values.map(&:values).flatten (ss + rs).uniq end |
#to_json ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/journey/gtg/transition_table.rb', line 46 def to_json require 'json' simple_regexp = Hash.new { |h,k| h[k] = {} } @regexp_states.each do |from, hash| hash.each do |re, to| simple_regexp[from][re.source] = to end end JSON.dump({ :regexp_states => simple_regexp, :string_states => @string_states, :accepting => @accepting }) end |
#to_svg ⇒ Object
64 65 66 67 68 69 70 71 72 |
# File 'lib/journey/gtg/transition_table.rb', line 64 def to_svg svg = IO.popen("dot -Tsvg", 'w+') { |f| f.write to_dot f.close_write f.readlines } 3.times { svg.shift } svg.join.sub(/width="[^"]*"/, '').sub(/height="[^"]*"/, '') end |
#transitions ⇒ Object
132 133 134 135 136 137 138 |
# File 'lib/journey/gtg/transition_table.rb', line 132 def transitions @string_states.map { |from, hash| hash.map { |s, to| [from, s, to] } }.flatten(1) + @regexp_states.map { |from, hash| hash.map { |s, to| [from, s, to] } }.flatten(1) end |
#visualizer(paths, title = 'FSM') ⇒ Object
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 111 112 113 |
# File 'lib/journey/gtg/transition_table.rb', line 74 def visualizer paths, title = 'FSM' viz_dir = File.join File.dirname(__FILE__), '..', 'visualizer' fsm_js = File.read File.join(viz_dir, 'fsm.js') d3_js = File.read File.join(viz_dir, 'd3.min.js') reset_css = File.read File.join(viz_dir, 'reset.css') fsm_css = File.read File.join(viz_dir, 'fsm.css') erb = File.read File.join(viz_dir, 'index.html.erb') states = "function tt() { return #{to_json}; }" fun_routes = paths.shuffle.first(3).map do |ast| ast.map { |n| case n when Nodes::Symbol case n.left when ':id' then rand(100).to_s when ':format' then %w{ xml json }.shuffle.first else 'omg' end when Nodes::Terminal then n.symbol else nil end }.compact.join end stylesheets = [reset_css, fsm_css] svg = to_svg javascripts = [d3_js, states, fsm_js] # Annoying hack for 1.9 warnings fun_routes = fun_routes stylesheets = stylesheets svg = svg javascripts = javascripts require 'erb' template = ERB.new erb template.result(binding) end |