class ExecJS::RubyRhinoRuntime::Context
Public Class Methods
new(runtime, source = "", options = {})
click to toggle source
# File lib/execjs/ruby_rhino_runtime.rb, line 6 def initialize(runtime, source = "", options = {}) source = encode(source) @rhino_context = ::Rhino::Context.new fix_memory_limit! @rhino_context @rhino_context.eval(source) rescue Exception => e raise wrap_error(e) end
Public Instance Methods
call(properties, *args)
click to toggle source
# File lib/execjs/ruby_rhino_runtime.rb, line 34 def call(properties, *args) unbox @rhino_context.eval(properties).call(*args) rescue Exception => e raise wrap_error(e) end
eval(source, options = {})
click to toggle source
# File lib/execjs/ruby_rhino_runtime.rb, line 24 def eval(source, options = {}) source = encode(source) if /\S/ =~ source unbox @rhino_context.eval("(#{source})") end rescue Exception => e raise wrap_error(e) end
exec(source, options = {})
click to toggle source
# File lib/execjs/ruby_rhino_runtime.rb, line 16 def exec(source, options = {}) source = encode(source) if /\S/ =~ source eval "(function(){#{source}})()", options end end
unbox(value)
click to toggle source
# File lib/execjs/ruby_rhino_runtime.rb, line 40 def unbox(value) case value = ::Rhino::to_ruby(value) when Java::OrgMozillaJavascript::NativeFunction nil when Java::OrgMozillaJavascript::NativeObject value.inject({}) do |vs, (k, v)| case v when Java::OrgMozillaJavascript::NativeFunction, ::Rhino::JS::Function nil else vs[k] = unbox(v) end vs end when Array value.map { |v| unbox(v) } else value end end
wrap_error(e)
click to toggle source
# File lib/execjs/ruby_rhino_runtime.rb, line 61 def wrap_error(e) return e unless e.is_a?(::Rhino::JSError) error_class = e.message == "syntax error" ? RuntimeError : ProgramError stack = e.backtrace stack = stack.map { |line| line.sub(" at ", "").sub("<eval>", "(execjs)").strip } stack.unshift("(execjs):1") if e.javascript_backtrace.empty? error = error_class.new(e.value.to_s) error.set_backtrace(stack) error end
Private Instance Methods
fix_memory_limit!(context)
click to toggle source
Disables bytecode compiling which limits you to 64K scripts
# File lib/execjs/ruby_rhino_runtime.rb, line 77 def fix_memory_limit!(context) if context.respond_to?(:optimization_level=) context.optimization_level = -1 else context.instance_eval { @native.setOptimizationLevel(-1) } end end