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.
Class Attribute Summary collapse
-
.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
-
#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.
30 31 32 33 |
# File 'lib/occams-record/results/row.rb', line 30 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
109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/occams-record/results/row.rb', line 109 def method_missing(name, *args, &block) return super if args.any? or !block.nil? or self.class.model_name.nil? model = self.class.model_name.constantize if model.reflections.has_key? name.to_s raise MissingEagerLoadError.new(self, name) elsif model.columns_hash.has_key? name.to_s raise MissingColumnError.new(self, name) else super end end |
Class Attribute Details
.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
16 17 18 |
# File 'lib/occams-record/results/row.rb', line 16 def model_name @model_name end |
.primary_key ⇒ Object
Name of primary key column (nil if column wasn’t in the SELECT)
20 21 22 |
# File 'lib/occams-record/results/row.rb', line 20 def primary_key @primary_key end |
.table_name ⇒ Object
Name of originating database table
18 19 20 |
# File 'lib/occams-record/results/row.rb', line 18 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.
51 52 53 54 55 56 57 |
# File 'lib/occams-record/results/row.rb', line 51 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.
41 42 43 |
# File 'lib/occams-record/results/row.rb', line 41 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
104 105 106 107 |
# File 'lib/occams-record/results/row.rb', line 104 def inspect id = self.class.primary_key ? send(self.class.primary_key) : "none" "#<#{self.class.model_name || "Anonymous"} #{self.class.primary_key}: #{id}>" 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.
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/occams-record/results/row.rb', line 66 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.
92 93 94 |
# File 'lib/occams-record/results/row.rb', line 92 def to_s "#{self.class.model_name || "Anonymous"}#{to_h(symbolize_names: true, recursive: false)}" end |