Class: ExecJS::RubyRhinoRuntime::Context

Inherits:
ExecJS::Runtime::Context show all
Defined in:
lib/execjs/ruby_rhino_runtime.rb

Instance Method Summary collapse

Methods included from Encoding

#encode

Constructor Details

#initialize(runtime, source = "") ⇒ Context

Returns a new instance of Context.



6
7
8
9
10
11
12
# File 'lib/execjs/ruby_rhino_runtime.rb', line 6

def initialize(runtime, source = "")
  source = encode(source)

  @rhino_context = ::Rhino::Context.new
  fix_memory_limit! @rhino_context
  @rhino_context.eval(source)
end

Instance Method Details

#call(properties, *args) ⇒ Object



36
37
38
39
40
41
42
43
44
# File 'lib/execjs/ruby_rhino_runtime.rb', line 36

def call(properties, *args)
  unbox @rhino_context.eval(properties).call(*args)
rescue ::Rhino::JSError => e
  if e.message == "syntax error"
    raise RuntimeError, e.message
  else
    raise ProgramError, e.message
  end
end

#eval(source, options = {}) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/execjs/ruby_rhino_runtime.rb', line 22

def eval(source, options = {})
  source = encode(source)

  if /\S/ =~ source
    unbox @rhino_context.eval("(#{source})")
  end
rescue ::Rhino::JSError => e
  if e.message =~ /^syntax error/
    raise RuntimeError, e.message
  else
    raise ProgramError, e.message
  end
end

#exec(source, options = {}) ⇒ Object



14
15
16
17
18
19
20
# File 'lib/execjs/ruby_rhino_runtime.rb', line 14

def exec(source, options = {})
  source = encode(source)

  if /\S/ =~ source
    eval "(function(){#{source}})()", options
  end
end

#unbox(value) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/execjs/ruby_rhino_runtime.rb', line 46

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