aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoding.rb
blob: babb65a92473cc71bee302b0f7862fdd2cfbbc7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
require 'active_support/json/variable'

require 'active_support/json/encoders/object' # Require this file explicitly for rdoc
Dir[File.dirname(__FILE__) + '/encoders/**/*.rb'].each { |file| require file[0..-4] }

module ActiveSupport
  module JSON
    # When +true+, Hash#to_json will omit quoting string or symbol keys
    # if the keys are valid JavaScript identifiers.  Note that this is
    # technically improper JSON (all object keys must be quoted), so if
    # you need strict JSON compliance, set this option to +false+.
    mattr_accessor :unquote_hash_key_identifiers
    @@unquote_hash_key_identifiers = true

    class CircularReferenceError < StandardError
    end

    class << self
      REFERENCE_STACK_VARIABLE = :json_reference_stack #:nodoc:

      # Converts a Ruby object into a JSON string.
      def encode(value)
        raise_on_circular_reference(value) do
          value.send(:to_json)
        end
      end

      def can_unquote_identifier?(key) #:nodoc:
        unquote_hash_key_identifiers && 
          ActiveSupport::JSON.valid_identifier?(key)
      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