require 'configurable/delegate' module Configurable # DelegateHash delegates get and set operations to instance methods on a receiver. # # class Sample # attr_accessor :key # end # sample = Sample.new # # dhash = DelegateHash.new # dhash.delegates[:key] = Delegate.new(:key) # dhash.bind(sample) # # sample.key = 'value' # dhash[:key] # => 'value' # # dhash[:key] = 'another' # sample.key # => 'another' # # Non-delegate keys are sent to an underlying data store: # # dhash[:not_delegated] = 'value' # dhash[:not_delegated] # => 'value' # # dhash.store # => {:not_delegated => 'value'} # dhash.to_hash # => {:key => 'another', :not_delegated => 'value'} # # ==== IndifferentAccess # # The delegates hash maps keys to Delegate objects. In cases where multiple # keys need to map to the same delegate (for example when you want indifferent # access for strings and symbols), simply extend the delegate hash so that the # AGET ([]) method returns the correct delegate in all cases. # class DelegateHash # The bound receiver attr_reader :receiver # The underlying data store attr_reader :store # A hash of (key, Delegate) pairs identifying which # keys to delegate to the receiver attr_reader :delegates # Initializes a new DelegateHash. Note that initialize simply sets the # receiver, it does NOT map stored values the same way bind does. This # allows quick, implicit binding when the store is set up beforehand. # # For more standard binding use: DelegateHash.new.bind(receiver) def initialize(delegates={}, store={}, receiver=nil) @store = store @delegates = delegates @receiver = receiver end # Binds self to the specified receiver. Delegate values are removed from # store and sent to their writer on receiver. If the store has no value # for a delegate key, the delegate default value will be used. def bind(receiver) raise ArgumentError, "receiver cannot be nil" if receiver == nil if bound? if @receiver == receiver return(self) else raise ArgumentError, "already bound to: #{@receiver}" end end @receiver = receiver map(store) self end # Returns true if self is bound to a receiver def bound? receiver != nil end # Unbinds self from the specified receiver. Delegate values # are stored in store. Returns the unbound receiver. def unbind unmap(store) @receiver = nil self end # Retrieves the value corresponding to the key. When bound, delegates pull # values from the receiver using the delegate.reader method; otherwise the # value in store will be returned. When unbound, if the store has no value # for a delegate, the delgate default value will be returned. def [](key) return store[key] unless delegate = delegates[key] case when bound? receiver.send(delegate.reader) when store.has_key?(key) store[key] else store[key] = delegate.default end end # Stores a value for the key. When bound, delegates set the value in the # receiver using the delegate.writer method; otherwise values are stored in # store. def []=(key, value) if bound? && delegate = delegates[key] receiver.send(delegate.writer, value) else store[key] = value end end # Returns the union of delegate and store keys. def keys delegates.keys | store.keys end # True if the key is an assigned delegate or store key. def has_key?(key) delegates.has_key?(key) || store.has_key?(key) end # Merges another with self. def merge!(another) if bound? (delegates.keys | another.keys).each do |key| self[key] = another[key] if another.has_key?(key) end else # optimization for the common case of an # unbound merge of another hash store.merge!(another.to_hash) end end # Calls block once for each key-value pair stored in self. def each_pair # :yields: key, value keys.each {|key| yield(key, self[key]) } end # Equal if the to_hash values of self and another are equal. def ==(another) another.respond_to?(:to_hash) && to_hash == another.to_hash end # Returns self as a hash. Any DelegateHash values are recursively # hashified, to account for nesting. def to_hash hash = {} each_pair do |key, value| hash[key] = value.kind_of?(DelegateHash) ? value.to_hash : value end hash end # Overrides default inspect to show the to_hash values. def inspect "#<#{self.class}:#{object_id} to_hash=#{to_hash.inspect}>" end # Ensures duplicates are unbound and store the same values as the original. def initialize_copy(orig) super @receiver = nil @store = @store.dup orig.unmap(@store) if orig.bound? end protected # helper to map delegate values from source to the receiver def map(source) # :nodoc: delegates.each_pair do |key, delegate| # map the value; if no value is set in the source then use the # delegate default. if map_default is false, then simply skip... # this ensures each config is initialized to a value when bound # UNLESS map_default is set (indicating manual initialization) value = case when source.has_key?(key) then source.delete(key) when delegate[:set_default, true] then delegate.default else next end receiver.send(delegate.writer, value) end end # helper to unmap delegates from the receiver to a target hash def unmap(target) # :nodoc: delegates.each_pair do |key, delegate| target[key] = receiver.send(delegate.reader) end end end end