Class: DataMapper::Property::DateTime

Inherits:
Object show all
Includes:
PassThroughLoadDump, Typecast::Time
Defined in:
lib/dm-core/property/date_time.rb

Constant Summary

Constants inherited from DataMapper::Property

OPTIONS, PRIMITIVES, VISIBILITY_OPTIONS

Instance Attribute Summary

Attributes inherited from DataMapper::Property

#allow_blank, #allow_nil, #default, #instance_variable_name, #model, #name, #options, #primitive, #reader_visibility, #repository_name, #required, #type, #writer_visibility

Instance Method Summary collapse

Methods included from Typecast::Time

#extract_time

Methods included from Typecast::Numeric

#typecast_to_numeric

Methods included from PassThroughLoadDump

#dump, #load

Methods inherited from Object

#dump, #load, #to_child_key

Methods inherited from DataMapper::Property

accept_options, accepted_options, #allow_blank?, #allow_nil?, #bind, #custom?, descendants, determine_class, #field, find_class, #get, #get!, #hash, #index, inherited, #inspect, #key?, #lazy?, #lazy_load, #lazy_load_properties, #loaded?, nullable, options, #primitive?, #properties, #required?, #serial?, #set, #set!, #typecast, #unique?, #unique_index, #valid?

Methods included from Chainable

#chainable, #extendable

Methods included from Deprecate

#deprecate

Methods included from Equalizer

#equalize

Methods included from Subject

#default?, #default_for

Methods included from Assertions

#assert_kind_of

Instance Method Details

#typecast_hash_to_datetime(value) ⇒ DateTime

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Creates a DateTime instance from a Hash with keys :year, :month, :day, :hour, :min, :sec

Parameters:

  • value (#to_mash)

    value to be typecast

Returns:

  • (DateTime)

    DateTime constructed from hash



43
44
45
# File 'lib/dm-core/property/date_time.rb', line 43

def typecast_hash_to_datetime(value)
  ::DateTime.new(*extract_time(value))
end

#typecast_to_primitive(value) ⇒ DateTime

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Typecasts an arbitrary value to a DateTime. Handles both Hashes and DateTime instances.

Parameters:

  • value (#to_mash, #to_s)

    value to be typecast

Returns:

  • (DateTime)

    DateTime constructed from value



21
22
23
24
25
26
27
28
29
30
31
# File 'lib/dm-core/property/date_time.rb', line 21

def typecast_to_primitive(value)
  if value.respond_to?(:to_datetime)
    value.to_datetime
  elsif value.respond_to?(:to_mash)
    typecast_hash_to_datetime(value)
  else
    ::DateTime.parse(value.to_s)
  end
rescue ArgumentError
  value
end