Class: OccamsRecord::Results::Row
- Inherits:
-
Object
- Object
- OccamsRecord::Results::Row
- Defined in:
- lib/occams-record/results/row.rb
Overview
Abstract class for result rows.
Like ActiveRecord, Boolean columns have #field? methods. However, unlike ActiveRecord, other column types do NOT.
Constant Summary collapse
- IDS_SUFFIX =
/_ids$/
Class Attribute Summary collapse
-
._model ⇒ Object
Returns the value of attribute _model.
-
.associations ⇒ Object
Array of associations names.
-
.columns ⇒ Object
Array of column names.
-
.model_name ⇒ Object
Name of Rails model.
-
.primary_key ⇒ Object
Name of primary key column (nil if column wasn’t in the SELECT).
-
.table_name ⇒ Object
Name of originating database table.
Instance Method Summary collapse
-
#==(obj) ⇒ Boolean
Returns true if the two objects are from the same table and have the same primary key.
-
#[](attr) ⇒ Object
Hash-like accessor for attributes and associations.
-
#initialize(raw_values) ⇒ Row
constructor
Initialize a new result row.
-
#inspect ⇒ String
Returns a string with the “real” model name and raw result values.
- #method_missing(name, *args, &block) ⇒ Object
- #respond_to_missing?(name, _include_private = false) ⇒ Boolean
-
#to_h(symbolize_names: false, recursive: false) ⇒ Hash
(also: #to_hash)
Return row as a Hash.
-
#to_s ⇒ String
Returns the name of the model and the attributes.
Constructor Details
#initialize(raw_values) ⇒ Row
Initialize a new result row.
31 32 33 34 |
# File 'lib/occams-record/results/row.rb', line 31 def initialize(raw_values) @raw_values = raw_values @cast_values = {} end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/occams-record/results/row.rb', line 111 def method_missing(name, *args, &block) model = self.class._model return super if args.any? or !block.nil? or model.nil? name_str = name.to_s assoc = name_str.sub(IDS_SUFFIX, "").pluralize if name_str =~ IDS_SUFFIX and can_define_ids_reader? assoc define_ids_reader! assoc send name elsif model.reflections.has_key? name_str raise MissingEagerLoadError.new(self, name) elsif model.columns_hash.has_key? name_str raise MissingColumnError.new(self, name) else super end end |
Class Attribute Details
._model ⇒ Object
Returns the value of attribute _model.
15 16 17 |
# File 'lib/occams-record/results/row.rb', line 15 def _model @_model end |
.associations ⇒ Object
Array of associations names
14 15 16 |
# File 'lib/occams-record/results/row.rb', line 14 def associations @associations end |
.columns ⇒ Object
Array of column names
12 13 14 |
# File 'lib/occams-record/results/row.rb', line 12 def columns @columns end |
.model_name ⇒ Object
Name of Rails model
17 18 19 |
# File 'lib/occams-record/results/row.rb', line 17 def model_name @model_name end |
.primary_key ⇒ Object
Name of primary key column (nil if column wasn’t in the SELECT)
21 22 23 |
# File 'lib/occams-record/results/row.rb', line 21 def primary_key @primary_key end |
.table_name ⇒ Object
Name of originating database table
19 20 21 |
# File 'lib/occams-record/results/row.rb', line 19 def table_name @table_name end |
Instance Method Details
#==(obj) ⇒ Boolean
Returns true if the two objects are from the same table and have the same primary key.
52 53 54 55 56 57 58 |
# File 'lib/occams-record/results/row.rb', line 52 def ==(obj) super || obj.is_a?(OccamsRecord::Results::Row) && obj.class.table_name && obj.class.table_name == self.class.table_name && (pkey1 = obj.class.primary_key) && (pkey2 = self.class.primary_key) && obj.send(pkey1) == self.send(pkey2) end |
#[](attr) ⇒ Object
Hash-like accessor for attributes and associations.
42 43 44 |
# File 'lib/occams-record/results/row.rb', line 42 def [](attr) respond_to?(attr) ? send(attr) : nil end |
#inspect ⇒ String
Returns a string with the “real” model name and raw result values.
Weird note - if this string is longer than 65 chars it won’t be used in exception messages. bugs.ruby-lang.org/issues/8982
105 106 107 108 |
# File 'lib/occams-record/results/row.rb', line 105 def inspect id = self.class.primary_key ? send(self.class.primary_key) : "none" "#<#{self.class.model_name || "Anonymous"} #{self.class.primary_key}: #{id}>" end |
#respond_to_missing?(name, _include_private = false) ⇒ Boolean
129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/occams-record/results/row.rb', line 129 def respond_to_missing?(name, _include_private = false) model = self.class._model return super if model.nil? name_str = name.to_s assoc = name_str.sub(IDS_SUFFIX, "").pluralize if name_str =~ IDS_SUFFIX and can_define_ids_reader? assoc true else super end end |
#to_h(symbolize_names: false, recursive: false) ⇒ Hash Also known as: to_hash
Return row as a Hash. By default the hash does NOT include associations.
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/occams-record/results/row.rb', line 67 def to_h(symbolize_names: false, recursive: false) hash = self.class.columns.reduce({}) { |a, col_name| key = symbolize_names ? col_name.to_sym : col_name a[key] = send col_name a } recursive ? self.class.associations.reduce(hash) { |a, assoc_name| key = symbolize_names ? assoc_name.to_sym : assoc_name assoc = send assoc_name a[key] = if assoc.is_a? Array assoc.map { |x| x.to_h(symbolize_names: symbolize_names, recursive: true) } elsif assoc assoc.to_h(symbolize_names: symbolize_names, recursive: true) end a } : hash end |
#to_s ⇒ String
Returns the name of the model and the attributes.
93 94 95 |
# File 'lib/occams-record/results/row.rb', line 93 def to_s "#{self.class.model_name || "Anonymous"}#{to_h(symbolize_names: true, recursive: false)}" end |