NAME
DateTime::Incomplete - An incomplete datetime, like January 5
SYNOPSIS
my $dti = DateTime::Incomplete->new( year => 2003 );
# 2003-xx-xx
$dti->set( month => 12 );
# 2003-12-xx
$dt = $dti->to_datetime( base => DateTime->now );
# 2003-12-19T16:54:33
DESCRIPTION
DateTime::Incomplete is a class for representing partial dates and times.
These are actually encountered relatively frequently. For example, a birthday is commonly given as a month and day, without a year.
ERROR HANDLING
Constructor and mutator methods (such as new
and set
) will die if there is an attempt to set the datetime to an invalid value.
Invalid values are detected by setting the appropriate fields of a "base" datetime object. See the set_base
method.
Accessor methods (such as day()
) will return either a value or undef
, but will never die.
THE "BASE" DATETIME
A DateTime::Incomplete
object can have a "base" DateTime.pm
object. This object is used as a default datetime in the to_datetime()
method, and it also used to validate inputs to the set()
.
By default, newly created DateTime::Incomplete
objects have no base.
DATETIME-LIKE METHODS
Most methods provided by this class are designed to emulate the behavior of DateTime.pm
whenever possible.
new()
Creates a new incomplete date:
my $dti = DateTime::Incomplete->new( year => 2003 ); # 2003-xx-xx
This class method accepts parameters for each date and time component: "year", "month", "day", "hour", "minute", "second", "nanosecond". Additionally, it accepts "time_zone", "locale", and "base" parameters.
Any parameters not given default to
undef
.Calling the
new()
method without parameters creates a completely undefined datetime:my $dti = DateTime::Incomplete->new();
from_day_of_year( ... )
This constructor takes the same arguments as can be given to the
new()
method, except that it does not accept a "month" or "day" argument. Instead, it requires both "year" and "day_of_year". The day of year must be between 1 and 366, and 366 is only allowed for leap years.It creates a
DateTime::Incomplete
object with all date fields defined, but with the time fields (hour, minute, etc.) set to undef.from_object( object => $object, ... )
This class method can be used to construct a new
DateTime::Incomplete
object from any object that implements theutc_rd_values()
method. AllDateTime::Calendar
modules must implement this method in order to provide cross-calendar compatibility. This method accepts a "locale" parameter.If the object passed to this method has a
time_zone()
method, that is used to set the time zone. Otherwise UTC is used.It creates a
DateTime::Incomplete
object with all fields defined.from_epoch( ... )
This class method can be used to construct a new
DateTime::Incomplete
object from an epoch time instead of components. Just as with thenew()
method, it accepts "time_zone" and "locale" parameters.If the epoch value is not an integer, the part after the decimal will be converted to nanoseconds. This is done in order to be compatible with
Time::HiRes
.It creates a
DateTime::Incomplete
object with all fields defined.now( ... )
This class method is equivalent to
DateTime->now
.It creates a new
DateTime::Incomplete
object with all fields defined.today( ... )
This class method is equivalent to
now()
, but it leaves hour, minute, second and nanosecond undefined.clone
Creates a new object with the same information as the object this method is called on.
"Get" Methods
year
month
day
hour
minute
second
nanosecond
time_zone
locale
These methods returns the field value for the object, or
undef
.These values can also be accessed using the same alias methods available in
DateTime.pm
, such asmon()
,mday()
, etc.has_year
has_month
has_day
has_hour
has_minute
has_second
has_nanosecond
has_time_zone
has_locale
Returns a boolean value indicating whether the corresponding value is defined.
datetime, ymd, date, hms, time, iso8601, mdy, dmy
These are equivalent to DateTime stringification methods with the same name, except that the undefined fields are replaced by 'xx' or 'xxxx' as necessary.
epoch
hires_epoch
is_dst
utc_rd_values
utc_rd_as_seconds
local_rd_as_seconds
my $epoch = $dti->epoch( base => $dt );
These methods are equivalent to the
DateTime
methods with the same name, but they will returnundef
if no base datetime is defined.is_finite, is_infinite
Incomplete dates are always "finite".
strftime( $format, ... )
This method implements functionality similar to the
strftime()
method in C. However, if given multiple format strings, then it will return multiple scalars, one for each format string.See the
strftime Specifiers
section inDateTime.pm
documentation for a list of all possible format specifiers.Undefined fields are replaced by 'xx' or 'xxxx' as appropriate.
The specification
%s
(epoch) returnsxxxxxx
, unless the object has a base datetime set.
Computed Values
All other accessors, such as day_of_week()
, or week_year()
are computed from the base values for a datetime. When these methods are called, they return the requested information if there is enough data to compute them, otherwise they return undef
Unimplemented Methods
The following DateTime.pm
methods are not implemented in DateTime::Incomplete
, though some of them may be implemented in future versions:
add_duration
add
subtract_duration
subtract
subtract_datetime
subtract_datetime_absolute
delta_md
delta_days
delta_ms
compare
compare_ignore_floating
DefaultLanguage
"Set" Methods
set
Use this to set or undefine a datetime field:
$dti->set( month => 12 ); $dti->set( day => 24 ); $dti->set( day => undef );
This method the same arguments as the
set()
method inDateTime.pm
.set_time_zone
This method accepts either a time zone object or a string that can be passed as the "name" parameter to
DateTime::TimeZone->new()
.Unlike with
DateTime.pm
, if the new time zone's offset is different from the previous time zone, no local time adjustment is made.You can remove time zone information by calling this method with the value
undef
.truncate( to => ... )
This method allows you to reset some of the local time components in the object to their "zero" values. The "to" parameter is used to specify which values to truncate, and it may be one of "year", "month", "day", "hour", "minute", or "second". For example, if "month" is specified, then the local day becomes 1, and the hour, minute, and second all become 0.
Note that the "to" parameter cannot be "week".
"DATETIME::INCOMPLETE" METHODS
DateTime::Incomplete
objects also have a number of methods unique to this class.
base
Returns the
base
datetime value, orundef
.has_base
Returns 1 if the
base
value is defined; otherwise it returns 0.is_undef
Returns true if the datetime is completely undefined.
set_base
Sets the base
DateTime.pm
object for theDateTime::Incomplete
object.The base object must use the year/month/day system. Most calendars use this system: Gregorian (
DateTime
), Julian, and others.The default value for "base" is
undef
, which means no validation is made on input.to_datetime
This method takes an optional "base" parameter and returns a "complete" datetime.
$dt = $dti->to_datetime( base => DateTime->now ); $dti->set_base( DateTime->now ); $dt = $dti->to_datetime;
The resulting datetime can be either before of after the given base datetime. No adjustments are made, besides setting the missing fields.
This method will die if the object has no base datetime set and none is given as an argument.
This method may also die if it results in a datetime that doesn't actually exist, such as February 30, for example.
to_recurrence
This method generates the set of all possible datetimes that fit into an incomplete datetime definition.
$dti = DateTime::Incomplete->new( month => 12, day => 24 ); $dtset1 = $dti->to_recurrence; # Christmas recurrence, with _seconds_ resolution $dti->truncate( to => 'day' ); $dtset2 = $dti->to_recurrence; # Christmas recurrence, with days resolution (hour/min/sec = 00:00:00)
Those recurrences are
DateTime::Set
objects:$dt_next_xmas = $dti->to_recurrence->next( DateTime->today );
Incomplete dates that have the year defined will generate finite sets. This kind of set can take a lot of resources (RAM and CPU). The following incomplete datetime would generate the set of all seconds in 2003:
2003-xx-xxTxx:xx:xx
contains
Returns a true value if the incomplete datetime range contains a given datetime value.
For example:
2003-xx-xx contains 2003-12-24 2003-xx-xx does not contain 1999-12-14
previous / next / closest
$dt2 = $dti->next( $dt );
The
next()
returns the first complete date after or equal to the given datetime.The
previous()
returns the first complete date before or equal to the given datetime.The
closest()
returns the closest complete date (previous or next) to the given datetime.All of these methods return
undef
if there is no matching complete datetime.If no datetime is given, these methods use the "base" datetime.
Note: The definition of
previous()
andnext()
is different from the methods of the same name in theDateTime::Set
class.The datetimes are generated with 1 nanosecond precision. The last "time" value of a given day is 23:59:59.999999999 (for non leapsecond days).
SUPPORT
Support for this module is provided via the datetime@perl.org email list. See http://lists.perl.org/ for more details.
AUTHORS
Flavio S. Glock <fglock[at]cpan.org>
With Ben Bennett <fiji[at]ayup.limey.net>, Claus Farber <claus[at]xn--frber-gra.muc.de>, Dave Rolsky <autarch[at]urth.org>, Eugene Van Der Pijll <pijll[at]gmx.net>, and the DateTime team.
COPYRIGHT
Copyright (c) 2003 Flavio S. Glock. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
SEE ALSO
datetime@perl.org mailing list
http://datetime.perl.org/