store.rb 6.9 KB
Newer Older
1 2
require 'active_support/core_ext/hash/indifferent_access'

3 4
module ActiveRecord
  # Store gives you a thin wrapper around serialize for the purpose of storing hashes in a single column.
C
chrismcc 已提交
5
  # It's like a simple key/value store baked into your record when you don't care about being able to
6 7 8 9 10 11 12 13 14
  # query that store outside the context of a single record.
  #
  # You can then declare accessors to this store that are then accessible just like any other attribute
  # of the model. This is very helpful for easily exposing store keys to a form or elsewhere that's
  # already built around just accessing attributes on the model.
  #
  # Make sure that you declare the database column used for the serialized store as a text, so there's
  # plenty of room.
  #
15 16 17
  # You can set custom coder to encode/decode your serialized attributes to/from different formats.
  # JSON, YAML, Marshal are supported out of the box. Generally it can be any wrapper that provides +load+ and +dump+.
  #
18 19 20 21
  # NOTE - If you are using PostgreSQL specific columns like +hstore+ or +json+ there is no need for
  # the serialization provided by +store+. Simply use +store_accessor+ instead to generate
  # the accessor methods. Be aware that these columns use a string keyed hash and do not allow access
  # using a symbol.
22
  #
23 24 25
  # Examples:
  #
  #   class User < ActiveRecord::Base
26
  #     store :settings, accessors: [ :color, :homepage ], coder: JSON
27
  #   end
28
  #
29
  #   u = User.new(color: 'black', homepage: '37signals.com')
30 31 32 33 34 35
  #   u.color                          # Accessor stored attribute
  #   u.settings[:country] = 'Denmark' # Any attribute, even if not specified with an accessor
  #
  #   # There is no difference between strings and symbols for accessing custom attributes
  #   u.settings[:country]  # => 'Denmark'
  #   u.settings['country'] # => 'Denmark'
36 37 38 39 40
  #
  #   # Add additional accessors to an existing store through store_accessor
  #   class SuperUser < User
  #     store_accessor :settings, :privileges, :servants
  #   end
41 42 43 44
  #
  # The stored attribute names can be retrieved using +stored_attributes+.
  #
  #   User.stored_attributes[:settings] # [:color, :homepage]
M
Matt Jones 已提交
45 46 47 48 49
  #
  # == Overwriting default accessors
  #
  # All stored values are automatically available through accessors on the Active Record
  # object, but sometimes you want to specialize this behavior. This can be done by overwriting
50 51
  # the default accessors (using the same name as the attribute) and calling <tt>super</tt>
  # to actually change things.
M
Matt Jones 已提交
52 53 54 55 56 57
  #
  #   class Song < ActiveRecord::Base
  #     # Uses a stored integer to hold the volume adjustment of the song
  #     store :settings, accessors: [:volume_adjustment]
  #
  #     def volume_adjustment=(decibels)
58
  #       super(decibels.to_i)
M
Matt Jones 已提交
59 60 61
  #     end
  #
  #     def volume_adjustment
62
  #       super.to_i
M
Matt Jones 已提交
63 64
  #     end
  #   end
65 66
  module Store
    extend ActiveSupport::Concern
67

68
    included do
69 70 71
      class << self
        attr_accessor :local_stored_attributes
      end
72 73
    end

74 75
    module ClassMethods
      def store(store_attribute, options = {})
76
        serialize store_attribute, IndifferentCoder.new(options[:coder])
77 78 79 80
        store_accessor(store_attribute, options[:accessors]) if options.has_key? :accessors
      end

      def store_accessor(store_attribute, *keys)
81
        keys = keys.flatten
82

83 84 85 86 87 88 89 90 91
        _store_accessors_module.module_eval do
          keys.each do |key|
            define_method("#{key}=") do |value|
              write_store_attribute(store_attribute, key, value)
            end

            define_method(key) do
              read_store_attribute(store_attribute, key)
            end
92 93
          end
        end
94

95 96
        # assign new store attribute and create new hash to ensure that each class in the hierarchy
        # has its own hash of stored attributes.
97 98 99
        self.local_stored_attributes ||= {}
        self.local_stored_attributes[store_attribute] ||= []
        self.local_stored_attributes[store_attribute] |= keys
100
      end
101 102 103 104 105 106 107 108

      def _store_accessors_module
        @_store_accessors_module ||= begin
          mod = Module.new
          include mod
          mod
        end
      end
109 110 111 112 113 114 115 116

      def stored_attributes
        parent = superclass.respond_to?(:stored_attributes) ? superclass.stored_attributes : {}
        if self.local_stored_attributes
          parent.merge!(self.local_stored_attributes) { |k, a, b| a | b }
        end
        parent
      end
117
    end
118

M
Matt Jones 已提交
119 120
    protected
      def read_store_attribute(store_attribute, key)
121 122
        accessor = store_accessor_for(store_attribute)
        accessor.read(self, store_attribute, key)
M
Matt Jones 已提交
123 124 125
      end

      def write_store_attribute(store_attribute, key, value)
126 127
        accessor = store_accessor_for(store_attribute)
        accessor.write(self, store_attribute, key, value)
M
Matt Jones 已提交
128 129
      end

130
    private
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
      def store_accessor_for(store_attribute)
        @column_types[store_attribute.to_s].accessor
      end

      class HashAccessor
        def self.read(object, attribute, key)
          prepare(object, attribute)
          object.public_send(attribute)[key]
        end

        def self.write(object, attribute, key, value)
          prepare(object, attribute)
          if value != read(object, attribute, key)
            object.public_send :"#{attribute}_will_change!"
            object.public_send(attribute)[key] = value
          end
        end

        def self.prepare(object, attribute)
          object.public_send :"#{attribute}=", {} unless object.send(attribute)
        end
      end

      class StringKeyedHashAccessor < HashAccessor
        def self.read(object, attribute, key)
          super object, attribute, key.to_s
        end

        def self.write(object, attribute, key, value)
          super object, attribute, key.to_s, value
        end
      end

      class IndifferentHashAccessor < ActiveRecord::Store::HashAccessor
        def self.prepare(object, store_attribute)
          attribute = object.send(store_attribute)
          unless attribute.is_a?(ActiveSupport::HashWithIndifferentAccess)
            attribute = IndifferentCoder.as_indifferent_hash(attribute)
            object.send :"#{store_attribute}=", attribute
          end
          attribute
172
        end
173
      end
174

175
    class IndifferentCoder # :nodoc:
176 177 178 179 180 181 182 183 184 185 186 187 188 189
      def initialize(coder_or_class_name)
        @coder =
          if coder_or_class_name.respond_to?(:load) && coder_or_class_name.respond_to?(:dump)
            coder_or_class_name
          else
            ActiveRecord::Coders::YAMLColumn.new(coder_or_class_name || Object)
          end
      end

      def dump(obj)
        @coder.dump self.class.as_indifferent_hash(obj)
      end

      def load(yaml)
190
        self.class.as_indifferent_hash(@coder.load(yaml || ''))
191 192 193 194
      end

      def self.as_indifferent_hash(obj)
        case obj
195
        when ActiveSupport::HashWithIndifferentAccess
196 197 198 199
          obj
        when Hash
          obj.with_indifferent_access
        else
200
          ActiveSupport::HashWithIndifferentAccess.new
201 202 203
        end
      end
    end
204
  end
205
end