Class: DataMapper::Property::Time

Inherits:
Object show all
Includes:
DataMapper::Property::Typecast::Time
Defined in:
lib/dm-core/property/time.rb

Constant Summary

Constants inherited from DataMapper::Property

INVALID_NAMES, OPTIONS, PRIMITIVES, VISIBILITY_OPTIONS

Instance Attribute Summary

Attributes inherited from DataMapper::Property

#allow_blank, #allow_nil, #default, #dump_as, #index, #instance_variable_name, #load_as, #model, #name, #options, #reader_visibility, #repository_name, #required, #unique_index, #writer_visibility

Instance Method Summary collapse

Methods included from DataMapper::Property::Typecast::Time

#extract_time

Methods included from DataMapper::Property::Typecast::Numeric

#typecast_to_numeric

Methods inherited from Object

#dump, #load, #marshal, #to_child_key, #unmarshal

Methods inherited from DataMapper::Property

accept_options, accepted_options, #allow_blank?, #allow_nil?, #assert_valid_options, #assert_valid_value, #bind, demodulized_names, descendants, determine_class, #determine_visibility, #field, find_class, #get, #get!, inherited, #initialize, #inspect, #key?, #lazy?, #lazy_load, #lazy_load_properties, #loaded?, nullable, options, primitive, #primitive, #primitive?, #properties, #required?, #serial?, #set, #set!, #typecast, #unique?, #valid?, #value_dumped?, #value_loaded?

Methods included from Equalizer

#equalize

Methods included from Deprecate

#deprecate

Methods included from Subject

#default?, #default_for

Methods included from Assertions

#assert_kind_of

Constructor Details

This class inherits a constructor from DataMapper::Property

Instance Method Details

#typecast_hash_to_time(value) ⇒ Time

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 Time instance from a Hash with keys :year, :month, :day, :hour, :min, :sec

Parameters:

  • value (Hash, #to_mash)

    value to be typecast

Returns:

  • (Time)

    Time constructed from hash


41
42
43
# File 'lib/dm-core/property/time.rb', line 41

def typecast_hash_to_time(value)
  ::Time.local(*extract_time(value))
end

#typecast_to_primitive(value) ⇒ Time

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 Time Handles both Hashes and Time instances.

Parameters:

  • value (Hash, #to_mash, #to_s)

    value to be typecast

Returns:

  • (Time)

    Time constructed from value


19
20
21
22
23
24
25
26
27
28
29
# File 'lib/dm-core/property/time.rb', line 19

def typecast_to_primitive(value)
  if value.respond_to?(:to_time)
    value.to_time
  elsif value.is_a?(::Hash) || value.respond_to?(:to_mash)
    typecast_hash_to_time(value)
  else
    ::Time.parse(value.to_s)
  end
rescue ArgumentError
  value
end