composite_primary_keys 11.0.0.rc2 → 11.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +4 -4
  2. data/History.rdoc +774 -763
  3. data/Rakefile +37 -37
  4. data/lib/composite_primary_keys.rb +120 -122
  5. data/lib/composite_primary_keys/arel/sqlserver.rb +37 -37
  6. data/lib/composite_primary_keys/arel/to_sql.rb +32 -32
  7. data/lib/composite_primary_keys/associations/association.rb +23 -23
  8. data/lib/composite_primary_keys/associations/association_scope.rb +68 -68
  9. data/lib/composite_primary_keys/associations/collection_association.rb +31 -31
  10. data/lib/composite_primary_keys/associations/foreign_association.rb +15 -15
  11. data/lib/composite_primary_keys/associations/has_many_association.rb +34 -34
  12. data/lib/composite_primary_keys/associations/join_dependency.rb +102 -102
  13. data/lib/composite_primary_keys/associations/preloader/association.rb +117 -117
  14. data/lib/composite_primary_keys/attribute_methods.rb +9 -9
  15. data/lib/composite_primary_keys/attribute_methods/read.rb +27 -27
  16. data/lib/composite_primary_keys/attribute_methods/write.rb +44 -44
  17. data/lib/composite_primary_keys/autosave_association.rb +32 -32
  18. data/lib/composite_primary_keys/base.rb +130 -130
  19. data/lib/composite_primary_keys/composite_arrays.rb +51 -51
  20. data/lib/composite_primary_keys/composite_predicates.rb +69 -69
  21. data/lib/composite_primary_keys/composite_relation.rb +29 -29
  22. data/lib/composite_primary_keys/connection_adapters/abstract_adapter.rb +10 -10
  23. data/lib/composite_primary_keys/connection_adapters/abstract_mysql_adapter.rb +29 -29
  24. data/lib/composite_primary_keys/connection_adapters/postgresql/database_statements.rb +26 -26
  25. data/lib/composite_primary_keys/connection_adapters/sqlite3_adapter.rb +22 -22
  26. data/lib/composite_primary_keys/core.rb +54 -54
  27. data/lib/composite_primary_keys/counter_cache.rb +28 -28
  28. data/lib/composite_primary_keys/fixtures.rb +26 -26
  29. data/lib/composite_primary_keys/persistence.rb +120 -112
  30. data/lib/composite_primary_keys/reflection.rb +20 -20
  31. data/lib/composite_primary_keys/relation.rb +88 -88
  32. data/lib/composite_primary_keys/relation/calculations.rb +79 -79
  33. data/lib/composite_primary_keys/relation/finder_methods.rb +229 -229
  34. data/lib/composite_primary_keys/relation/predicate_builder/association_query_value.rb +20 -20
  35. data/lib/composite_primary_keys/relation/query_methods.rb +42 -42
  36. data/lib/composite_primary_keys/relation/where_clause.rb +24 -24
  37. data/lib/composite_primary_keys/sanitization.rb +42 -42
  38. data/lib/composite_primary_keys/validations/uniqueness.rb +32 -32
  39. data/lib/composite_primary_keys/version.rb +8 -8
  40. data/scripts/console.rb +48 -48
  41. data/scripts/txt2html +76 -76
  42. data/scripts/txt2js +65 -65
  43. data/tasks/databases/mysql.rake +40 -40
  44. data/tasks/databases/oracle.rake +41 -41
  45. data/tasks/databases/postgresql.rake +38 -38
  46. data/tasks/databases/sqlite.rake +25 -25
  47. data/tasks/databases/sqlserver.rake +43 -43
  48. data/tasks/website.rake +18 -18
  49. data/test/README_tests.rdoc +56 -56
  50. data/test/abstract_unit.rb +120 -120
  51. data/test/connections/connection_spec.rb +27 -27
  52. data/test/connections/databases.ci.yml +16 -16
  53. data/test/connections/databases.example.yml +40 -40
  54. data/test/connections/databases.yml +40 -40
  55. data/test/db_test.rb +52 -52
  56. data/test/fixtures/article.rb +6 -6
  57. data/test/fixtures/articles.yml +6 -6
  58. data/test/fixtures/capitol.rb +3 -3
  59. data/test/fixtures/capitols.yml +16 -16
  60. data/test/fixtures/comment.rb +7 -7
  61. data/test/fixtures/comments.yml +15 -15
  62. data/test/fixtures/db_definitions/db2-create-tables.sql +126 -126
  63. data/test/fixtures/db_definitions/db2-drop-tables.sql +18 -18
  64. data/test/fixtures/db_definitions/mysql.sql +226 -226
  65. data/test/fixtures/db_definitions/oracle.drop.sql +49 -49
  66. data/test/fixtures/db_definitions/oracle.sql +246 -246
  67. data/test/fixtures/db_definitions/postgresql.sql +229 -229
  68. data/test/fixtures/db_definitions/sqlite.sql +214 -214
  69. data/test/fixtures/db_definitions/sqlserver.sql +211 -211
  70. data/test/fixtures/department.rb +5 -5
  71. data/test/fixtures/departments.yml +15 -15
  72. data/test/fixtures/dorm.rb +2 -2
  73. data/test/fixtures/dorms.yml +4 -4
  74. data/test/fixtures/employee.rb +10 -10
  75. data/test/fixtures/employees.yml +18 -18
  76. data/test/fixtures/group.rb +2 -2
  77. data/test/fixtures/groups.yml +6 -6
  78. data/test/fixtures/hack.rb +4 -4
  79. data/test/fixtures/hacks.yml +2 -2
  80. data/test/fixtures/membership.rb +6 -6
  81. data/test/fixtures/membership_status.rb +2 -2
  82. data/test/fixtures/membership_statuses.yml +16 -16
  83. data/test/fixtures/memberships.yml +10 -10
  84. data/test/fixtures/pk_called_id.rb +5 -5
  85. data/test/fixtures/pk_called_ids.yml +11 -11
  86. data/test/fixtures/product.rb +9 -9
  87. data/test/fixtures/product_tariff.rb +5 -5
  88. data/test/fixtures/product_tariffs.yml +14 -14
  89. data/test/fixtures/products.yml +11 -11
  90. data/test/fixtures/reading.rb +4 -4
  91. data/test/fixtures/readings.yml +10 -10
  92. data/test/fixtures/reference_code.rb +7 -7
  93. data/test/fixtures/reference_code_using_composite_key_alias.rb +8 -8
  94. data/test/fixtures/reference_code_using_simple_key_alias.rb +8 -8
  95. data/test/fixtures/reference_codes.yml +28 -28
  96. data/test/fixtures/reference_type.rb +12 -12
  97. data/test/fixtures/reference_types.yml +9 -9
  98. data/test/fixtures/restaurant.rb +9 -9
  99. data/test/fixtures/restaurants.yml +14 -14
  100. data/test/fixtures/restaurants_suburb.rb +2 -2
  101. data/test/fixtures/restaurants_suburbs.yml +10 -10
  102. data/test/fixtures/room.rb +11 -11
  103. data/test/fixtures/room_assignment.rb +13 -13
  104. data/test/fixtures/room_assignments.yml +24 -24
  105. data/test/fixtures/room_attribute.rb +2 -2
  106. data/test/fixtures/room_attribute_assignment.rb +4 -4
  107. data/test/fixtures/room_attribute_assignments.yml +4 -4
  108. data/test/fixtures/room_attributes.yml +2 -2
  109. data/test/fixtures/rooms.yml +12 -12
  110. data/test/fixtures/salary.rb +5 -5
  111. data/test/fixtures/seat.rb +5 -5
  112. data/test/fixtures/seats.yml +8 -8
  113. data/test/fixtures/street.rb +2 -2
  114. data/test/fixtures/streets.yml +16 -16
  115. data/test/fixtures/student.rb +3 -3
  116. data/test/fixtures/students.yml +15 -15
  117. data/test/fixtures/suburb.rb +5 -5
  118. data/test/fixtures/suburbs.yml +14 -14
  119. data/test/fixtures/tariff.rb +5 -5
  120. data/test/fixtures/tariffs.yml +14 -14
  121. data/test/fixtures/topic.rb +5 -5
  122. data/test/fixtures/topic_source.rb +6 -6
  123. data/test/fixtures/topic_sources.yml +3 -3
  124. data/test/fixtures/topics.yml +8 -8
  125. data/test/fixtures/user.rb +10 -10
  126. data/test/fixtures/users.yml +10 -10
  127. data/test/plugins/pagination.rb +405 -405
  128. data/test/plugins/pagination_helper.rb +135 -135
  129. data/test/setup.rb +50 -50
  130. data/test/test_aliases.rb +18 -18
  131. data/test/test_associations.rb +345 -345
  132. data/test/test_attribute_methods.rb +63 -63
  133. data/test/test_attributes.rb +60 -60
  134. data/test/test_calculations.rb +42 -42
  135. data/test/test_callbacks.rb +99 -99
  136. data/test/test_composite_arrays.rb +24 -24
  137. data/test/test_counter_cache.rb +30 -30
  138. data/test/test_create.rb +164 -164
  139. data/test/test_delete.rb +167 -167
  140. data/test/test_dumpable.rb +15 -15
  141. data/test/test_dup.rb +37 -37
  142. data/test/test_enum.rb +21 -21
  143. data/test/test_equal.rb +26 -26
  144. data/test/test_exists.rb +39 -39
  145. data/test/test_find.rb +137 -137
  146. data/test/test_habtm.rb +141 -141
  147. data/test/test_ids.rb +113 -113
  148. data/test/test_miscellaneous.rb +32 -32
  149. data/test/test_nested_attributes.rb +124 -124
  150. data/test/test_optimistic.rb +18 -18
  151. data/test/test_pagination.rb +35 -35
  152. data/test/test_polymorphic.rb +27 -27
  153. data/test/test_predicates.rb +59 -59
  154. data/test/test_preload.rb +94 -94
  155. data/test/test_santiago.rb +23 -23
  156. data/test/test_suite.rb +34 -34
  157. data/test/test_touch.rb +23 -23
  158. data/test/test_tutorial_example.rb +25 -25
  159. data/test/test_update.rb +76 -76
  160. data/test/test_validations.rb +13 -13
  161. metadata +32 -33
  162. data/lib/composite_primary_keys/locking/optimistic.rb +0 -56
@@ -1,130 +1,130 @@
1
- module ActiveRecord
2
- class CompositeKeyError < StandardError #:nodoc:
3
- end
4
-
5
- class Base
6
- INVALID_FOR_COMPOSITE_KEYS = 'Not appropriate for composite primary keys'
7
- NOT_IMPLEMENTED_YET = 'Not implemented for composite primary keys yet'
8
-
9
- class << self
10
- alias_method :primary_key_without_composite_key_support=, :primary_key=
11
- def primary_key=(keys)
12
- unless keys.kind_of?(Array)
13
- self.primary_key_without_composite_key_support = keys
14
- return
15
- end
16
-
17
- @primary_keys = keys.map { |k| k.to_s }.to_composite_keys
18
-
19
- class_eval <<-EOV
20
- extend CompositeClassMethods
21
- include CompositeInstanceMethods
22
- EOV
23
- end
24
- alias_method :primary_keys=, :primary_key=
25
-
26
- def set_primary_keys(*keys)
27
- ActiveSupport::Deprecation.warn(
28
- "Calling set_primary_keys is deprecated. Please use `self.primary_keys = keys` instead."
29
- )
30
-
31
- keys = keys.first if keys.first.is_a?(Array)
32
- if keys.length == 1
33
- self.primary_key = keys.first
34
- else
35
- self.primary_keys = keys
36
- end
37
- end
38
-
39
- def composite?
40
- false
41
- end
42
- end
43
-
44
- def composite?
45
- self.class.composite?
46
- end
47
-
48
- module CompositeClassMethods
49
- def primary_keys
50
- @primary_keys = reset_primary_keys unless defined? @primary_keys
51
- @primary_keys
52
- end
53
-
54
- # Don't like this method name, but its modeled after how AR does it
55
- def reset_primary_keys #:nodoc:
56
- if self == base_class
57
- # CPK
58
- self.primary_keys = get_primary_key(base_class.name)
59
- else
60
- self.primary_keys = base_class.primary_keys
61
- end
62
- end
63
-
64
- def primary_key
65
- primary_keys
66
- end
67
-
68
- def primary_key=(keys)
69
- self.primary_keys = keys
70
- end
71
-
72
- def composite?
73
- true
74
- end
75
-
76
- #ids_to_s([[1,2],[7,3]]) -> "(1,2),(7,3)"
77
- #ids_to_s([[1,2],[7,3]], ',', ';') -> "1,2;7,3"
78
- def ids_to_s(many_ids, id_sep = CompositePrimaryKeys::ID_SEP, list_sep = ',', left_bracket = '(', right_bracket = ')')
79
- many_ids.map {|ids| "#{left_bracket}#{CompositePrimaryKeys::CompositeKeys.new(ids)}#{right_bracket}"}.join(list_sep)
80
- end
81
- end
82
-
83
- module CompositeInstanceMethods
84
- # A model instance's primary keys is always available as model.ids
85
- # whether you name it the default 'id' or set it to something else.
86
- def id
87
- attr_names = self.class.primary_keys
88
- ::CompositePrimaryKeys::CompositeKeys.new(attr_names.map { |attr_name| read_attribute(attr_name) })
89
- end
90
- alias_method :ids, :id
91
-
92
- def ids_hash
93
- self.class.primary_key.zip(ids).inject(Hash.new) do |hash, (key, value)|
94
- hash[key] = value
95
- hash
96
- end
97
- end
98
-
99
- def id_before_type_cast
100
- self.class.primary_keys.map do |key|
101
- self.send("#{key.to_s}_before_type_cast")
102
- end
103
- end
104
-
105
- # Sets the primary ID.
106
- def id=(ids)
107
- ids = CompositePrimaryKeys::CompositeKeys.parse(ids)
108
- unless ids.length == self.class.primary_keys.length
109
- raise "#{self.class}.id= requires #{self.class.primary_keys.length} ids"
110
- end
111
- [self.class.primary_keys, ids].transpose.each {|key, an_id| write_attribute(key , an_id)}
112
- id
113
- end
114
-
115
- def can_change_primary_key_values?
116
- false
117
- end
118
-
119
- # Returns this record's primary keys values in an Array
120
- # if any value is available
121
- def to_key
122
- ids.to_a if !ids.compact.empty? # XXX Maybe use primary_keys with send instead of ids
123
- end
124
-
125
- def to_param
126
- persisted? ? to_key.join(CompositePrimaryKeys::ID_SEP) : nil
127
- end
128
- end
129
- end
130
- end
1
+ module ActiveRecord
2
+ class CompositeKeyError < StandardError #:nodoc:
3
+ end
4
+
5
+ class Base
6
+ INVALID_FOR_COMPOSITE_KEYS = 'Not appropriate for composite primary keys'
7
+ NOT_IMPLEMENTED_YET = 'Not implemented for composite primary keys yet'
8
+
9
+ class << self
10
+ alias_method :primary_key_without_composite_key_support=, :primary_key=
11
+ def primary_key=(keys)
12
+ unless keys.kind_of?(Array)
13
+ self.primary_key_without_composite_key_support = keys
14
+ return
15
+ end
16
+
17
+ @primary_keys = keys.map { |k| k.to_s }.to_composite_keys
18
+
19
+ class_eval <<-EOV
20
+ extend CompositeClassMethods
21
+ include CompositeInstanceMethods
22
+ EOV
23
+ end
24
+ alias_method :primary_keys=, :primary_key=
25
+
26
+ def set_primary_keys(*keys)
27
+ ActiveSupport::Deprecation.warn(
28
+ "Calling set_primary_keys is deprecated. Please use `self.primary_keys = keys` instead."
29
+ )
30
+
31
+ keys = keys.first if keys.first.is_a?(Array)
32
+ if keys.length == 1
33
+ self.primary_key = keys.first
34
+ else
35
+ self.primary_keys = keys
36
+ end
37
+ end
38
+
39
+ def composite?
40
+ false
41
+ end
42
+ end
43
+
44
+ def composite?
45
+ self.class.composite?
46
+ end
47
+
48
+ module CompositeClassMethods
49
+ def primary_keys
50
+ @primary_keys = reset_primary_keys unless defined? @primary_keys
51
+ @primary_keys
52
+ end
53
+
54
+ # Don't like this method name, but its modeled after how AR does it
55
+ def reset_primary_keys #:nodoc:
56
+ if self == base_class
57
+ # CPK
58
+ self.primary_keys = get_primary_key(base_class.name)
59
+ else
60
+ self.primary_keys = base_class.primary_keys
61
+ end
62
+ end
63
+
64
+ def primary_key
65
+ primary_keys
66
+ end
67
+
68
+ def primary_key=(keys)
69
+ self.primary_keys = keys
70
+ end
71
+
72
+ def composite?
73
+ true
74
+ end
75
+
76
+ #ids_to_s([[1,2],[7,3]]) -> "(1,2),(7,3)"
77
+ #ids_to_s([[1,2],[7,3]], ',', ';') -> "1,2;7,3"
78
+ def ids_to_s(many_ids, id_sep = CompositePrimaryKeys::ID_SEP, list_sep = ',', left_bracket = '(', right_bracket = ')')
79
+ many_ids.map {|ids| "#{left_bracket}#{CompositePrimaryKeys::CompositeKeys.new(ids)}#{right_bracket}"}.join(list_sep)
80
+ end
81
+ end
82
+
83
+ module CompositeInstanceMethods
84
+ # A model instance's primary keys is always available as model.ids
85
+ # whether you name it the default 'id' or set it to something else.
86
+ def id
87
+ attr_names = self.class.primary_keys
88
+ ::CompositePrimaryKeys::CompositeKeys.new(attr_names.map { |attr_name| read_attribute(attr_name) })
89
+ end
90
+ alias_method :ids, :id
91
+
92
+ def ids_hash
93
+ self.class.primary_key.zip(ids).inject(Hash.new) do |hash, (key, value)|
94
+ hash[key] = value
95
+ hash
96
+ end
97
+ end
98
+
99
+ def id_before_type_cast
100
+ self.class.primary_keys.map do |key|
101
+ self.read_attribute_before_type_cast(key)
102
+ end
103
+ end
104
+
105
+ # Sets the primary ID.
106
+ def id=(ids)
107
+ ids = CompositePrimaryKeys::CompositeKeys.parse(ids)
108
+ unless ids.length == self.class.primary_keys.length
109
+ raise "#{self.class}.id= requires #{self.class.primary_keys.length} ids"
110
+ end
111
+ [self.class.primary_keys, ids].transpose.each {|key, an_id| write_attribute(key , an_id)}
112
+ id
113
+ end
114
+
115
+ def can_change_primary_key_values?
116
+ false
117
+ end
118
+
119
+ # Returns this record's primary keys values in an Array
120
+ # if any value is available
121
+ def to_key
122
+ ids.to_a if !ids.compact.empty? # XXX Maybe use primary_keys with send instead of ids
123
+ end
124
+
125
+ def to_param
126
+ persisted? ? to_key.join(CompositePrimaryKeys::ID_SEP) : nil
127
+ end
128
+ end
129
+ end
130
+ end
@@ -1,51 +1,51 @@
1
- module CompositePrimaryKeys
2
- ID_SEP = ','
3
- ID_SET_SEP = ';'
4
-
5
- module ArrayExtension
6
- def to_composite_keys
7
- CompositeKeys.new(self)
8
- end
9
- end
10
-
11
- def self.normalize(ids)
12
- ids.map do |id|
13
- if id.is_a?(Array)
14
- normalize(id)
15
- elsif id.is_a?(String) && id.index(ID_SEP)
16
- id.split(ID_SEP)
17
- else
18
- id
19
- end
20
- end
21
- end
22
-
23
- class CompositeKeys < Array
24
-
25
- def self.parse(value)
26
- case value
27
- when Array
28
- value.to_composite_keys
29
- when String
30
- self.new(value.split(ID_SEP))
31
- else
32
- raise(ArgumentError, "Unsupported type: #{value}")
33
- end
34
- end
35
-
36
- def in(other)
37
- case other
38
- when Arel::SelectManager
39
- Arel::Nodes::In.new(self, other.ast)
40
- end
41
- end
42
-
43
-
44
- def to_s
45
- # Doing this makes it easier to parse Base#[](attr_name)
46
- join(ID_SEP)
47
- end
48
- end
49
- end
50
-
51
- Array.send(:include, CompositePrimaryKeys::ArrayExtension)
1
+ module CompositePrimaryKeys
2
+ ID_SEP = ','
3
+ ID_SET_SEP = ';'
4
+
5
+ module ArrayExtension
6
+ def to_composite_keys
7
+ CompositeKeys.new(self)
8
+ end
9
+ end
10
+
11
+ def self.normalize(ids)
12
+ ids.map do |id|
13
+ if id.is_a?(Array)
14
+ normalize(id)
15
+ elsif id.is_a?(String) && id.index(ID_SEP)
16
+ id.split(ID_SEP)
17
+ else
18
+ id
19
+ end
20
+ end
21
+ end
22
+
23
+ class CompositeKeys < Array
24
+
25
+ def self.parse(value)
26
+ case value
27
+ when Array
28
+ value.to_composite_keys
29
+ when String
30
+ self.new(value.split(ID_SEP))
31
+ else
32
+ raise(ArgumentError, "Unsupported type: #{value}")
33
+ end
34
+ end
35
+
36
+ def in(other)
37
+ case other
38
+ when Arel::SelectManager
39
+ Arel::Nodes::In.new(self, other.ast)
40
+ end
41
+ end
42
+
43
+
44
+ def to_s
45
+ # Doing this makes it easier to parse Base#[](attr_name)
46
+ join(ID_SEP)
47
+ end
48
+ end
49
+ end
50
+
51
+ Array.send(:include, CompositePrimaryKeys::ArrayExtension)
@@ -1,69 +1,69 @@
1
- module CompositePrimaryKeys
2
- module Predicates
3
- # Similar to module_function, but does not make instance methods private.
4
- # https://idiosyncratic-ruby.com/8-self-improvement.html
5
- extend self
6
-
7
- def cpk_and_predicate(predicates)
8
- if predicates.length == 1
9
- predicates.first
10
- else
11
- Arel::Nodes::And.new(predicates)
12
- end
13
- end
14
-
15
- def cpk_or_predicate(predicates, group = true)
16
- if predicates.length <= 1
17
- predicates.first
18
- else
19
- split_point = predicates.length / 2
20
- predicates_first_half = predicates[0...split_point]
21
- predicates_second_half = predicates[split_point..-1]
22
-
23
- or_predicate = ::Arel::Nodes::Or.new(cpk_or_predicate(predicates_first_half, false),
24
- cpk_or_predicate(predicates_second_half, false))
25
-
26
- if group
27
- ::Arel::Nodes::Grouping.new(or_predicate)
28
- else
29
- or_predicate
30
- end
31
- end
32
- end
33
-
34
- def cpk_id_predicate(table, keys, values)
35
- eq_predicates = keys.zip(values).map do |key, value|
36
- table[key].eq(value)
37
- end
38
- cpk_and_predicate(eq_predicates)
39
- end
40
-
41
- def cpk_join_predicate(table1, key1, table2, key2)
42
- key1_fields = Array(key1).map {|key| table1[key]}
43
- key2_fields = Array(key2).map {|key| table2[key]}
44
-
45
- eq_predicates = key1_fields.zip(key2_fields).map do |key_field1, key_field2|
46
- key_field2 = Arel::Nodes::Quoted.new(key_field2) unless Arel::Attributes::Attribute === key_field2
47
- key_field1.eq(key_field2)
48
- end
49
- cpk_and_predicate(eq_predicates)
50
- end
51
-
52
- def cpk_in_predicate(table, primary_keys, ids)
53
- and_predicates = ids.map do |id|
54
- cpk_id_predicate(table, primary_keys, id)
55
- end
56
- cpk_or_predicate(and_predicates)
57
- end
58
- end
59
- end
60
-
61
- ActiveRecord::Associations::AssociationScope.send(:include, CompositePrimaryKeys::Predicates)
62
- ActiveRecord::Associations::JoinDependency::JoinAssociation.send(:include, CompositePrimaryKeys::Predicates)
63
- ActiveRecord::Associations::Preloader::Association.send(:include, CompositePrimaryKeys::Predicates)
64
- ActiveRecord::Associations::HasManyAssociation.send(:include, CompositePrimaryKeys::Predicates)
65
- ActiveRecord::Associations::HasManyThroughAssociation.send(:include, CompositePrimaryKeys::Predicates)
66
- ActiveRecord::Base.send(:extend, CompositePrimaryKeys::Predicates)
67
- ActiveRecord::Reflection::AbstractReflection.send(:include, CompositePrimaryKeys::Predicates)
68
- ActiveRecord::Relation.send(:include, CompositePrimaryKeys::Predicates)
69
- ActiveRecord::PredicateBuilder.send(:extend, CompositePrimaryKeys::Predicates)
1
+ module CompositePrimaryKeys
2
+ module Predicates
3
+ # Similar to module_function, but does not make instance methods private.
4
+ # https://idiosyncratic-ruby.com/8-self-improvement.html
5
+ extend self
6
+
7
+ def cpk_and_predicate(predicates)
8
+ if predicates.length == 1
9
+ predicates.first
10
+ else
11
+ Arel::Nodes::And.new(predicates)
12
+ end
13
+ end
14
+
15
+ def cpk_or_predicate(predicates, group = true)
16
+ if predicates.length <= 1
17
+ predicates.first
18
+ else
19
+ split_point = predicates.length / 2
20
+ predicates_first_half = predicates[0...split_point]
21
+ predicates_second_half = predicates[split_point..-1]
22
+
23
+ or_predicate = ::Arel::Nodes::Or.new(cpk_or_predicate(predicates_first_half, false),
24
+ cpk_or_predicate(predicates_second_half, false))
25
+
26
+ if group
27
+ ::Arel::Nodes::Grouping.new(or_predicate)
28
+ else
29
+ or_predicate
30
+ end
31
+ end
32
+ end
33
+
34
+ def cpk_id_predicate(table, keys, values)
35
+ eq_predicates = keys.zip(values).map do |key, value|
36
+ table[key].eq(value)
37
+ end
38
+ cpk_and_predicate(eq_predicates)
39
+ end
40
+
41
+ def cpk_join_predicate(table1, key1, table2, key2)
42
+ key1_fields = Array(key1).map {|key| table1[key]}
43
+ key2_fields = Array(key2).map {|key| table2[key]}
44
+
45
+ eq_predicates = key1_fields.zip(key2_fields).map do |key_field1, key_field2|
46
+ key_field2 = Arel::Nodes::Quoted.new(key_field2) unless Arel::Attributes::Attribute === key_field2
47
+ key_field1.eq(key_field2)
48
+ end
49
+ cpk_and_predicate(eq_predicates)
50
+ end
51
+
52
+ def cpk_in_predicate(table, primary_keys, ids)
53
+ and_predicates = ids.map do |id|
54
+ cpk_id_predicate(table, primary_keys, id)
55
+ end
56
+ cpk_or_predicate(and_predicates)
57
+ end
58
+ end
59
+ end
60
+
61
+ ActiveRecord::Associations::AssociationScope.send(:include, CompositePrimaryKeys::Predicates)
62
+ ActiveRecord::Associations::JoinDependency::JoinAssociation.send(:include, CompositePrimaryKeys::Predicates)
63
+ ActiveRecord::Associations::Preloader::Association.send(:include, CompositePrimaryKeys::Predicates)
64
+ ActiveRecord::Associations::HasManyAssociation.send(:include, CompositePrimaryKeys::Predicates)
65
+ ActiveRecord::Associations::HasManyThroughAssociation.send(:include, CompositePrimaryKeys::Predicates)
66
+ ActiveRecord::Base.send(:extend, CompositePrimaryKeys::Predicates)
67
+ ActiveRecord::Reflection::AbstractReflection.send(:include, CompositePrimaryKeys::Predicates)
68
+ ActiveRecord::Relation.send(:include, CompositePrimaryKeys::Predicates)
69
+ ActiveRecord::PredicateBuilder.send(:extend, CompositePrimaryKeys::Predicates)