Sha256: f6de5147c57272959497b2c17ae6a7b45f95a3309cc6912bd329354f038b4128

Contents?: true

Size: 1.88 KB

Versions: 114

Compression:

Stored size: 1.88 KB

Contents

module ExecJS
  class MustangRuntime
    class Context
      def initialize(source = "")
        source = source.encode('UTF-8') if source.respond_to?(:encode)

        @v8_context = ::Mustang::Context.new
        @v8_context.eval(source)
      end

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

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

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

        if /\S/ =~ source
          unbox @v8_context.eval("(#{source})")
        end
      end

      def call(properties, *args)
        unbox @v8_context.eval(properties).call(*args)
      rescue NoMethodError => e
        raise ProgramError, e.message
      end

      def unbox(value)
        case value
        when Mustang::V8::Array
          value.map { |v| unbox(v) }
        when Mustang::V8::Boolean
          value.to_bool
        when Mustang::V8::NullClass, Mustang::V8::UndefinedClass
          nil
        when Mustang::V8::Function
          nil
        when Mustang::V8::SyntaxError
          raise RuntimeError, value.message
        when Mustang::V8::Error
          raise ProgramError, value.message
        when Mustang::V8::Object
          value.inject({}) { |h, (k, v)|
            v = unbox(v)
            h[k] = v if v
            h
          }
        else
          value.respond_to?(:delegate) ? value.delegate : value
        end
      end
    end

    def name
      "Mustang (V8)"
    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 "mustang"
      true
    rescue LoadError
      false
    end
  end
end

Version data entries

114 entries across 68 versions & 5 rubygems

Version Path
classicCMS-0.2.2 vendor/bundle/gems/execjs-1.3.0/lib/execjs/mustang_runtime.rb
classicCMS-0.2.1 vendor/bundle/gems/execjs-1.3.0/lib/execjs/mustang_runtime.rb
classicCMS-0.2.0 vendor/bundle/gems/execjs-1.3.0/lib/execjs/mustang_runtime.rb
classicCMS-0.1.2 vendor/bundle/gems/execjs-1.3.0/lib/execjs/mustang_runtime.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/execjs-1.3.0/lib/execjs/mustang_runtime.rb
execjs-1.3.0 lib/execjs/mustang_runtime.rb
execjs-1.2.13 lib/execjs/mustang_runtime.rb
execjs-1.2.12 lib/execjs/mustang_runtime.rb
execjs-1.2.11 lib/execjs/mustang_runtime.rb
execjs-1.2.10 lib/execjs/mustang_runtime.rb
execjs-1.2.9 lib/execjs/mustang_runtime.rb
execjs-1.2.8 lib/execjs/mustang_runtime.rb
execjs-1.2.7 lib/execjs/mustang_runtime.rb
execjs-1.2.6 lib/execjs/mustang_runtime.rb