Class: OccamsRecord::Results::Row
- Inherits:
-
Object
- Object
- OccamsRecord::Results::Row
- Defined in:
- lib/occams-record/results.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.
82 83 84 85 |
# File 'lib/occams-record/results.rb', line 82 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
161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/occams-record/results.rb', line 161 def method_missing(name, *args, &block) return super if args.any? or !block.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
66 67 68 |
# File 'lib/occams-record/results.rb', line 66 def associations @associations end |
.columns ⇒ Object
Array of column names
64 65 66 |
# File 'lib/occams-record/results.rb', line 64 def columns @columns end |
.model_name ⇒ Object
Name of Rails model
68 69 70 |
# File 'lib/occams-record/results.rb', line 68 def model_name @model_name end |
.primary_key ⇒ Object
Name of primary key column (nil if column wasn’t in the SELECT)
72 73 74 |
# File 'lib/occams-record/results.rb', line 72 def primary_key @primary_key end |
.table_name ⇒ Object
Name of originating database table
70 71 72 |
# File 'lib/occams-record/results.rb', line 70 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.
103 104 105 106 107 108 109 |
# File 'lib/occams-record/results.rb', line 103 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.
93 94 95 |
# File 'lib/occams-record/results.rb', line 93 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
156 157 158 159 |
# File 'lib/occams-record/results.rb', line 156 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.
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/occams-record/results.rb', line 118 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.
144 145 146 |
# File 'lib/occams-record/results.rb', line 144 def to_s "#{self.class.model_name || "Anonymous"}#{to_h(symbolize_names: true, recursive: false)}" end |