Sha256: ad4efd2f24426cb699841b68d512c4f49aa9b7c8274b620f3bcd56c628fd43dc

Contents?: true

Size: 1.72 KB

Versions: 2

Compression:

Stored size: 1.72 KB

Contents

module ExecJS
  class RubyRhinoRuntime
    class Context
      def initialize(source = "")
        @rhino_context = ::Rhino::Context.new
        @rhino_context.eval(source)
      end

      def exec(source, options = {})
        souce = source.encode('UTF-8') if source.respond_to?(:encode)

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

      def eval(source, options = {})
        souce = source.encode('UTF-8') if source.respond_to?(:encode)

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

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

      def unbox(value)
        case value
        when ::Rhino::NativeFunction
          nil
        when ::Rhino::NativeObject
          value.inject({}) do |vs, (k, v)|
            vs[k] = unbox(v) unless v.is_a?(::Rhino::NativeFunction)
            vs
          end
        else
          value
        end
      end
    end

    def name
      "therubyrhino (Rhino)"
    end

    def exec(source)
      context = Context.new
      context.exec(source)
    end

    def eval(source)
      context = Context.new
      context.eval(source)
    end

    def compile(source)
      Context.new(source)
    end

    def available?
      require "rhino"
      true
    rescue LoadError
      false
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
execjs-0.4.0 lib/execjs/ruby_rhino_runtime.rb
execjs-0.3.4 lib/execjs/ruby_rhino_runtime.rb