require 'parser/current' require 'ruby2js/converter' module Ruby2JS module Filter DEFAULTS = [] module SEXP # construct an AST Node def s(type, *args) Parser::AST::Node.new type, args end end class Processor < Parser::AST::Processor BINARY_OPERATORS = Converter::OPERATORS[2..-1].flatten def options=(options) @options = options end # handle all of the 'invented' ast types def on_attr(node); on_send(node); end def on_autoreturn(node); on_return(node); end def on_constructor(node); on_def(node); end def on_defp(node); on_defs(node); end def on_method(node); on_send(node); end def on_prop(node); on_array(node); end def on_prototype(node); on_begin(node); end def on_sendw(node); on_send(node); end def on_undefined?(node); on_defined?(node); end # provide a method so filters can call 'super' def on_sym(node); node; end # convert map(&:symbol) to a block def on_send(node) if node.children.length > 2 and node.children.last.type == :block_pass method = node.children.last.children.first.children.last if BINARY_OPERATORS.include? method return on_block s(:block, s(:send, *node.children[0..-2]), s(:args, s(:arg, :a), s(:arg, :b)), s(:return, process(s(:send, s(:lvar, :a), method, s(:lvar, :b))))) else return on_block s(:block, s(:send, *node.children[0..-2]), s(:args, s(:arg, :item)), s(:return, process(s(:attr, s(:lvar, :item), method)))) end end super end end end def self.convert(source, options={}) if Proc === source file,line = source.source_location source = File.read(file.dup.untaint).untaint ast = find_block( parse(source), line ) options[:file] = file elsif Parser::AST::Node === source ast = source source = ast.loc.expression.source_buffer.source else ast = parse( source ) end filters = options[:filters] || Filter::DEFAULTS unless filters.empty? filter = Filter::Processor filters.reverse.each do |mod| filter = Class.new(filter) {include mod} end filter = filter.new filter.options = options ast = filter.process(ast) end ruby2js = Ruby2JS::Converter.new( ast ) ruby2js.binding = options[:binding] ruby2js.ivars = options[:ivars] if ruby2js.binding and not ruby2js.ivars ruby2js.ivars = ruby2js.binding.eval \ 'Hash[instance_variables.map {|var| [var, instance_variable_get(var)]}]' elsif options[:scope] and not ruby2js.ivars scope = options.delete(:scope) ruby2js.ivars = Hash[scope.instance_variables.map {|var| [var, scope.instance_variable_get(var)]}] end ruby2js.width = options[:width] if options[:width] if source.include? "\n" ruby2js.enable_vertical_whitespace lines = ruby2js.to_js.split("\n") pre = '' pending = false blank = true lines.each do |line| next if line.empty? if ')}]'.include? line[0] pre.sub!(/^ /,'') line.sub!(/([,;])$/,"\\1\n") pending = true else pending = false end line.sub! /^/, pre if '({['.include? line[-1] pre += ' ' line.sub!(/^/,"\n") unless blank or pending pending = true end blank = pending end lines.join("\n").gsub(/^ ( *(case.*|default):$)/, '\1') else ruby2js.to_js end end def self.parse(source) # workaround for https://github.com/whitequark/parser/issues/112 buffer = Parser::Source::Buffer.new('__SOURCE__') buffer.raw_source = source.encode('utf-8') Parser::CurrentRuby.new.parse(buffer) end def self.find_block(ast, line) if ast.type == :block and ast.loc.expression.line == line return ast.children.last end ast.children.each do |child| if Parser::AST::Node === child block = find_block child, line return block if block end end nil end end