From e567a5eb1afe1ac38f1da37f1c1e3922bbf79d2a Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Tue, 27 Dec 2005 03:11:03 +0000 Subject: Add ActiveSupport::JSON and Object#to_json for converting Ruby objects to JSON strings git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3356 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/json.rb | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 activesupport/lib/active_support/json.rb (limited to 'activesupport/lib/active_support/json.rb') diff --git a/activesupport/lib/active_support/json.rb b/activesupport/lib/active_support/json.rb new file mode 100644 index 0000000000..77c7225c66 --- /dev/null +++ b/activesupport/lib/active_support/json.rb @@ -0,0 +1,28 @@ +require 'active_support/json/encoders' + +module ActiveSupport + module JSON #:nodoc: + class CircularReferenceError < StandardError; 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 -- cgit v1.2.3