1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00
therubyrhino/lib/rhino/ruby.rb

239 lines
6.7 KiB
Ruby
Raw Normal View History

module Rhino
module Ruby
def self.wrap_error(e)
JS::WrappedException.new(org.jruby.exceptions.RaiseException.new(e))
end
# shared JS::Scriptable implementation
module Scriptable
# override Object Scriptable#get(String name, Scriptable start);
# override Object Scriptable#get(int index, Scriptable start);
def get(name, start)
access.get(unwrap, name, self) { super }
end
# override boolean Scriptable#has(String name, Scriptable start);
# override boolean Scriptable#has(int index, Scriptable start);
def has(name, start)
access.has(unwrap, name, self) { super }
end
# override void Scriptable#put(String name, Scriptable start, Object value);
# override void Scriptable#put(int index, Scriptable start, Object value);
def put(name, start, value)
access.put(unwrap, name, value) { super }
end
# override Object[] Scriptable#getIds();
def getIds
ids = []
unwrap.public_methods(false).each do |name|
name = name[0...-1] if name[-1, 1] == '=' # 'foo=' ... 'foo'
name = name.to_java # java.lang.String
ids << name unless ids.include?(name)
end
super.each { |id| ids.unshift(id) }
ids.to_java
end
@@access = nil
def self.access=(access)
@@access = access
end
def self.access
@@access ||= Rhino::Ruby::DefaultAccess
end
private
def access
Scriptable.access
end
end
class Object < JS::ScriptableObject
include JS::Wrapper
include Scriptable
# wrap an arbitrary (ruby) object
def self.wrap(object, scope = nil)
Rhino::Ruby.cache(object) { new(object, scope) }
end
TYPE = JS::TopLevel::Builtins::Object
def initialize(object, scope)
super()
@ruby = object
JS::ScriptRuntime.setBuiltinProtoAndParent(self, scope, TYPE) if scope
end
# abstract Object Wrapper#unwrap();
def unwrap
@ruby
end
# abstract String Scriptable#getClassName();
def getClassName
@ruby.class.to_s # to_s handles 'nameless' classes as well
end
def toString
"[ruby #{getClassName}]" # [object User]
end
# protected Object ScriptableObject#equivalentValues(Object value)
def equivalentValues(other) # JS == operator
other.is_a?(Object) && unwrap.eql?(other.unwrap)
end
alias_method :'==', :equivalentValues
end
class Function < JS::BaseFunction
include Scriptable
# wrap a callable (Method/Proc)
def self.wrap(callable, scope = nil)
# NOTE: === seems 'correctly' impossible without having multiple
# instances of the 'same' wrapper function (even with an UnboundMethod),
# suppose :
#
# var foo1 = one.foo;
# var foo2 = two.foo;
# foo1 === foo2; // expect 'same' reference
# foo1(); foo2(); // one ref but different implicit 'this' objects
#
# returns different instances as obj1.method(:foo) != obj2.method(:foo)
#
new(callable, scope)
end
def initialize(callable, scope)
super()
@callable = callable
JS::ScriptRuntime.setFunctionProtoAndParent(self, scope) if scope
end
def unwrap
@callable
end
# override int BaseFunction#getLength()
def getLength
arity = @callable.arity
arity < 0 ? ( arity + 1 ).abs : arity
end
# #deprecated int BaseFunction#getArity()
def getArity
getLength
end
# override String BaseFunction#getFunctionName()
def getFunctionName
@callable.is_a?(Proc) ? "" : @callable.name
end
# protected Object ScriptableObject#equivalentValues(Object value)
def equivalentValues(other) # JS == operator
return false unless other.is_a?(Function)
return true if unwrap == other.unwrap
# Method.== does check if their bind to the same object
# JS == means they might be bind to different objects :
unwrap.to_s == other.unwrap.to_s # "#<Method: Foo#bar>"
end
alias_method :'==', :equivalentValues
# override Object BaseFunction#call(Context context, Scriptable scope,
# Scriptable thisObj, Object[] args)
def call(context, scope, this, args)
args = args.to_a # java.lang.Object[] -> Array
# JS function style :
if ( arity = @callable.arity ) != -1 # (a1, *a).arity == -2
if arity > -1 && args.size > arity # omit 'redundant' arguments
args = args.slice(0, arity)
elsif arity > args.size || # fill 'missing' arguments
( arity < -1 && (arity = arity.abs - 1) > args.size )
(arity - args.size).times { args.push(nil) }
end
end
rb_args = Rhino.args_to_ruby(args)
begin
result = @callable.call(*rb_args)
rescue => e
# ... correct wrapping thus it's try { } catch (e) works in JS :
raise Rhino::Ruby.wrap_error(e)
end
Rhino.to_javascript(result, scope)
end
end
class Constructor < Function
include JS::Wrapper
# wrap a ruby class as as constructor function
def self.wrap(klass, scope = nil)
new(klass, scope)
end
def initialize(klass, scope)
super(klass.method(:new), scope)
@klass = klass
end
def unwrap
@klass
end
# override int BaseFunction#getLength()
def getLength
arity = @klass.instance_method(:initialize).arity
arity < 0 ? ( arity + 1 ).abs : arity
end
# override boolean Scriptable#hasInstance(Scriptable instance);
def hasInstance(instance)
return false unless instance
return true if instance.is_a?(@klass)
instance.is_a?(Object) && instance.unwrap.is_a?(@klass)
end
end
def self.cache(key)
return yield unless @@cache
fetch(key) || store(key, yield)
end
private
# NOTE: just to get === comparison's working ...
# if == is enough might be disabled by setting to nil
@@cache = java.util.WeakHashMap.new
def self.fetch(key)
ref = @@cache.get(key)
ref ? ref.get : nil
end
def self.store(key, value)
@@cache.put(key, java.lang.ref.WeakReference.new(value))
value
end
end
RubyObject = Ruby::Object
RubyFunction = Ruby::Function
RubyConstructor = Ruby::Constructor
end