2010-08-10 15:58:11 -04:00
|
|
|
require 'stringio'
|
|
|
|
|
2009-09-24 20:06:31 -04:00
|
|
|
module Rhino
|
2009-11-11 21:12:20 -05:00
|
|
|
|
2011-12-07 13:59:39 -05:00
|
|
|
# ==Overview
|
|
|
|
# All Javascript must be executed in a context which represents the execution environment in
|
|
|
|
# which scripts will run. The environment consists of the standard javascript objects
|
|
|
|
# and functions like Object, String, Array, etc... as well as any objects or functions which
|
|
|
|
# have been defined in it. e.g.
|
|
|
|
#
|
|
|
|
# Context.open do |cxt|
|
|
|
|
# cxt['num'] = 5
|
|
|
|
# cxt.eval('num + 5') #=> 10
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# == Multiple Contexts.
|
|
|
|
# The same object may appear in any number of contexts, but only one context may be executing javascript code
|
|
|
|
# in any given thread. If a new context is opened in a thread in which a context is already opened, the second
|
|
|
|
# context will "mask" the old context e.g.
|
|
|
|
#
|
|
|
|
# six = 6
|
|
|
|
# Context.open do |cxt|
|
|
|
|
# cxt['num'] = 5
|
|
|
|
# cxt.eval('num') # => 5
|
|
|
|
# Context.open do |cxt|
|
|
|
|
# cxt['num'] = 10
|
|
|
|
# cxt.eval('num') # => 10
|
|
|
|
# cxt.eval('++num') # => 11
|
|
|
|
# end
|
|
|
|
# cxt.eval('num') # => 5
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# == Notes
|
|
|
|
# While there are many similarities between Rhino::Context and Java::org.mozilla.javascript.Context, they are not
|
|
|
|
# the same thing and should not be confused.
|
2009-12-02 01:35:16 -05:00
|
|
|
class Context
|
2009-09-24 20:06:31 -04:00
|
|
|
|
|
|
|
class << self
|
2009-12-02 01:35:16 -05:00
|
|
|
|
2009-11-15 21:56:31 -05:00
|
|
|
# initalize a new context with a fresh set of standard objects. All operations on the context
|
|
|
|
# should be performed in the block that is passed.
|
|
|
|
def open(options = {}, &block)
|
2009-12-02 01:35:16 -05:00
|
|
|
new(options).open(&block)
|
2009-11-13 12:09:54 -05:00
|
|
|
end
|
2011-10-06 07:09:00 -04:00
|
|
|
|
2010-01-18 06:06:38 -05:00
|
|
|
def eval(javascript)
|
|
|
|
new.eval(javascript)
|
|
|
|
end
|
2011-10-06 07:09:00 -04:00
|
|
|
|
2009-12-02 01:35:16 -05:00
|
|
|
end
|
|
|
|
|
2011-12-07 13:59:39 -05:00
|
|
|
attr_reader :scope
|
|
|
|
|
2009-12-02 01:46:51 -05:00
|
|
|
# Create a new javascript environment for executing javascript and ruby code.
|
|
|
|
# * <tt>:sealed</tt> - if this is true, then the standard objects such as Object, Function, Array will not be able to be modified
|
|
|
|
# * <tt>:with</tt> - use this ruby object as the root scope for all javascript that is evaluated
|
|
|
|
# * <tt>:java</tt> - if true, java packages will be accessible from within javascript
|
2009-12-02 01:35:16 -05:00
|
|
|
def initialize(options = {}) #:nodoc:
|
2011-12-07 13:59:39 -05:00
|
|
|
@factory = ContextFactory.new
|
|
|
|
@factory.call do |context|
|
|
|
|
@native = context
|
|
|
|
@global = @native.initStandardObjects(nil, options[:sealed] == true)
|
2009-12-02 01:35:16 -05:00
|
|
|
if with = options[:with]
|
2011-12-09 01:52:47 -05:00
|
|
|
@scope = Rhino.to_javascript(with)
|
2011-12-07 13:59:39 -05:00
|
|
|
@scope.setParentScope(@global)
|
2009-12-02 01:35:16 -05:00
|
|
|
else
|
|
|
|
@scope = @global
|
2009-10-06 09:52:45 -04:00
|
|
|
end
|
2009-12-02 01:35:16 -05:00
|
|
|
unless options[:java]
|
2010-05-24 13:40:43 -04:00
|
|
|
for package in ["Packages", "java", "javax", "org", "com", "edu", "net"]
|
2011-12-07 13:59:39 -05:00
|
|
|
@global.delete(package)
|
2009-12-02 01:35:16 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-09-24 20:06:31 -04:00
|
|
|
end
|
2009-12-02 01:35:16 -05:00
|
|
|
|
2009-11-15 21:56:31 -05:00
|
|
|
# Read a value from the global scope of this context
|
2011-12-07 13:59:39 -05:00
|
|
|
def [](key)
|
|
|
|
@scope[key]
|
2009-11-11 01:50:36 -05:00
|
|
|
end
|
2009-11-15 21:56:31 -05:00
|
|
|
|
2011-10-06 07:09:00 -04:00
|
|
|
# Set a value in the global scope of this context. This value will be visible to all the
|
|
|
|
# javascript that is executed in this context.
|
2011-12-07 13:59:39 -05:00
|
|
|
def []=(key, val)
|
|
|
|
@scope[key] = val
|
2009-11-11 01:50:36 -05:00
|
|
|
end
|
2009-11-15 21:56:31 -05:00
|
|
|
|
|
|
|
# Evaluate a string of javascript in this context:
|
2009-11-20 10:38:31 -05:00
|
|
|
# * <tt>source</tt> - the javascript source code to evaluate. This can be either a string or an IO object.
|
2009-11-15 21:56:31 -05:00
|
|
|
# * <tt>source_name</tt> - associated name for this source code. Mainly useful for backtraces.
|
|
|
|
# * <tt>line_number</tt> - associate this number with the first line of executing source. Mainly useful for backtraces
|
|
|
|
def eval(source, source_name = "<eval>", line_number = 1)
|
2011-12-09 05:28:27 -05:00
|
|
|
open do
|
|
|
|
if IO === source || StringIO === source
|
|
|
|
result = @native.evaluateReader(@scope, IOReader.new(source), source_name, line_number, nil)
|
|
|
|
else
|
|
|
|
result = @native.evaluateString(@scope, source.to_s, source_name, line_number, nil)
|
2009-11-20 10:38:31 -05:00
|
|
|
end
|
2011-12-09 05:28:27 -05:00
|
|
|
Rhino.to_ruby(result)
|
2010-01-18 06:06:38 -05:00
|
|
|
end
|
2009-12-02 01:35:16 -05:00
|
|
|
end
|
2011-12-09 05:28:27 -05:00
|
|
|
|
2009-12-15 03:33:55 -05:00
|
|
|
def evaluate(*args) # :nodoc:
|
2011-12-09 05:28:27 -05:00
|
|
|
eval(*args) # an alias
|
2009-12-15 03:33:55 -05:00
|
|
|
end
|
2009-12-02 01:35:16 -05:00
|
|
|
|
2009-11-20 10:58:15 -05:00
|
|
|
# Read the contents of <tt>filename</tt> and evaluate it as javascript. Returns the result of evaluating the
|
|
|
|
# javascript. e.g.
|
|
|
|
#
|
|
|
|
# Context.open do |cxt|
|
|
|
|
# cxt.load("path/to/some/lib.js")
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
def load(filename)
|
|
|
|
File.open(filename) do |file|
|
2009-12-15 03:33:55 -05:00
|
|
|
evaluate file, filename, 1
|
2009-11-20 10:58:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-11-15 21:56:31 -05:00
|
|
|
# Set the maximum number of instructions that this context will execute.
|
|
|
|
# If this instruction limit is exceeded, then a Rhino::RunawayScriptError
|
|
|
|
# will be raised
|
2009-11-10 09:52:03 -05:00
|
|
|
def instruction_limit=(limit)
|
2011-12-07 13:59:39 -05:00
|
|
|
@native.setInstructionObserverThreshold(limit)
|
|
|
|
@factory.instruction_limit = limit
|
2009-11-10 09:52:03 -05:00
|
|
|
end
|
2009-12-02 01:35:16 -05:00
|
|
|
|
2010-08-12 08:04:04 -04:00
|
|
|
# Set the optimization level that this context will use. This is sometimes necessary
|
|
|
|
# in Rhino, if the bytecode size of the compiled javascript exceeds the 64KB limit.
|
|
|
|
# By using the -1 optimization level, you tell Rhino to run in interpretative mode,
|
|
|
|
# taking a hit to performance but escaping the Java bytecode limit.
|
|
|
|
def optimization_level=(level)
|
|
|
|
@native.setOptimizationLevel(level)
|
|
|
|
end
|
|
|
|
|
2011-12-07 06:50:43 -05:00
|
|
|
# Get the JS interpreter version.
|
|
|
|
# Returns a number e.g. 1.7, nil if unknown and 0 for default.
|
|
|
|
def version
|
|
|
|
case const_value = @native.getLanguageVersion
|
|
|
|
when -1 then nil # VERSION_UNKNOWN
|
|
|
|
when 0 then 0 # VERSION_DEFAULT
|
|
|
|
else const_value / 100.0 # VERSION_1_1 (1.1 = 110 / 100)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Sets interpreter mode a.k.a. JS language version e.g. 1.7 (if supported).
|
|
|
|
def version=(version)
|
|
|
|
const = version.to_s.gsub('.', '_').upcase
|
|
|
|
const = "VERSION_#{const}" if const[0, 7] != 'VERSION'
|
|
|
|
js_context = @native.class # Context
|
|
|
|
if js_context.constants.include?(const)
|
|
|
|
const_value = js_context.const_get(const)
|
|
|
|
@native.setLanguageVersion(const_value)
|
|
|
|
const_value
|
|
|
|
else
|
|
|
|
@native.setLanguageVersion(js_context::VERSION_DEFAULT)
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-09 05:28:27 -05:00
|
|
|
# Enter this context for operations.
|
|
|
|
# Some methods such as eval() will fail unless this context is open !
|
|
|
|
def open(&block)
|
|
|
|
do_open(&block)
|
|
|
|
rescue JS::RhinoException => e
|
|
|
|
raise Rhino::JSError.new(e)
|
2009-12-02 01:35:16 -05:00
|
|
|
end
|
2011-12-09 05:28:27 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def do_open
|
|
|
|
begin
|
|
|
|
@factory.enterContext(@native)
|
|
|
|
yield self
|
|
|
|
ensure
|
|
|
|
JS::Context.exit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-24 20:06:31 -04:00
|
|
|
end
|
2009-11-20 10:38:31 -05:00
|
|
|
|
2011-12-09 05:28:27 -05:00
|
|
|
class IOReader < java.io.Reader # :nodoc:
|
2009-11-20 10:38:31 -05:00
|
|
|
|
|
|
|
def initialize(io)
|
|
|
|
@io = io
|
|
|
|
end
|
|
|
|
|
2011-12-09 05:28:27 -05:00
|
|
|
# implement int Reader#read(char[] buffer, int offset, int length)
|
|
|
|
def read(buffer, offset, length)
|
|
|
|
str = nil
|
2009-11-20 10:38:31 -05:00
|
|
|
begin
|
|
|
|
str = @io.read(length)
|
2009-12-02 01:35:16 -05:00
|
|
|
rescue StandardError => e
|
2011-06-08 16:01:27 -04:00
|
|
|
raise java.io.IOException.new, "Failed reading from ruby IO object"
|
2009-11-20 10:38:31 -05:00
|
|
|
end
|
2011-12-09 05:28:27 -05:00
|
|
|
if str.nil?
|
|
|
|
return -1
|
|
|
|
else
|
|
|
|
jstr = str.to_java
|
|
|
|
for i in 0 .. jstr.length - 1
|
|
|
|
buffer[i + offset] = jstr.charAt(i)
|
|
|
|
end
|
|
|
|
return jstr.length
|
|
|
|
end
|
2009-11-20 10:38:31 -05:00
|
|
|
end
|
2011-12-07 13:59:39 -05:00
|
|
|
|
2009-11-20 10:38:31 -05:00
|
|
|
end
|
2009-12-02 01:35:16 -05:00
|
|
|
|
2011-12-07 06:41:18 -05:00
|
|
|
class ContextFactory < JS::ContextFactory # :nodoc:
|
2009-12-02 01:35:16 -05:00
|
|
|
|
2009-11-10 09:52:03 -05:00
|
|
|
def observeInstructionCount(cxt, count)
|
|
|
|
raise RunawayScriptError, "script exceeded allowable instruction count" if count > @limit
|
|
|
|
end
|
2009-12-02 01:35:16 -05:00
|
|
|
|
2009-11-10 09:52:03 -05:00
|
|
|
def instruction_limit=(count)
|
|
|
|
@limit = count
|
|
|
|
end
|
2011-12-07 13:59:39 -05:00
|
|
|
|
2009-11-10 09:52:03 -05:00
|
|
|
end
|
2009-12-02 01:35:16 -05:00
|
|
|
|
|
|
|
class ContextError < StandardError # :nodoc:
|
|
|
|
end
|
|
|
|
|
2011-12-09 05:28:27 -05:00
|
|
|
class RunawayScriptError < ContextError # :nodoc:
|
2009-12-02 01:35:16 -05:00
|
|
|
end
|
2011-12-07 13:59:39 -05:00
|
|
|
|
2010-08-10 15:58:11 -04:00
|
|
|
end
|