rubyx/lib/ruby/ruby_compiler.rb

236 lines
6.0 KiB
Ruby
Raw Normal View History

module Ruby
# This RubyCompiler compiles incoming ruby (string) into a typed
# version of theast, with the help of the parser gem.
# The parser outputs an abstract ast (nodes)
# that get transformed into concrete, specific classes.
#
# As a second step, it extracts classes, methods, ivars and locals.
#
# The next step is then to go to the vool level, which is
# simpler, and then finally to compile
# to the next level down, MOM (Minimal Object Machine)
class RubyCompiler < AST::Processor
include AST::Sexp
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
ClassStatement.new( get_name(name) , get_name(sup) , process(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 , process(body) )
2017-04-01 15:27:32 +02:00
end
def on_arg( arg )
arg.first
end
2018-06-26 19:28:27 +02:00
def on_block(block_node)
sendd = process(block_node.children[0])
args = process(block_node.children[1])
body = process(block_node.children[2])
sendd.add_block BlockStatement.new(args , body)
2018-06-26 19:28:27 +02:00
sendd
end
2018-06-28 19:15:24 +02:00
def on_yield(node)
args = process_all(node.children)
YieldStatement.new(args)
2018-06-28 19:15:24 +02:00
end
2018-06-26 19:28:27 +02:00
def on_args(args)
args.children.collect{|a| process(a)}
end
#basic Values
2017-04-02 11:57:05 +02:00
def on_self exp
SelfExpression.new
2017-04-02 11:57:05 +02:00
end
def on_nil expression
NilConstant.new
2017-04-02 11:57:05 +02:00
end
2017-04-02 08:44:56 +02:00
def on_int expression
IntegerConstant.new(expression.children.first)
2017-04-02 08:44:56 +02:00
end
def on_float expression
FloatConstant.new(expression.children.first)
2017-04-02 08:44:56 +02:00
end
def on_true expression
TrueConstant.new
2017-04-02 08:44:56 +02:00
end
def on_false expression
FalseConstant.new
2017-04-02 08:44:56 +02:00
end
def on_str expression
StringConstant.new(expression.children.first)
2017-04-02 08:44:56 +02:00
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
SymbolConstant.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
2017-04-02 09:57:39 +02:00
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)
2017-04-02 17:25:30 +02:00
end
def on_ivar expression
InstanceVariable.new(instance_name(expression.children.first))
end
def on_cvar expression
ClassVariable.new(expression.children.first.to_s[2 .. -1].to_sym)
end
2017-04-04 17:00:21 +02:00
def on_const expression
scope = expression.children.first
if scope
raise "Only unscoped Names implemented #{scope}" unless scope.type == :cbase
end
ModuleName.new(expression.children[1])
2017-04-04 17:00:21 +02:00
end
2017-04-04 17:10:28 +02:00
# Assignements
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)
2017-04-02 11:57:05 +02:00
end
2017-04-04 17:10:28 +02:00
def on_ivasgn expression
name = expression.children[0]
value = process(expression.children[1])
IvarAssignment.new(instance_name(name),value)
2017-04-04 17:10:28 +02:00
end
def on_op_asgn(expression)
ass , op , exp = *expression
name = ass.children[0]
a_type = ass.type.to_s[0,3]
rewrite = s( a_type + "sgn" ,
name ,
s(:send , s( a_type + "r" , name ) , op , exp ) )
process(rewrite)
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-03 10:49:21 +02:00
def on_while statement
condition , statements = *statement
WhileStatement.new( process(condition) , process(statements))
2017-04-01 20:28:57 +02:00
end
2017-04-02 18:12:42 +02:00
def on_if statement
condition , if_true , if_false = *statement
if_true = process(if_true)
if_false = process(if_false)
IfStatement.new( process(condition) , if_true , if_false )
2017-04-01 20:28:57 +02:00
end
2017-04-02 11:57:05 +02:00
def on_send statement
kids = statement.children.dup
receiver = process(kids.shift) || SelfExpression.new
2017-04-02 11:57:05 +02:00
name = kids.shift
arguments = process_all(kids)
SendStatement.new( name , receiver , arguments )
2017-04-01 20:28:57 +02:00
end
2017-04-04 17:35:15 +02:00
def on_and expression
name = expression.type
left = process(expression.children[0])
right = process( expression.children[1] )
LogicalStatement.new( name , left , right)
2017-04-04 17:35:15 +02:00
end
alias :on_or :on_and
# this is a call to super without args (z = zero arity)
def on_zsuper exp
SendStatement.new( nil , SuperExpression.new , nil)
end
# this is a call to super with args and
# same name as current method, which is set later
def on_super( statement )
arguments = process_all(statement.children)
SendStatement.new( nil , SuperExpression.new , arguments)
end
2017-04-01 20:28:57 +02:00
def on_assignment statement
name , value = *statement
w = Assignment.new()
2017-04-01 20:28:57 +02:00
w.name = process name
w.value = process(value)
w
end
2017-08-30 21:27:12 +02:00
def handler_missing(node)
raise "Handler missing #{node}"
end
2017-04-01 20:28:57 +02:00
private
2017-04-04 17:10:28 +02:00
def instance_name sym
sym.to_s[1 .. -1].to_sym
end
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