mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
b1968708e1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7736 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
38 lines
1 KiB
Ruby
38 lines
1 KiB
Ruby
require 'active_support/json/variable'
|
|
|
|
require 'active_support/json/encoders/object' # Require explicitly for rdoc.
|
|
Dir["#{File.dirname(__FILE__)}/encoders/**/*.rb"].each do |file|
|
|
basename = File.basename(file, '.rb')
|
|
unless basename == 'object'
|
|
require "active_support/json/encoders/#{basename}"
|
|
end
|
|
end
|
|
|
|
module ActiveSupport
|
|
module JSON
|
|
class CircularReferenceError < StandardError
|
|
end
|
|
|
|
class << self
|
|
REFERENCE_STACK_VARIABLE = :json_reference_stack #:nodoc:
|
|
|
|
# Converts a Ruby object into a JSON string.
|
|
def encode(value, options = {})
|
|
raise_on_circular_reference(value) do
|
|
value.send(:to_json, options)
|
|
end
|
|
end
|
|
|
|
protected
|
|
def raise_on_circular_reference(value) #:nodoc:
|
|
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
|