Class: ActiveRecord::Base

Inherits:
Object
  • Object
show all
Includes:
CompositePrimaryKeys::ActiveRecord::Persistence
Defined in:
lib/composite_primary_keys/base.rb,
lib/composite_primary_keys/connection_adapters/abstract/connection_specification_changes.rb

Defined Under Namespace

Modules: CompositeClassMethods, CompositeInstanceMethods

Constant Summary collapse

INVALID_FOR_COMPOSITE_KEYS =
'Not appropriate for composite primary keys'
NOT_IMPLEMENTED_YET =
'Not implemented for composite primary keys yet'

Class Method Summary collapse

Instance Method Summary collapse

Methods included from CompositePrimaryKeys::ActiveRecord::Persistence

#relation_for_destroy, #touch, #update_record

Class Method Details

.clear_active_connections!Object



59
60
61
# File 'lib/composite_primary_keys/connection_adapters/abstract/connection_specification_changes.rb', line 59

def clear_active_connections!
  connection_handler.clear_active_connections!
end

.composite?Boolean

Returns:

  • (Boolean)


53
54
55
# File 'lib/composite_primary_keys/base.rb', line 53

def composite?
  false
end

.connected?Boolean

Returns true if Active Record is connected.

Returns:

  • (Boolean)


51
52
53
# File 'lib/composite_primary_keys/connection_adapters/abstract/connection_specification_changes.rb', line 51

def connected?
  connection_handler.connected?(self)
end

.connectionObject

Returns the connection currently associated with the class. This can also be used to “borrow” the connection to do database work unrelated to any of the specific Active Records.



28
29
30
# File 'lib/composite_primary_keys/connection_adapters/abstract/connection_specification_changes.rb', line 28

def connection
  retrieve_connection
end

.connection_configObject

Returns the configuration of the associated connection as a hash:

ActiveRecord::Base.connection_config
# => {:pool=>5, :timeout=>5000, :database=>"db/development.sqlite3", :adapter=>"sqlite3"}

Please use only for reading.



38
39
40
# File 'lib/composite_primary_keys/connection_adapters/abstract/connection_specification_changes.rb', line 38

def connection_config
  connection_pool.spec.config
end

.connection_poolObject



42
43
44
# File 'lib/composite_primary_keys/connection_adapters/abstract/connection_specification_changes.rb', line 42

def connection_pool
  connection_handler.retrieve_connection_pool(self)
end

.establish_connection(spec = ENV["DATABASE_URL"]) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/composite_primary_keys/connection_adapters/abstract/connection_specification_changes.rb', line 9

def self.establish_connection(spec = ENV["DATABASE_URL"])
  resolver = ConnectionAdapters::ConnectionSpecification::Resolver.new spec, configurations
  spec = resolver.spec
  
  # CPK
  load_cpk_adapter(spec.config[:adapter])
  
  unless respond_to?(spec.adapter_method)
    raise AdapterNotFound, "database configuration specifies nonexistent #{spec.config[:adapter]} adapter"
  end

  remove_connection
  connection_handler.establish_connection self, spec
end

.load_cpk_adapter(adapter) ⇒ Object



3
4
5
6
7
# File 'lib/composite_primary_keys/connection_adapters/abstract/connection_specification_changes.rb', line 3

def self.load_cpk_adapter(adapter)
  if (adapter.to_s =~ /postgresql/) or (adapter.to_s =~ /postgis/)
    require "composite_primary_keys/connection_adapters/postgresql_adapter.rb"
  end
end

.primary_keysObject



12
13
14
15
16
17
# File 'lib/composite_primary_keys/base.rb', line 12

def primary_keys
  unless defined?(@primary_keys)
    reset_primary_keys
  end
  @primary_keys
end

.primary_keys=(keys) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/composite_primary_keys/base.rb', line 26

def primary_keys=(keys)
  unless keys.kind_of?(Array)
    self.primary_key = keys
    return
  end

  @primary_keys = keys.map { |k| k.to_s }.to_composite_keys

  class_eval <<-EOV
    extend  CompositeClassMethods
    include CompositeInstanceMethods
  EOV
end

.remove_connection(klass = self) ⇒ Object



55
56
57
# File 'lib/composite_primary_keys/connection_adapters/abstract/connection_specification_changes.rb', line 55

def remove_connection(klass = self)
  connection_handler.remove_connection(klass)
end

.reset_primary_keysObject

Don’t like this method name, but its modeled after how AR does it



20
21
22
23
24
# File 'lib/composite_primary_keys/base.rb', line 20

def reset_primary_keys
  if self != base_class
    self.primary_keys = base_class.primary_keys
  end
end

.retrieve_connectionObject



46
47
48
# File 'lib/composite_primary_keys/connection_adapters/abstract/connection_specification_changes.rb', line 46

def retrieve_connection
  connection_handler.retrieve_connection(self)
end

.set_primary_keys(*keys) ⇒ Object



40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/composite_primary_keys/base.rb', line 40

def set_primary_keys(*keys)
   ActiveSupport::Deprecation.warn(
       "Calling set_primary_keys is deprecated. Please use `self.primary_keys = keys` instead."
   )

   keys = keys.first if keys.first.is_a?(Array)
   if keys.length == 1
     self.primary_key = keys.first
   else
     self.primary_keys = keys
   end
end

Instance Method Details

#composite?Boolean

Returns:

  • (Boolean)


58
59
60
# File 'lib/composite_primary_keys/base.rb', line 58

def composite?
  self.class.composite?
end