Class: ActiveHash::Base

Inherits:
Object
  • Object
show all
Extended by:
ActiveModel::Naming
Includes:
ActiveModel::Conversion
Defined in:
lib/active_hash/base.rb

Direct Known Subclasses

ActiveFile::Base

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) {|_self| ... } ⇒ Base

Returns a new instance of Base.

Yields:

  • (_self)

Yield Parameters:



387
388
389
390
391
392
393
394
# File 'lib/active_hash/base.rb', line 387

def initialize(attributes = {})
  attributes.symbolize_keys!
  @attributes = attributes
  attributes.dup.each do |key, value|
    send "#{key}=", value
  end
  yield self if block_given?
end

Class Method Details

.add_default_value(field_name, default_value) ⇒ Object



257
258
259
260
# File 'lib/active_hash/base.rb', line 257

def add_default_value field_name, default_value
  self.default_attributes ||= {}
  self.default_attributes[field_name] = default_value
end

.add_to_record_index(entry) ⇒ Object



138
139
140
# File 'lib/active_hash/base.rb', line 138

def add_to_record_index(entry)
  record_index.merge!(entry)
end

.all(options = {}) ⇒ Object



165
166
167
168
169
# File 'lib/active_hash/base.rb', line 165

def all(options = {})
  relation = ActiveHash::Relation.new(self, @records || [])
  relation = relation.where!(options[:conditions]) if options[:conditions]
  relation
end

.all_in_processObject



121
122
123
# File 'lib/active_hash/base.rb', line 121

def all_in_process
  all
end

.auto_assign_fields(array_of_hashes) ⇒ Object



326
327
328
329
330
331
332
333
334
335
336
337
338
# File 'lib/active_hash/base.rb', line 326

def auto_assign_fields(array_of_hashes)
  (array_of_hashes || []).inject([]) do |array, row|
    row.symbolize_keys!
    row.keys.each do |key|
      unless key.to_s == "id"
        array << key
      end
    end
    array
  end.uniq.each do |key|
    field key
  end
end

.base_classObject

Needed for ActiveRecord polymorphic associations



343
344
345
# File 'lib/active_hash/base.rb', line 343

def base_class
  ActiveHash::Base
end

.cache_keyObject



37
38
39
40
41
42
43
# File 'lib/active_hash/base.rb', line 37

def cache_key
  if Object.const_defined?(:ActiveModel)
    model_name.cache_key
  else
    ActiveSupport::Inflector.tableize(self.name).downcase
  end
end

.compute_type(type_name) ⇒ Object



59
60
61
# File 'lib/active_hash/base.rb', line 59

def compute_type(type_name)
  self
end

.configuration_for_custom_finder(finder_name) ⇒ Object



245
246
247
248
249
250
251
252
253
# File 'lib/active_hash/base.rb', line 245

def configuration_for_custom_finder(finder_name)
  if finder_name.to_s.match(/^find_(all_)?by_(.*?)(!)?$/) && !($1 && $3)
    {
      :all? => !!$1,
      :bang? => !!$3,
      :fields => $2.split('_and_')
    }
  end
end

.create(attributes = {}) ⇒ Object Also known as: add



150
151
152
153
154
155
# File 'lib/active_hash/base.rb', line 150

def create(attributes = {})
  record = new(attributes)
  record.save
  mark_dirty
  record
end

.create!(attributes = {}) ⇒ Object



159
160
161
162
163
# File 'lib/active_hash/base.rb', line 159

def create!(attributes = {})
  record = new(attributes)
  record.save!
  record
end

.dataObject



71
72
73
# File 'lib/active_hash/base.rb', line 71

def data
  _data
end

.data=(array_of_hashes) ⇒ Object



75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/active_hash/base.rb', line 75

def data=(array_of_hashes)
  mark_dirty
  @records = nil
  reset_record_index
  self._data = array_of_hashes
  if array_of_hashes
    auto_assign_fields(array_of_hashes)
    array_of_hashes.each do |hash|
      insert new(hash)
    end
  end
end

.define_custom_find_all_method(field_name) ⇒ Object



309
310
311
312
313
314
315
316
317
318
319
320
321
322
# File 'lib/active_hash/base.rb', line 309

def define_custom_find_all_method(field_name)
  method_name = :"find_all_by_#{field_name}"
  unless singleton_methods.include?(method_name)
    the_meta_class.instance_eval do
      unless singleton_methods.include?(method_name)
        define_method(method_name) do |*args|
          args.extract_options!
          identifier = args[0]
          all.select { |record| record.send(field_name) == identifier }
        end
      end
    end
  end
end

.define_custom_find_method(field_name) ⇒ Object



294
295
296
297
298
299
300
301
302
303
304
305
# File 'lib/active_hash/base.rb', line 294

def define_custom_find_method(field_name)
  method_name = :"find_by_#{field_name}"
  unless singleton_methods.include?(method_name)
    the_meta_class.instance_eval do
      define_method(method_name) do |*args|
        args.extract_options!
        identifier = args[0]
        all.detect { |record| record.send(field_name) == identifier }
      end
    end
  end
end

.define_getter_method(field, default_value) ⇒ Object



262
263
264
265
266
267
268
# File 'lib/active_hash/base.rb', line 262

def define_getter_method(field, default_value)
  unless instance_methods.include?(field.to_sym)
    define_method(field) do
      attributes[field].nil? ? default_value : attributes[field]
    end
  end
end

.define_interrogator_method(field) ⇒ Object



283
284
285
286
287
288
289
290
# File 'lib/active_hash/base.rb', line 283

def define_interrogator_method(field)
  method_name = :"#{field}?"
  unless instance_methods.include?(method_name)
    define_method(method_name) do
      send(field).present?
    end
  end
end

.define_setter_method(field) ⇒ Object



272
273
274
275
276
277
278
279
# File 'lib/active_hash/base.rb', line 272

def define_setter_method(field)
  method_name = :"#{field}="
  unless instance_methods.include?(method_name)
    define_method(method_name) do |new_val|
      @attributes[field] = new_val
    end
  end
end

.delete_allObject



183
184
185
186
187
# File 'lib/active_hash/base.rb', line 183

def delete_all
  mark_dirty
  reset_record_index
  @records = []
end

.empty?Boolean

Returns:

  • (Boolean)


67
68
69
# File 'lib/active_hash/base.rb', line 67

def empty?
  false
end

.exists?(args = nil) ⇒ Boolean

Returns:

  • (Boolean)


88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/active_hash/base.rb', line 88

def exists?(args = nil)
  if args.respond_to?(:id)
    record_index[args.id.to_s].present?
  elsif args == false
    false
  elsif args.nil?
    all.present?
  elsif args.is_a?(Hash)
    all.where(args).present?
  else
    all.where(id: args.to_i).present?
  end
end

.field(field_name, options = {}) ⇒ Object



196
197
198
199
200
201
202
203
204
205
206
# File 'lib/active_hash/base.rb', line 196

def field(field_name, options = {})
  validate_field(field_name)
  field_names << field_name

  add_default_value(field_name, options[:default]) if options.key?(:default)
  define_getter_method(field_name, options[:default])
  define_setter_method(field_name)
  define_interrogator_method(field_name)
  define_custom_find_method(field_name)
  define_custom_find_all_method(field_name)
end

.field_namesObject



49
50
51
# File 'lib/active_hash/base.rb', line 49

def field_names
  @field_names ||= []
end

.fields(*args) ⇒ Object



189
190
191
192
193
194
# File 'lib/active_hash/base.rb', line 189

def fields(*args)
  options = args.extract_options!
  args.each do |field|
    field(field, options)
  end
end

.insert(record) ⇒ Object



102
103
104
105
106
107
108
109
110
# File 'lib/active_hash/base.rb', line 102

def insert(record)
  @records ||= []
  record[:id] ||= next_id
  validate_unique_id(record) if dirty
  mark_dirty

  add_to_record_index({ record.id.to_s => @records.length })
  @records << record
end

.mark_cleanObject



366
367
368
# File 'lib/active_hash/base.rb', line 366

def mark_clean
  self.dirty = false
end

.mark_dirtyObject



360
361
362
# File 'lib/active_hash/base.rb', line 360

def mark_dirty
  self.dirty = true
end

.method_missing(method_name, *args) ⇒ Object



226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# File 'lib/active_hash/base.rb', line 226

def method_missing(method_name, *args)
  return super unless respond_to? method_name

  config = configuration_for_custom_finder(method_name)
  attribute_pairs = config[:fields].zip(args)
  matches = all.select { |base| attribute_pairs.all? { |field, value| base.send(field).to_s == value.to_s } }

  if config[:all?]
    matches
  else
    result = matches.first
    if config[:bang?]
      result || raise(RecordNotFound, "Couldn\'t find #{name} with #{attribute_pairs.collect { |pair| "#{pair[0]} = #{pair[1]}" }.join(', ')}")
    else
      result
    end
  end
end

.next_idObject



112
113
114
115
116
117
118
119
# File 'lib/active_hash/base.rb', line 112

def next_id
  max_record = all_in_process.max { |a, b| a.id <=> b.id }
  if max_record.nil?
    1
  elsif max_record.id.is_a?(Numeric)
    max_record.id.succ
  end
end

.pluralize_table_namesObject



63
64
65
# File 'lib/active_hash/base.rb', line 63

def pluralize_table_names
  true
end

.polymorphic_nameObject

Needed for ActiveRecord polymorphic associations(rails/rails#32148)



348
349
350
# File 'lib/active_hash/base.rb', line 348

def polymorphic_name
  base_class.name
end

.primary_keyObject



45
46
47
# File 'lib/active_hash/base.rb', line 45

def primary_key
  "id"
end

.record_indexObject



126
127
128
# File 'lib/active_hash/base.rb', line 126

def record_index
  @record_index ||= {}
end

.reloadObject



352
353
354
355
356
# File 'lib/active_hash/base.rb', line 352

def reload
  reset_record_index
  self.data = _data
  mark_clean
end

.reset_record_indexObject



132
133
134
# File 'lib/active_hash/base.rb', line 132

def reset_record_index
  record_index.clear
end

.respond_to?(method_name, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


216
217
218
219
220
221
222
223
224
# File 'lib/active_hash/base.rb', line 216

def respond_to?(method_name, include_private=false)
  super ||
    begin
      config = configuration_for_custom_finder(method_name)
      config && config[:fields].all? do |field|
        field_names.include?(field.to_sym) || field.to_sym == :id
      end
    end
end

.scope(name, body) ⇒ Object

Raises:

  • (ArgumentError)


372
373
374
375
376
377
378
379
380
381
382
383
# File 'lib/active_hash/base.rb', line 372

def scope(name, body)
  raise ArgumentError, 'body needs to be callable' unless body.respond_to?(:call)

  self.scopes ||= {}
  self.scopes[name] = body

  the_meta_class.instance_eval do
    define_method(name) do |*args|
      instance_exec(*args, &body)
    end
  end
end

.the_meta_classObject



53
54
55
56
57
# File 'lib/active_hash/base.rb', line 53

def the_meta_class
  class << self
    self
  end
end

.transactionObject



173
174
175
176
177
178
179
180
181
# File 'lib/active_hash/base.rb', line 173

def transaction
  yield
rescue LocalJumpError => err
  raise err
rescue StandardError => e
  unless Object.const_defined?(:ActiveRecord) && e.is_a?(ActiveRecord::Rollback)
    raise e
  end
end

.validate_field(field_name) ⇒ Object



208
209
210
211
212
# File 'lib/active_hash/base.rb', line 208

def validate_field(field_name)
  if [:attributes].include?(field_name.to_sym)
    raise ReservedFieldError.new("#{field_name} is a reserved field in ActiveHash.  Please use another name.")
  end
end

.validate_unique_id(record) ⇒ Object

Raises:



144
145
146
# File 'lib/active_hash/base.rb', line 144

def validate_unique_id(record)
  raise IdError.new("Duplicate ID found for record #{record.attributes.inspect}") if record_index.has_key?(record.id.to_s)
end

Instance Method Details

#[](key) ⇒ Object



404
405
406
# File 'lib/active_hash/base.rb', line 404

def [](key)
  attributes[key]
end

#[]=(key, val) ⇒ Object



413
414
415
# File 'lib/active_hash/base.rb', line 413

def []=(key, val)
  @attributes[key] = val
end

#_read_attribute(key) ⇒ Object Also known as: read_attribute



408
409
410
# File 'lib/active_hash/base.rb', line 408

def _read_attribute(key)
  attributes[key]
end

#attributesObject



396
397
398
399
400
401
402
# File 'lib/active_hash/base.rb', line 396

def attributes
  if self.class.default_attributes
    (self.class.default_attributes.merge @attributes).freeze
  else
    @attributes
  end
end

#cache_keyObject



453
454
455
456
457
458
459
460
461
462
463
464
465
466
# File 'lib/active_hash/base.rb', line 453

def cache_key
  case
    when new_record?
      "#{self.class.cache_key}/new"
    when timestamp = self[:updated_at]
      if ActiveSupport::VERSION::MAJOR < 7
        "#{self.class.cache_key}/#{id}-#{timestamp.to_s(:number)}"
      else
        "#{self.class.cache_key}/#{id}-#{timestamp.to_fs(:number)}"
      end
    else
      "#{self.class.cache_key}/#{id}"
  end
end

#destroyed?Boolean

Returns:

  • (Boolean)


431
432
433
# File 'lib/active_hash/base.rb', line 431

def destroyed?
  false
end

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


443
444
445
# File 'lib/active_hash/base.rb', line 443

def eql?(other)
  other.instance_of?(self.class) and not id.nil? and (id == other.id)
end

#errorsObject



468
469
470
471
472
473
474
475
476
477
478
479
480
# File 'lib/active_hash/base.rb', line 468

def errors
  obj = Object.new

  def obj.[](key)
    []
  end

  def obj.full_messages()
    []
  end

  obj
end

#hashObject



449
450
451
# File 'lib/active_hash/base.rb', line 449

def hash
  id.hash
end

#idObject Also known as: quoted_id



417
418
419
# File 'lib/active_hash/base.rb', line 417

def id
  attributes[:id] ? attributes[:id] : nil
end

#id=(id) ⇒ Object



421
422
423
# File 'lib/active_hash/base.rb', line 421

def id=(id)
  @attributes[:id] = id
end

#marked_for_destruction?Boolean

Returns:

  • (Boolean)


495
496
497
# File 'lib/active_hash/base.rb', line 495

def marked_for_destruction?
  false
end

#new_record?Boolean

Returns:

  • (Boolean)


427
428
429
# File 'lib/active_hash/base.rb', line 427

def new_record?
  !self.class.all.include?(self)
end

#persisted?Boolean

Returns:

  • (Boolean)


435
436
437
# File 'lib/active_hash/base.rb', line 435

def persisted?
  self.class.all.map(&:id).include?(id)
end

#readonly?Boolean

Returns:

  • (Boolean)


439
440
441
# File 'lib/active_hash/base.rb', line 439

def readonly?
  true
end

#save(*args) ⇒ Object Also known as: save!



482
483
484
485
486
487
# File 'lib/active_hash/base.rb', line 482

def save(*args)
  unless self.class.exists?(self)
    self.class.insert(self)
  end
  true
end

#to_paramObject



30
31
32
# File 'lib/active_hash/base.rb', line 30

def to_param
  id.present? ? id.to_s : nil
end

#valid?Boolean

Returns:

  • (Boolean)


491
492
493
# File 'lib/active_hash/base.rb', line 491

def valid?
  true
end