Module: Switchman::ActiveRecord::Base

Defined in:
lib/switchman/active_record/base.rb

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/switchman/active_record/base.rb', line 56

def self.included(klass)
  klass.extend(ClassMethods)
  klass.set_callback(:initialize, :before) do
    unless @shard
      if self.class.sharded_primary_key?
        @shard = Shard.shard_for(self[self.class.primary_key], Shard.current(self.class.shard_category))
      else
        @shard = Shard.current(self.class.shard_category)
      end
    end
  end
end

Instance Method Details

#cloneObject



97
98
99
100
101
102
103
104
# File 'lib/switchman/active_record/base.rb', line 97

def clone
  result = super
  # TODO: adjust foreign keys
  # don't use the setter, cause the foreign keys are already
  # relative to this shard
  result.instance_variable_set(:@shard, self.shard)
  result
end

#destroyObject



93
94
95
# File 'lib/switchman/active_record/base.rb', line 93

def destroy
  self.class.shard(shard, :implicit).scoping { super }
end

#hashObject



112
113
114
# File 'lib/switchman/active_record/base.rb', line 112

def hash
  global_id.hash
end

#initialize_dup(*args) ⇒ Object



121
122
123
124
125
# File 'lib/switchman/active_record/base.rb', line 121

def initialize_dup(*args)
  copy = super
  @shard_set_in_stone = false
  copy
end

#save(*args) ⇒ Object



83
84
85
86
# File 'lib/switchman/active_record/base.rb', line 83

def save(*args)
  @shard_set_in_stone = true
  self.class.shard(shard, :implicit).scoping { super }
end

#save!(*args) ⇒ Object



88
89
90
91
# File 'lib/switchman/active_record/base.rb', line 88

def save!(*args)
  @shard_set_in_stone = true
  self.class.shard(shard, :implicit).scoping { super }
end

#shardObject



69
70
71
# File 'lib/switchman/active_record/base.rb', line 69

def shard
  @shard || Shard.current(self.class.shard_category) || Shard.default
end

#shard=(new_shard) ⇒ Object

Raises:

  • (::ActiveRecord::ReadOnlyRecord)


73
74
75
76
77
78
79
80
81
# File 'lib/switchman/active_record/base.rb', line 73

def shard=(new_shard)
  raise ::ActiveRecord::ReadOnlyRecord if !self.new_record? || @shard_set_in_stone
  if shard != new_shard
    attributes.each do |attr, value|
      self[attr] = Shard.relative_id_for(value, shard, new_shard) if self.class.sharded_column?(attr)
    end
    @shard = new_shard
  end
end

#to_paramObject



116
117
118
119
# File 'lib/switchman/active_record/base.rb', line 116

def to_param
  short_id = Shard.short_id_for(id)
  short_id && short_id.to_s
end

#transaction(options = {}, &block) ⇒ Object



106
107
108
109
110
# File 'lib/switchman/active_record/base.rb', line 106

def transaction(options={}, &block)
  shard.activate(self.class.shard_category) do
    self.class.transaction(options, &block)
  end
end