Class: Emfrp::Interpreter::CommandManager

Inherits:
Object
  • Object
show all
Defined in:
lib/emfrp/interpreter/command_manager.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(interpreter, &proc) ⇒ CommandManager

Returns a new instance of CommandManager.



6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/emfrp/interpreter/command_manager.rb', line 6

def initialize(interpreter, &proc)
  @interpreter = interpreter
  @command_names = []
  @command_tbl = {}
  @command_desc_tbl = {}
  @command_usage_tbl = {}
  @command_example_tbl = {}
  @command_desc_buf = []
  @command_usage_buf = []
  @command_example_buf = []
  instance_exec(&proc)
end

Class Method Details

.make(interpreter) ⇒ Object



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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
# File 'lib/emfrp/interpreter/command_manager.rb', line 82

def self.make(interpreter)
  CommandManager.new(interpreter) do

    desc "Showing object type by specifying it's name."
    example "data x = 1"
    example ":t x"
    command "t" do |arg|
      name = arg.strip
      if f = @top[:dict][:func_space][name]
        puts "func #{name} : " + f.get[:params].map{|x| x[:typing].inspect}.join(", ") +
        " -> " + f.get[:typing].inspect
      end
      if d = @top[:dict][:data_space][name]
        puts "data #{name} : " + d.get[:typing].inspect
      end
      if t = @top[:dict][:type_space][name]
        case t.get
        when TypeDef
          puts "Type #{name} : " + t.get[:tvalues][0][:typing].inspect
        when PrimTypeDef
          puts "PrimType #{name} : " + name
        end
      end
      if c = @top[:dict][:const_space][name]
        puts "constructor #{name} : " + c.get[:params].map{|x| x[:typing].inspect}.join(", ") +
        " -> " + c.get[:typing].inspect
      end
      if n = @top[:dict][:node_space][name]
        puts "node #{name} : " + n.get[:typing].inspect
      end
      next nil
    end

    desc "Showing internal AST by specifying element's name."
    command "ast" do |arg|
      name = arg.strip
      if f = @top[:dict][:func_space][name]
        pp f.get
      elsif d = @top[:dict][:data_space][name]
        pp d.get
      elsif t = @top[:dict][:type_space][name]
        pp t.get
      elsif c = @top[:dict][:const_space][name]
        pp c.get
      elsif n = @top[:dict][:node_space][name]
        pp n.get
      elsif name == "top"
        pp @top
      elsif name == "ifuncs"
        pp @top[:dict][:ifuncs_space].keys
      elsif name == "itypes"
        pp @top[:dict][:itypes_space].keys
      else
        puts "Error: `#{name}' is not found"
        next :target_not_found
      end
      next nil
    end

    desc "Testing two expression's equality."
    usage ":assert-equals <expected-exp>, <testing-exp>"
    command "assert-equals" do |arg, c, rid|
      if exp = str_to_exp("Pair(#{arg})")
        val1 = Evaluater.eval_exp(@top, exp[:args][0])
        val2 = Evaluater.eval_exp(@top, exp[:args][1])
        if val1 == val2
          nil
        else
          puts "Assertion failed".colorize(:red)
          puts "Description: #{arg}"
          puts "Type: #{exp[:args][0][:typing].inspect.colorize(:green)}"
          puts "Expected: #{Evaluater.value_to_s(val1)}"
          puts "Actual:   #{Evaluater.value_to_s(val2)}"
          :assertion_error
        end
      else
        :command_format_error
      end
    end

    desc "Executing all commands embedded on source-files."
    command "exec-embedded-commands" do
      exec_embedded_commands()
    end

    desc "Define documentation about function. (in preparation)"
    command "set-func-doc" do |arg|
      nil
    end

    desc "Testing node as function."
    usage ":assert-node <node-name> <input-exp>* => <expected-output-exp>"
    example ":assert-node mynode 1, 2 => 3"
    command "assert-node" do |arg|
      if arg =~ /^\s*([a-z][a-zA-Z0-9]*)\s+(.*)=>(.*)$/
        n = @top[:dict][:node_space][$1]
        if n && n.get.is_a?(NodeDef)
          node_def = n.get
          types = ["Unit", "Unit"] + node_def[:params].map{|x| x[:typing].to_uniq_str}
          exp_str = ($2.strip == "" ? "(Unit, Unit)" : "(Unit, Unit, #{$2.strip})")
          if a_exp = str_to_exp(exp_str, "(#{types.join(", ")})")
            v1 = Evaluater.eval_node_as_func(@top, node_def, a_exp[:args].drop(2))
            if $3.strip == "skip"
              v2 = :skip
            elsif r_exp = str_to_exp($3.strip, "#{node_def[:typing].to_uniq_str}")
              v2 = Evaluater.eval_exp(@top, r_exp)
            else
              puts "Error: invalid expected-return-expression"
              next :assert_node_error1
            end
            if v1 == v2
              next nil
            else
              puts "Node Assertion failed".colorize(:red)
              puts "Description: #{arg}"
              puts "Expected: #{Evaluater.value_to_s(v2)}"
              puts "Actual:   #{Evaluater.value_to_s(v1)}"
              next :assertion_error
            end
          else
            puts "Error: invalid node-argument-expression"
            next :assert_node_error2
          end
        else
          puts "Error: invalid node name #{$1}"
          next :assert_node_error3
        end
      else
        next :command_format_error
      end
    end

    desc "Testing whole-module by feeding inputs."
    usage ":assert-module <input-exp>* => <expected-ouput-exp>*"
    example ":assert-module 1, 2 => 2, 4"
    command "assert-module" do |arg|
      if arg =~ /^(.*)=>(.*)$/
        input_types = ["Unit", "Unit"] + @top[:inputs].map{|x| x[:typing].to_uniq_str}
        exp_str = ($1.strip == "" ? "(Unit, Unit)" : "(Unit, Unit, #{$1.strip})")
        input_exps = str_to_exp(exp_str, "(#{input_types.join(", ")})")
        output_types = @top[:outputs].map{|x| x[:typing].to_uniq_str}
        output_exps = str_to_exp("(Unit, #{$2})", "(Unit, #{output_types.join(", ")})")
        if input_exps == nil || output_exps == nil
          puts "Error: invalid expression"
          next :assert_module_error1
        end
        # evaluate
        last_state = @current_state ? @current_state.clone : nil
        @current_state = {}
        @node_replacement ||= {}
        output_vals = Evaluater.eval_module(@top, input_exps[:args].drop(2),
          @current_state, last_state, @node_replacement)
        expected_output_vals = output_exps[:args].drop(1).map{|x| Evaluater.eval_exp(@top, x)}
        # assert
        if expected_output_vals != output_vals
          puts "Module Assertion failed".colorize(:red)
          puts "Description: #{arg}"
          puts "Expected: #{expected_output_vals.map{|x| Evaluater.value_to_s(x)}.join(", ")}"
          puts "Actual:   #{output_vals.map{|x| Evaluater.value_to_s(x)}.join(", ")}"
          :assertion_error
        else
          nil
        end
      else
        :command_format_error
      end
    end

    desc "Testing expression's type."
    usage ":assert-type: <exp> => <type>"
    command "assert-type" do |arg|
      if arg =~ /^(.*)=>(.*)$/
        if exp = str_to_exp($1.strip)
          if exp[:typing].to_uniq_str == $2.strip
            next nil
          else
            puts "Type Assertion failed".colorize(:red)
            puts "Description: #{$1.strip}"
            puts "Expected: #{$2.strip}"
            puts "Actual:   #{exp[:typing].to_uniq_str}"
            next :assertion_error
          end
        end
      end
      next :command_format_error
    end

    desc "Testing that specified command finishes with specified error-code"
    usage ":assert-error <expected-error-code> => <testing-command>"
    example ":assert-error assertion_error => :assert-type 1 => Double"
    command "assert-error" do |arg|
      if arg =~ /^\s*([a-z][a-zA-Z0-9_]*)\s*=>\s*(.*)$/
        expected_error_code = $1
        res = disable_io{ process_repl_line($2) }
        if res.to_s == expected_error_code
          next nil
        else
          puts "Error-Assertion error"
          puts "Expected error-code: #{expected_error_code}"
          puts "Actual error-code: #{res}"
          next :assertion_error
        end
      else
        next :command_format_error
      end
    end

    desc "Replace one node to another like Stab."
    desc "currently, this is only for testing (command-line assertion)."
    usage ":replace-node <replaced-node-name> => <alternative-node-name>"
    command "replace-node" do |arg|
      if arg =~ /^\s*([a-z][a-zA-Z0-9]*)\s*=>\s*([a-z][a-zA-Z0-9]*)\s*$/
        real_n_ln, dummy_n_ln = @top[:dict][:node_space][$1], @top[:dict][:node_space][$2]
        unless real_n_ln
          puts "Error: Node `#{$1}' is undefined"
          next :replace_node_err1
        end
        unless dummy_n_ln
          puts "Error: Node `#{$2}' is undefined"
          next :replace_node_err2
        end
        unless real_n_ln.get[:typing].to_uniq_str == dummy_n_ln.get[:typing].to_uniq_str
          puts "Error: Types of Real-Node `#{$1}' and Dummy-Node `#{$2}' are different"
          puts "#{$1} : #{real_n_ln.get[:typing].to_uniq_str}"
          puts "#{$2} : #{dummy_n_ln.get[:typing].to_uniq_str}"
          next :replace_node_err3
        end
        collect_deps = proc do |node|
          if node.is_a?(NodeDef)
            [node] + node[:params].reject{|x| x[:last]}.map{|p|
              collect_deps.call(@top[:dict][:node_space][p[:name][:desc]].get)
            }.flatten
          else
            [node]
          end
        end
        c1 = collect_deps.call(dummy_n_ln.get).find{|x| x[:name] == real_n_ln.get[:name]}
        c2 = collect_deps.call(real_n_ln.get).find{|x| x[:name] == dummy_n_ln.get[:name]}
        unless c1 == nil && c2 == nil
          puts "Error: Real-Node `#{$1}' and Dummy-Node `#{$2}' are on depending relation"
          next :replace_node_err4
        end
        if real_n_ln.get[:init_exp] && !dummy_n_ln.get[:init_exp]
          puts "Error: Dummy-Node `#{$2}' should have init-exp"
          next :replace_node_err5
        end
        @node_replacement ||= {}
        @node_replacement[$1] = dummy_n_ln.get
        next nil
      else
        next :command_format_error
      end
    end

    desc "Compiling module-file into c-program code."
    desc "Target file-name is currently fixed..."
    desc "(module-name is used and files are dumped on current-dir)"
    usage ":compile"
    command "compile" do
      next compile_default()
    end

    desc "Compiling module-file into graphviz-source code (.dot file)."
    desc "If file-name is given as a command-argument, the code is output to it."
    desc "Otherwise, the code is output on console."
    example ":compile-dot graph.dot"
    command "compile-dot" do |arg|
      if arg.strip != ""
        File.open(arg, "w") do |f|
          Graphviz.compile(@top, f)
        end
      else
        Graphviz.compile(@top, @output_io)
      end
    end

    desc "Showing usage of all commands."
    command "commands" do
      @command_manager.print_all_usages(@output_io)
    end

  end
end

Instance Method Details

#command(*names, &proc) ⇒ Object



19
20
21
22
23
24
25
26
27
28
# File 'lib/emfrp/interpreter/command_manager.rb', line 19

def command(*names, &proc)
  names.each do |name|
    @command_names << ":" + name
    @command_tbl[name] = proc
    @command_desc_tbl[name] = @command_desc_buf
    @command_usage_tbl[name] = @command_usage_buf
    @command_example_tbl[name] = @command_example_buf
    @command_desc_buf, @command_usage_buf, @command_example_buf = [], [], []
  end
end

#completion_procObject



76
77
78
79
80
# File 'lib/emfrp/interpreter/command_manager.rb', line 76

def completion_proc
  proc do |s|
    @command_names.select{|name| name.index(s) == 0}
  end
end

#desc(str) ⇒ Object



30
31
32
# File 'lib/emfrp/interpreter/command_manager.rb', line 30

def desc(str)
  @command_desc_buf << str
end

#example(str) ⇒ Object



38
39
40
# File 'lib/emfrp/interpreter/command_manager.rb', line 38

def example(str)
  @command_example_buf << str
end

#exec(command_name, arg, readline_id) ⇒ Object



67
68
69
70
71
72
73
74
# File 'lib/emfrp/interpreter/command_manager.rb', line 67

def exec(command_name, arg, readline_id)
  if @command_tbl[command_name]
    @interpreter.instance_exec(arg, command_name, readline_id, &@command_tbl[command_name])
  else
    @interpreter.puts "Error: undefined command `#{command_name}'"
    return :exec_error
  end
end


60
61
62
63
64
65
# File 'lib/emfrp/interpreter/command_manager.rb', line 60

def print_all_usages(output_io)
  @command_tbl.keys.sort.each do |name|
    print_usage(name, output_io)
  end
  return nil
end


42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/emfrp/interpreter/command_manager.rb', line 42

def print_usage(command_name, output_io)
  if @command_tbl[command_name]
    output_io.puts ":#{command_name}".colorize(:light_blue)
    output_io.puts @command_desc_tbl[command_name].map{|x| "  " + x}.join("\n")
    if @command_usage_tbl[command_name].size > 0
      output_io.puts "  Usage:".colorize(:green)
      output_io.puts @command_usage_tbl[command_name].map{|x| "    " + x}.join("\n")
    end
    if @command_example_tbl[command_name].size > 0
      output_io.puts "  Example:".colorize(:green)
      output_io.puts @command_example_tbl[command_name].map{|x| "    " + x}.join("\n")
    end
    return nil
  else
    return :command_not_found
  end
end

#usage(str) ⇒ Object



34
35
36
# File 'lib/emfrp/interpreter/command_manager.rb', line 34

def usage(str)
  @command_usage_buf << str
end