Class: ActiveModel::Type::Value
- Inherits:
-
Object
- Object
- ActiveModel::Type::Value
- Includes:
- SerializeCastValue
- Defined in:
- lib/active_model/type/value.rb
Overview
Active Model Value Type
The base class for all attribute types. This class also serves as the default type for attributes that do not specify a type.
Direct Known Subclasses
Binary, Boolean, Date, DateTime, Decimal, Float, ImmutableString, Integer, Time
Instance Attribute Summary collapse
-
#limit ⇒ Object
readonly
Returns the value of attribute limit.
-
#precision ⇒ Object
readonly
Returns the value of attribute precision.
-
#scale ⇒ Object
readonly
Returns the value of attribute scale.
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?)
- #as_json ⇒ Object
- #assert_valid_value(_) ⇒ Object
-
#binary? ⇒ Boolean
These predicates are not documented, as I need to look further into their use, and see if they can be removed entirely.
-
#cast(value) ⇒ Object
Type casts a value from user input (e.g. from a setter).
-
#changed?(old_value, new_value, _new_value_before_type_cast) ⇒ Boolean
Determines whether a value has changed for dirty checking.
-
#changed_in_place?(raw_old_value, new_value) ⇒ Boolean
Determines whether the mutable value has been modified since it was read.
-
#deserialize(value) ⇒ Object
Converts a value from database input to the appropriate ruby type.
-
#force_equality?(_value) ⇒ Boolean
:nodoc:.
- #hash ⇒ Object
-
#initialize(precision: nil, limit: nil, scale: nil) ⇒ Value
constructor
Initializes a type with three basic configuration settings: precision, limit, and scale.
-
#map(value) ⇒ Object
:nodoc:.
-
#mutable? ⇒ Boolean
:nodoc:.
-
#serializable?(value) ⇒ Boolean
Returns true if this type can convert
value
to a type that is usable by the database. -
#serialize(value) ⇒ Object
Casts a value from the ruby type to a type that the database knows how to understand.
-
#serialized? ⇒ Boolean
:nodoc:.
-
#type ⇒ Object
Returns the unique type name as a Symbol.
-
#type_cast_for_schema(value) ⇒ Object
Type casts a value for schema dumping.
-
#value_constructed_by_mass_assignment?(_value) ⇒ Boolean
:nodoc:.
Methods included from SerializeCastValue
included, #itself_if_serialize_cast_value_compatible, serialize
Constructor Details
#initialize(precision: nil, limit: nil, scale: nil) ⇒ Value
Initializes a type with three basic configuration settings: precision, limit, and scale. The Value base class does not define behavior for these settings. It uses them for equality comparison and hash key generation only.
17 18 19 20 21 22 |
# File 'lib/active_model/type/value.rb', line 17 def initialize(precision: nil, limit: nil, scale: nil) super() @precision = precision @scale = scale @limit = limit end |
Instance Attribute Details
#limit ⇒ Object (readonly)
Returns the value of attribute limit.
11 12 13 |
# File 'lib/active_model/type/value.rb', line 11 def limit @limit end |
#precision ⇒ Object (readonly)
Returns the value of attribute precision.
11 12 13 |
# File 'lib/active_model/type/value.rb', line 11 def precision @precision end |
#scale ⇒ Object (readonly)
Returns the value of attribute scale.
11 12 13 |
# File 'lib/active_model/type/value.rb', line 11 def scale @scale end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
121 122 123 124 125 126 |
# File 'lib/active_model/type/value.rb', line 121 def ==(other) self.class == other.class && precision == other.precision && scale == other.scale && limit == other.limit end |
#as_json ⇒ Object
144 145 146 |
# File 'lib/active_model/type/value.rb', line 144 def as_json(*) raise NoMethodError end |
#assert_valid_value(_) ⇒ Object
133 134 |
# File 'lib/active_model/type/value.rb', line 133 def assert_valid_value(_) end |
#binary? ⇒ Boolean
These predicates are not documented, as I need to look further into their use, and see if they can be removed entirely.
77 78 79 |
# File 'lib/active_model/type/value.rb', line 77 def binary? # :nodoc: false end |
#cast(value) ⇒ Object
Type casts a value from user input (e.g. from a setter). This value may be a string from the form builder, or a ruby object passed to a setter. There is currently no way to differentiate between which source it came from.
The return value of this method will be returned from ActiveRecord::AttributeMethods::Read#read_attribute. See also: Value#cast_value.
value
The raw input, as provided to the attribute setter.
57 58 59 |
# File 'lib/active_model/type/value.rb', line 57 def cast(value) cast_value(value) unless value.nil? end |
#changed?(old_value, new_value, _new_value_before_type_cast) ⇒ Boolean
Determines whether a value has changed for dirty checking. old_value
and new_value
will always be type-cast. Types should not need to override this method.
84 85 86 |
# File 'lib/active_model/type/value.rb', line 84 def changed?(old_value, new_value, _new_value_before_type_cast) old_value != new_value end |
#changed_in_place?(raw_old_value, new_value) ⇒ Boolean
Determines whether the mutable value has been modified since it was read. Returns false
by default. If your type returns an object which could be mutated, you should override this method. You will need to either:
-
pass
new_value
to Value#serialize and compare it toraw_old_value
or
-
pass
raw_old_value
to Value#deserialize and compare it tonew_value
raw_old_value
The original value, before being passed to deserialize
.
new_value
The current value, after type casting.
105 106 107 |
# File 'lib/active_model/type/value.rb', line 105 def changed_in_place?(raw_old_value, new_value) false end |
#deserialize(value) ⇒ Object
Converts a value from database input to the appropriate ruby type. The return value of this method will be returned from ActiveRecord::AttributeMethods::Read#read_attribute. The default implementation just calls Value#cast.
value
The raw input, as provided from the database.
43 44 45 |
# File 'lib/active_model/type/value.rb', line 43 def deserialize(value) cast(value) end |
#force_equality?(_value) ⇒ Boolean
:nodoc:
113 114 115 |
# File 'lib/active_model/type/value.rb', line 113 def force_equality?(_value) # :nodoc: false end |
#hash ⇒ Object
129 130 131 |
# File 'lib/active_model/type/value.rb', line 129 def hash [self.class, precision, scale, limit].hash end |
#map(value) ⇒ Object
:nodoc:
117 118 119 |
# File 'lib/active_model/type/value.rb', line 117 def map(value, &) # :nodoc: value end |
#mutable? ⇒ Boolean
:nodoc:
140 141 142 |
# File 'lib/active_model/type/value.rb', line 140 def mutable? # :nodoc: false end |
#serializable?(value) ⇒ Boolean
Returns true if this type can convert value
to a type that is usable by the database. For example a boolean type can return true
if the value parameter is a Ruby boolean, but may return false
if the value parameter is some other object.
28 29 30 |
# File 'lib/active_model/type/value.rb', line 28 def serializable?(value) true end |
#serialize(value) ⇒ Object
Casts a value from the ruby type to a type that the database knows how to understand. The returned value from this method should be a String
, Numeric
, Date
, Time
, Symbol
, true
, false
, or nil
.
65 66 67 |
# File 'lib/active_model/type/value.rb', line 65 def serialize(value) value end |
#serialized? ⇒ Boolean
:nodoc:
136 137 138 |
# File 'lib/active_model/type/value.rb', line 136 def serialized? # :nodoc: false end |
#type ⇒ Object
Returns the unique type name as a Symbol. Subclasses should override this method.
34 35 |
# File 'lib/active_model/type/value.rb', line 34 def type end |
#type_cast_for_schema(value) ⇒ Object
Type casts a value for schema dumping. This method is private, as we are hoping to remove it entirely.
71 72 73 |
# File 'lib/active_model/type/value.rb', line 71 def type_cast_for_schema(value) # :nodoc: value.inspect end |
#value_constructed_by_mass_assignment?(_value) ⇒ Boolean
:nodoc:
109 110 111 |
# File 'lib/active_model/type/value.rb', line 109 def value_constructed_by_mass_assignment?(_value) # :nodoc: false end |