mirror of
https://github.com/github/rails.git
synced 2026-01-30 16:58:15 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3754 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
37 lines
982 B
Ruby
37 lines
982 B
Ruby
require 'active_support/json/encoders'
|
|
|
|
module ActiveSupport
|
|
module JSON #:nodoc:
|
|
class CircularReferenceError < StandardError; end
|
|
# returns the literal string as its JSON encoded form. Useful for passing javascript variables into functions.
|
|
#
|
|
# page.call 'Element.show', ActiveSupport::JSON::Variable.new("$$(#items li)")
|
|
class Variable < String
|
|
def to_json
|
|
self
|
|
end
|
|
end
|
|
|
|
class << self
|
|
REFERENCE_STACK_VARIABLE = :json_reference_stack
|
|
|
|
def encode(value)
|
|
raise_on_circular_reference(value) do
|
|
Encoders[value.class].call(value)
|
|
end
|
|
end
|
|
|
|
protected
|
|
def raise_on_circular_reference(value)
|
|
stack = Thread.current[REFERENCE_STACK_VARIABLE] ||= []
|
|
raise CircularReferenceError, 'object references itself' if
|
|
stack.include? value
|
|
stack << value
|
|
yield
|
|
ensure
|
|
stack.pop
|
|
end
|
|
end
|
|
end
|
|
end
|