2010-05-26 19:54:56 +03:00
|
|
|
require 'set'
|
2010-05-22 12:12:42 +03:00
|
|
|
module V8
|
2010-06-09 00:32:31 +03:00
|
|
|
class Access
|
2010-08-07 00:53:08 -05:00
|
|
|
def get(obj, name, &dontintercept)
|
2010-06-28 18:02:54 +02:00
|
|
|
methods = accessible_methods(obj)
|
2010-06-28 16:36:41 +03:00
|
|
|
if methods.include?(name)
|
|
|
|
method = obj.method(name)
|
2010-08-30 14:23:50 -05:00
|
|
|
method.arity == 0 ? method.call : method.unbind
|
2010-06-29 08:22:41 +03:00
|
|
|
elsif obj.respond_to?(:[])
|
2010-08-06 10:23:13 -05:00
|
|
|
obj.send(:[], name, &dontintercept)
|
2010-05-22 12:12:42 +03:00
|
|
|
else
|
2010-08-06 10:23:13 -05:00
|
|
|
yield
|
2010-05-22 12:12:42 +03:00
|
|
|
end
|
|
|
|
end
|
2010-08-28 16:41:13 -05:00
|
|
|
|
2010-08-07 00:53:08 -05:00
|
|
|
def iget(obj, index, &dontintercept)
|
|
|
|
if obj.respond_to?(:[])
|
|
|
|
obj.send(:[], index, &dontintercept)
|
|
|
|
else
|
|
|
|
yield
|
2010-08-06 10:23:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-08-07 00:53:08 -05:00
|
|
|
def set(obj, name, value, &dontintercept)
|
2010-06-29 08:22:41 +03:00
|
|
|
setter = name + "="
|
2010-08-28 14:04:51 -05:00
|
|
|
methods = accessible_methods(obj, true)
|
2010-06-28 18:02:54 +02:00
|
|
|
if methods.include?(setter)
|
2010-08-06 10:23:13 -05:00
|
|
|
obj.send(setter, value)
|
2010-06-29 08:22:41 +03:00
|
|
|
elsif obj.respond_to?(:[]=)
|
2010-08-06 10:23:13 -05:00
|
|
|
obj.send(:[]=, name, value, &dontintercept)
|
2010-05-22 12:12:42 +03:00
|
|
|
else
|
2010-08-06 10:23:13 -05:00
|
|
|
yield
|
2010-05-22 12:12:42 +03:00
|
|
|
end
|
|
|
|
end
|
2010-08-07 00:53:08 -05:00
|
|
|
|
|
|
|
def iset(obj, index, value, &dontintercept)
|
|
|
|
if obj.respond_to?(:[]=)
|
|
|
|
obj.send(:[]=, index, value, &dontintercept)
|
|
|
|
else
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-08-16 15:20:04 -05:00
|
|
|
def query(obj, name, attributes)
|
|
|
|
if obj.respond_to?(name)
|
|
|
|
attributes.dont_delete
|
|
|
|
unless obj.respond_to?(name + "=")
|
|
|
|
attributes.read_only
|
|
|
|
end
|
|
|
|
else
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def iquery(obj, index, attributes)
|
|
|
|
if obj.respond_to?(:[])
|
|
|
|
attributes.dont_delete
|
|
|
|
unless obj.respond_to?(:[]=)
|
|
|
|
attributes.read_only
|
|
|
|
end
|
|
|
|
else
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def names(obj)
|
2010-08-28 14:04:51 -05:00
|
|
|
accessible_methods(obj)
|
2010-08-16 15:20:04 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def indices(obj)
|
|
|
|
obj.respond_to?(:length) ? (0..obj.length).to_a : yield
|
|
|
|
end
|
|
|
|
|
2010-08-28 10:46:30 -05:00
|
|
|
private
|
|
|
|
|
2010-08-28 14:04:51 -05:00
|
|
|
def accessible_methods(obj, special_methods = false)
|
2010-08-07 00:53:08 -05:00
|
|
|
obj.public_methods(false).map {|m| m.to_s}.to_set.tap do |methods|
|
|
|
|
ancestors = obj.class.ancestors.dup
|
|
|
|
while ancestor = ancestors.shift
|
|
|
|
break if ancestor == ::Object
|
|
|
|
methods.merge(ancestor.public_instance_methods(false).map {|m| m.to_s})
|
|
|
|
end
|
2010-08-28 14:04:51 -05:00
|
|
|
methods.reject! {|m| m == "[]" || m == "[]=" || m =~ /=$/} unless special_methods
|
2010-08-07 00:53:08 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-08-06 10:23:13 -05:00
|
|
|
end
|