Class: Sequel::Plugins::PgArrayAssociations::ManyToPgArrayAssociationReflection

Inherits:
Model::Associations::AssociationReflection show all
Defined in:
lib/sequel/plugins/pg_array_associations.rb

Overview

The AssociationReflection subclass for many_to_pg_array associations.

Constant Summary

Constants inherited from Model::Associations::AssociationReflection

Model::Associations::AssociationReflection::ASSOCIATION_DATASET_PROC

Constants included from Inflections

Inflections::CAMELIZE_CONVERT_REGEXP, Inflections::CAMELIZE_MODULE_REGEXP, Inflections::DASH, Inflections::DEMODULIZE_CONVERT_REGEXP, Inflections::EMPTY_STRING, Inflections::SLASH, Inflections::UNDERSCORE, Inflections::UNDERSCORE_CONVERT_REGEXP1, Inflections::UNDERSCORE_CONVERT_REGEXP2, Inflections::UNDERSCORE_CONVERT_REPLACE, Inflections::UNDERSCORE_MODULE_REGEXP, Inflections::VALID_CONSTANT_NAME_REGEXP

Instance Method Summary collapse

Methods inherited from Model::Associations::AssociationReflection

#_add_method, #_remove_all_method, #_remove_method, #_setter_method, #add_method, #apply_dataset_changes, #apply_distinct_on_eager_limit_strategy, #apply_eager_dataset_changes, #apply_eager_graph_limit_strategy, #apply_eager_limit_strategy, #apply_ruby_eager_limit_strategy, #apply_window_function_eager_limit_strategy, #assign_singular?, #associated_class, #associated_dataset, #association_dataset_for, #association_dataset_proc, #association_method, #cloneable?, #dataset_method, #dataset_need_primary_key?, #delete_row_number_column, #eager_graph_lazy_dataset?, #eager_load_results, #eager_loader_key, #eager_loading_predicate_key, #eager_loading_use_associated_key?, #filter_by_associations_add_conditions?, #filter_by_associations_conditions_expression, #initialize_association_cache, #limit_and_offset, #need_associated_primary_key?, #placeholder_loader, #predicate_key_values, #predicate_keys, #qualify, #qualify_assoc, #qualify_cur, #reciprocal, #reciprocal_array?, #remove_all_method, #remove_method, #remove_should_check_existing?, #returns_array?, #select, #set_reciprocal_to_self?, #setter_method, #slice_range

Methods included from Inflections

clear, irregular, plural, singular, uncountable

Methods inherited from Hash

#&, #case, #hstore, #pg_json, #pg_jsonb, #sql_expr, #sql_negate, #sql_or, #|, #~

Instance Method Details

#array_typeObject



78
79
80
81
82
83
84
85
86
# File 'lib/sequel/plugins/pg_array_associations.rb', line 78

def array_type
  cached_fetch(:array_type) do
    if (sch = associated_class.db_schema) && (s = sch[self[:key]]) && (t = s[:db_type])
      t
    else
      :integer
    end
  end
end

#associated_object_keysObject

The array column in the associated model containing foreign keys to the current model.



90
91
92
# File 'lib/sequel/plugins/pg_array_associations.rb', line 90

def associated_object_keys
  [self[:key]]
end

#can_have_associated_objects?(obj) ⇒ Boolean

many_to_pg_array associations can have associated objects as long as they have a primary key.

Returns:

  • (Boolean)


96
97
98
# File 'lib/sequel/plugins/pg_array_associations.rb', line 96

def can_have_associated_objects?(obj)
  obj.get_column_value(self[:primary_key])
end

#default_keyObject

Assume that the key in the associated table uses a version of the current model’s name suffixed with _ids.



102
103
104
# File 'lib/sequel/plugins/pg_array_associations.rb', line 102

def default_key
  :"#{underscore(demodulize(self[:model].name))}_ids"
end

#eager_graph_limit_strategy(_) ⇒ Object

Always use the ruby eager_graph limit strategy if association is limited.



107
108
109
# File 'lib/sequel/plugins/pg_array_associations.rb', line 107

def eager_graph_limit_strategy(_)
  :ruby if self[:limit]
end

#eager_limit_strategyObject

Always use the ruby eager limit strategy



112
113
114
115
116
# File 'lib/sequel/plugins/pg_array_associations.rb', line 112

def eager_limit_strategy
  cached_fetch(:_eager_limit_strategy) do
    :ruby if self[:limit]
  end
end

#filter_by_associations_limit_strategyObject

Don’t use a filter by associations limit strategy



119
120
121
# File 'lib/sequel/plugins/pg_array_associations.rb', line 119

def filter_by_associations_limit_strategy
  nil
end

#handle_silent_modification_failure?Boolean

Handle silent failure of add/remove methods if raise_on_save_failure is false.

Returns:

  • (Boolean)


124
125
126
# File 'lib/sequel/plugins/pg_array_associations.rb', line 124

def handle_silent_modification_failure?
  self[:raise_on_save_failure] == false
end

#predicate_keyObject

The hash key to use for the eager loading predicate (left side of IN (1, 2, 3))



129
130
131
# File 'lib/sequel/plugins/pg_array_associations.rb', line 129

def predicate_key
  cached_fetch(:predicate_key){qualify_assoc(self[:key_column])}
end

#primary_keyObject

The column in the current table that the keys in the array column in the associated table reference.



135
136
137
# File 'lib/sequel/plugins/pg_array_associations.rb', line 135

def primary_key
  self[:primary_key]
end

#remove_before_destroy?Boolean

Destroying the associated object automatically removes the association, since the association is stored in the associated object.

Returns:

  • (Boolean)


141
142
143
# File 'lib/sequel/plugins/pg_array_associations.rb', line 141

def remove_before_destroy?
  false
end