rubyx/lib/vool/compiler.rb

220 lines
5.4 KiB
Ruby
Raw Normal View History

module Vool
2017-04-02 08:44:56 +02:00
class Compiler < AST::Processor
def self.compile(input)
ast = Parser::Ruby22.parse( input )
self.new.process(ast)
end
# default to error, so non implemented stuff shows early
def handler_missing(node)
raise "Not implemented #{node.type} #{node}"
end
def on_class( statement )
name , sup , body = *statement
2017-04-02 08:44:56 +02:00
ClassStatement.new( get_name(name) , get_name(sup) , process_all(body) )
end
2017-04-01 15:27:32 +02:00
def on_def( statement )
name , args , body = *statement
arg_array = process_all( args )
MethodStatement.new( name , arg_array , body )
end
def on_arg( arg )
arg.first
end
#basic Values
2017-04-02 11:57:05 +02:00
def on_self exp
SelfStatement.new
end
def on_nil expression
NilStatement.new
end
2017-04-02 08:44:56 +02:00
def on_int expression
IntegerStatement.new(expression.children.first)
end
def on_float expression
FloatStatement.new(expression.children.first)
end
def on_true expression
TrueStatement.new
end
def on_false expression
FalseStatement.new
end
def on_str expression
StringStatement.new(expression.children.first)
end
alias :on_string :on_str
def on_dstr expression
raise "Not implemented dynamic strings (with interpolation)"
end
alias :on_xstr :on_dstr
def on_sym expression
SymbolStatement.new(expression.children.first)
end
alias :on_string :on_str
def on_dsym
raise "Not implemented dynamix symbols (with interpolation)"
2017-04-02 08:44:56 +02:00
end
2017-04-02 17:25:30 +02:00
def on_kwbegin statement
ScopeStatement.new process_all( statement.children )
end
2017-04-02 17:25:30 +02:00
alias :on_begin :on_kwbegin
# Array + Hashes
def on_array expression
ArrayStatement.new expression.children.collect{ |elem| process(elem) }
end
2017-04-02 09:57:39 +02:00
def on_hash expression
hash = HashStatement.new
expression.children.each do |elem|
raise "Hash error, hash contains non pair: #{elem.type}" if elem.type != :pair
hash.add( process(elem.children[0]) , process(elem.children[1]) )
end
hash
end
2017-04-02 11:57:05 +02:00
#Variables
2017-04-02 17:25:30 +02:00
def on_lvar expression
LocalVariable.new(expression.children.first)
end
def on_ivar expression
InstanceVariable.new(expression.children.first.to_s[1 .. -1].to_sym)
end
def on_cvar expression
ClassVariable.new(expression.children.first.to_s[2 .. -1].to_sym)
end
2017-04-02 11:57:05 +02:00
def on_lvasgn expression
name = expression.children[0]
value = process(expression.children[1])
LocalAssignment.new(name,value)
end
2017-04-02 08:44:56 +02:00
def on_return statement
2017-04-04 09:42:20 +02:00
return_value = process(statement.children.first)
ReturnStatement.new( return_value )
2017-04-02 08:44:56 +02:00
end
2017-04-01 20:28:57 +02:00
def on_function statement
return_type , name , parameters, statements , receiver = *statement
w = FunctionStatement.new()
w.return_type = return_type
w.name = name.children.first
w.parameters = parameters.to_a.collect do |p|
raise "error, argument must be a identifier, not #{p}" unless p.type == :parameter
p.children
end
w.statements = process(statements)
w.receiver = receiver
w
end
2017-04-03 10:49:21 +02:00
def on_while statement
condition , statements = *statement
w = WhileStatement.new( process(condition) )
simplify_condition(w)
2017-04-01 20:28:57 +02:00
w.statements = process(statements)
w
end
2017-04-02 18:12:42 +02:00
def on_if statement
# puts "IF #{statement}"
condition , if_true , if_false = *statement
2017-04-03 10:49:21 +02:00
w = IfStatement.new( process(condition) )
simplify_condition(w)
2017-04-01 20:28:57 +02:00
w.if_true = process(if_true)
w.if_false = process(if_false)
w
end
2017-04-03 10:49:21 +02:00
def simplify_condition( cond )
return unless cond.condition.is_a?(ScopeStatement)
cond.condition = cond.condition.first if cond.condition.single?
end
2017-04-01 20:28:57 +02:00
def on_operator_value statement
operator , left_e , right_e = *statement
2017-04-02 08:44:56 +02:00
w = OperatorStatement.new()
2017-04-01 20:28:57 +02:00
w.operator = operator
w.left_expression = process(left_e)
w.right_expression = process(right_e)
w
end
def on_receiver expression
process expression.children.first
end
2017-04-02 11:57:05 +02:00
def on_send statement
kids = statement.children.dup
receiver = kids.shift
name = kids.shift
arguments = kids
2017-04-02 17:25:30 +02:00
w = SendStatement.new( name )
2017-04-02 11:57:05 +02:00
w.receiver = process(receiver) || SelfStatement.new
2017-04-01 20:28:57 +02:00
w.arguments = process_all(arguments)
w
end
# this is a call to super without args (z = zero arity)
def on_zsuper exp
w = SendStatement.new( nil )
w.receiver = SuperStatement.new
w
end
# this is a call to super with args and
# same name as current method, which is set later
def on_super( statement )
w = SendStatement.new( nil )
w.receiver = SuperStatement.new
w.arguments = process_all(statement.children)
w
end
2017-04-02 17:25:30 +02:00
# def on_name statement
# NameStatement.new(statement.children.first)
# end
2017-04-01 20:28:57 +02:00
2017-04-02 17:25:30 +02:00
# def on_class_name expression
# ClassStatement.new(expression.children.first)
# end
2017-04-01 20:28:57 +02:00
def on_assignment statement
name , value = *statement
w = Assignment.new()
w.name = process name
w.value = process(value)
w
end
private
def get_name( statement )
return nil unless statement
raise "Not const #{statement}" unless statement.type == :const
name = statement.children[1]
raise "Not symbol #{name}" unless name.is_a? Symbol
name
end
end
end