2009-09-24 20:06:31 -04:00
|
|
|
= therubyrhino
|
|
|
|
|
|
|
|
* http://github.com/cowboyd/therubyrhino
|
2010-06-02 03:07:11 -04:00
|
|
|
* irc://irc.freenode.net/therubyrhino
|
2009-09-24 20:06:31 -04:00
|
|
|
|
|
|
|
== DESCRIPTION:
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
Embed the Mozilla Rhino JavaScript interpreter into Ruby
|
2009-09-24 20:06:31 -04:00
|
|
|
|
|
|
|
== FEATURES/PROBLEMS:
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
* Evaluate JavaScript from with in Ruby
|
|
|
|
* Embed your Ruby objects into the JavaScript world
|
2009-09-24 20:06:31 -04:00
|
|
|
|
|
|
|
== SYNOPSIS:
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
1. JavaScript goes into Ruby
|
|
|
|
2. Ruby Objects goes into JavaScript
|
|
|
|
3. Our shark's in the JavaScript!
|
2009-09-24 21:37:06 -04:00
|
|
|
|
2009-11-13 12:33:08 -05:00
|
|
|
require 'rhino'
|
|
|
|
|
2009-09-24 22:45:05 -04:00
|
|
|
# evaluate some simple javascript
|
2009-11-13 12:33:08 -05:00
|
|
|
eval_js "7 * 6" #=> 42
|
2009-11-20 10:38:31 -05:00
|
|
|
|
2009-11-20 10:58:15 -05:00
|
|
|
# that's quick and dirty, but if you want more control over your
|
|
|
|
# environment, use a Context:
|
|
|
|
Rhino::Context.open do |cxt|
|
|
|
|
cxt['foo'] = "bar"
|
|
|
|
cxt.eval('foo') # => "bar"
|
2009-11-20 10:38:31 -05:00
|
|
|
end
|
2009-11-20 10:58:15 -05:00
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
# evaluate a ruby function from JS
|
2009-09-24 22:45:05 -04:00
|
|
|
|
|
|
|
Rhino::Context.open do |context|
|
2009-11-11 21:19:27 -05:00
|
|
|
context["say"] = lambda {|word, times| word * times}
|
2009-11-11 09:37:02 -05:00
|
|
|
context.eval("say("Hello", 3)") #=> HelloHelloHello
|
2009-10-06 10:18:13 -04:00
|
|
|
end
|
2009-11-13 12:33:08 -05:00
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
# embed a ruby object into your JS environment
|
2009-11-13 12:33:08 -05:00
|
|
|
|
|
|
|
class MyMath
|
|
|
|
def plus(lhs, rhs)
|
|
|
|
lhs + rhs
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Rhino::Context.open do |context|
|
|
|
|
context["math"] = MyMath.new
|
2012-02-15 05:43:48 -05:00
|
|
|
context.eval("math.plus(20, 22)") #=> 42
|
2009-11-13 12:33:08 -05:00
|
|
|
end
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
# make a ruby object *be* your JS environment
|
2009-11-13 12:33:08 -05:00
|
|
|
math = MyMath.new
|
|
|
|
Rhino::Context.open(:with => math) do |context|
|
2012-02-15 05:43:48 -05:00
|
|
|
context.eval("plus(20, 22)") #=> 42
|
2009-11-13 12:33:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
#or the equivalent
|
|
|
|
|
2012-02-15 05:43:48 -05:00
|
|
|
math.eval_js("plus(20, 22)")
|
2009-10-06 10:18:13 -04:00
|
|
|
|
|
|
|
# Configure your embedding setup
|
|
|
|
|
2009-11-11 09:37:02 -05:00
|
|
|
# Make your standard objects (Object, String, etc...) immutable
|
|
|
|
Rhino::Context.open(:sealed => true) do |context|
|
|
|
|
context.eval("Object.prototype.toString = function() {}") # this is an error!
|
|
|
|
end
|
|
|
|
|
|
|
|
#Turn on Java integration from javascript (probably a bad idea)
|
|
|
|
Rhino::Context.open(:java => true) do |context|
|
2012-02-15 05:43:48 -05:00
|
|
|
context.eval("java.lang.System.exit()") # it's dangerous!
|
2009-09-24 20:06:31 -04:00
|
|
|
end
|
2009-11-20 10:58:15 -05:00
|
|
|
|
2009-11-20 12:48:55 -05:00
|
|
|
#limit the number of instructions that can be executed in order to prevent
|
|
|
|
#rogue scripts
|
2012-02-15 05:43:48 -05:00
|
|
|
Rhino::Context.open(:restrictable => true) do |context|
|
2009-11-20 12:48:55 -05:00
|
|
|
context.instruction_limit = 100000
|
2012-02-15 05:43:48 -05:00
|
|
|
context.eval("while (true);") # => Rhino::RunawayScriptError
|
|
|
|
end
|
|
|
|
|
|
|
|
#limit the time a script executes
|
|
|
|
#rogue scripts
|
|
|
|
Rhino::Context.open(:restrictable => true, :java => true) do |context|
|
|
|
|
context.timeout_limit = 1.5 # seconds
|
|
|
|
context.eval %Q{
|
|
|
|
for (var i = 0; i < 100; i++) {
|
|
|
|
java.lang.Thread.sleep(100);
|
|
|
|
}
|
|
|
|
} # => Rhino::ScriptTimeoutError
|
2009-11-20 12:48:55 -05:00
|
|
|
end
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
==== Different ways of loading JavaScript source
|
2009-11-20 10:58:15 -05:00
|
|
|
|
|
|
|
In addition to just evaluating strings, you can also use streams such as files.
|
|
|
|
|
|
|
|
# evaluate bytes read from any File/IO object:
|
|
|
|
File.open("mysource.js") do |file|
|
|
|
|
eval_js file, "mysource.js"
|
|
|
|
end
|
|
|
|
|
|
|
|
# or load it by filename
|
|
|
|
Rhino::Context.open do |context|
|
|
|
|
context.load("mysource.js")
|
|
|
|
end
|
|
|
|
|
2012-02-15 05:43:48 -05:00
|
|
|
==== Configurable Ruby access
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
By default accessing Ruby objects from JavaScript is compatible with *therubyracer*:
|
2012-02-15 05:43:48 -05:00
|
|
|
https://github.com/cowboyd/therubyracer/wiki/Accessing-Ruby-Objects-From-JavaScript
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
Thus you end-up calling arbitrary no-arg methods as if they were JavaScript properties,
|
2012-02-15 05:43:48 -05:00
|
|
|
since instance accessors (properties) and methods (functions) are indistinguishable:
|
|
|
|
|
|
|
|
Rhino::Context.open do |context|
|
|
|
|
context['Time'] = Time
|
|
|
|
context.eval('Time.now')
|
|
|
|
end
|
|
|
|
|
|
|
|
However, you can customize this behavior and there's another access implementation
|
|
|
|
that attempts to mirror only attributes as properties as close as possible:
|
|
|
|
|
|
|
|
class Foo
|
|
|
|
attr_accessor :bar
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@bar = "bar"
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_bar
|
|
|
|
bar == "bar"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
Rhino::Ruby::Scriptable.access = :attribute
|
2012-02-15 05:43:48 -05:00
|
|
|
Rhino::Context.open do |context|
|
|
|
|
context['Foo'] = Foo
|
|
|
|
context.eval('var foo = new Foo()')
|
|
|
|
context.eval('foo.bar') # get property using reader
|
|
|
|
context.eval('foo.bar = null') # set property using writer
|
|
|
|
context.eval('foo.check_bar()') # called like a function
|
|
|
|
end
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
If you happen to come up with your own access strategy, just set it directly :
|
|
|
|
|
2012-04-20 14:24:43 -04:00
|
|
|
Rhino::Ruby::Scriptable.access = FooApp::BarAccess.instance
|
2012-04-13 02:26:54 -04:00
|
|
|
|
2009-11-20 12:48:55 -05:00
|
|
|
=== Safe by default
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
The Ruby Rhino is designed to let you evaluate JavaScript as safely as possible
|
|
|
|
unless you tell it to do something more dangerous. The default context is a
|
|
|
|
hermetically sealed JavaScript environment with only the standard objects and
|
|
|
|
functions. Nothing from the Ruby world is accessible at all.
|
2009-11-20 12:48:55 -05:00
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
For Ruby objects that you explicitly embed into JavaScript, only the +public+
|
|
|
|
methods "defined in their classes" are exposed by default e.g.
|
2009-11-20 12:48:55 -05:00
|
|
|
|
|
|
|
class A
|
|
|
|
def a
|
|
|
|
"a"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class B < A
|
|
|
|
def b
|
|
|
|
"b"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
Rhino::Context.open do |cxt|
|
|
|
|
cxt['a'] = A.new
|
|
|
|
cxt['b'] = B.new
|
|
|
|
cxt.eval("a.a()") # => 'a'
|
|
|
|
cxt.eval("b.b()") # => 'b'
|
|
|
|
cxt.eval("b.a()") # => 'TypeError: undefined property 'a' is not a function'
|
|
|
|
end
|
2009-11-11 09:37:02 -05:00
|
|
|
|
2012-08-27 04:55:15 -04:00
|
|
|
==== Using a custom Rhino version
|
|
|
|
|
|
|
|
Officially supported versions of Rhino's _js.jar_ are packaged separately as
|
|
|
|
*therubyrhino_jar* gem. Make sure you're using the latest gem version if you
|
|
|
|
feel like missing something available with Rhino. For experimenters the jar can
|
|
|
|
be overriden by defining a +Rhino::JAR_PATH+ before +require 'rhino'+ e.g. :
|
|
|
|
|
|
|
|
module Rhino
|
|
|
|
JAR_PATH = File.expand_path('lib/rhino/build/rhino1_7R5pre/js.jar')
|
|
|
|
end
|
|
|
|
# ...
|
|
|
|
require 'rhino'
|
|
|
|
|
2012-12-05 04:46:41 -05:00
|
|
|
==== Context customizations
|
|
|
|
|
|
|
|
Just like the JVM packaged Rhino scripting engine, therubyrhino gem supports
|
|
|
|
specifying JavaScript context properies (optimization level and language version)
|
|
|
|
using system properties e.g. to force interpreted mode :
|
|
|
|
|
|
|
|
jruby -J-Drhino.opt.level=-1 -rtherubyrhino -S ...
|
|
|
|
|
|
|
|
You might also set these programatically as a default for all created contexts :
|
|
|
|
|
|
|
|
Rhino::Context.default_optimization_level = 1
|
|
|
|
Rhino::Context.default_javascript_version = 1.6
|
|
|
|
|
|
|
|
Or using plain old JAVA_OPTS e.g. when setting JavaScript version :
|
|
|
|
|
|
|
|
-Drhino.js.version=1.7
|
|
|
|
|
2012-04-13 02:26:54 -04:00
|
|
|
== Rhino
|
|
|
|
|
|
|
|
Rhino is currently maintained at https://github.com/mozilla/rhino
|
|
|
|
Release downloads are available at http://www.mozilla.org/rhino/download.html
|
|
|
|
Rhino is licensed under the MPL 1.1/GPL 2.0 license.
|
|
|
|
|
2009-09-24 20:06:31 -04:00
|
|
|
== REQUIREMENTS:
|
|
|
|
|
2012-08-24 07:05:42 -04:00
|
|
|
* JRuby >= 1.6
|
2009-09-24 20:06:31 -04:00
|
|
|
|
|
|
|
== INSTALL:
|
|
|
|
|
2012-08-24 07:05:42 -04:00
|
|
|
* jruby -S gem install therubyrhino
|
2009-09-24 20:06:31 -04:00
|
|
|
|
|
|
|
== LICENSE:
|
|
|
|
|
|
|
|
(The MIT License)
|
|
|
|
|
2012-02-15 05:43:48 -05:00
|
|
|
Copyright (c) 2009-2012 Charles Lowell
|
2009-09-24 20:06:31 -04:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
a copy of this software and associated documentation files (the
|
|
|
|
'Software'), to deal in the Software without restriction, including
|
|
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|