package Ftree::Date::Tiny; use strict; use warnings; use version; our $VERSION = qv('2.3.41'); =pod =head1 NAME Ftree::Date::Tiny - A date object, with as little code as possible =head1 SYNOPSIS # Create a date manually $christmas = Ftree::Date::Tiny->new( year => 2006, month => 12, day => 25, ); # Show the current date $today = Ftree::Date::Tiny->now; print "Year : " . $today->year . "\n"; print "Month: " . $today->month . "\n"; print "Day : " . $today->day . "\n"; =head1 DESCRIPTION B is a member of the L suite of time modules. It implements an extremely lightweight object that represents a date, without any time data. =head2 The Tiny Mandate Many CPAN modules which provide the best implementation of a concept can be very large. For some reason, this generally seems to be about 3 megabyte of ram usage to load the module. For a lot of the situations in which these large and comprehensive implementations exist, some people will only need a small fraction of the functionality, or only need this functionality in an ancillary role. The aim of the Tiny modules is to implement an alternative to the large module that implements a subset of the functionality, using as little code as possible. Typically, this means a module that implements between 50% and 80% of the features of the larger module, but using only 100 kilobytes of code, which is about 1/30th of the larger module. =head2 The Concept of Tiny Date and Time Due to the inherent complexity, Date and Time is intrinsically very difficult to implement properly. The arguably B module to implement it completely correct is L. However, to implement it properly L is quite slow and requires 3-4 megabytes of memory to load. The challenge in implementing a Tiny equivalent to DateTime is to do so without making the functionality critically flawed, and to carefully select the subset of functionality to implement. If you look at where the main complexity and cost exists, you will find that it is relatively cheap to represent a date or time as an object, but much much more expensive to modify or convert the object. As a result, B provides the functionality required to represent a date as an object, to stringify the date and to parse it back in, but does B allow you to modify the dates. The purpose of this is to allow for date object representations in situations like log parsing and fast real-time work. The problem with this is that having no ability to modify date limits the usefulness greatly. To make up for this, B you have L installed, any B module can be inflated into the equivalent L as needing, loading L on the fly if necesary. For the purposes of date/time logic, all B objects exist in the "C" locale, and the "floating" time zone (although obviously in a pure date context, the time zone largely doesn't matter). When converting up to full L objects, these local and time zone settings will be applied (although an ability is provided to override this). In addition, the implementation is strictly correct and is intended to be very easily to sub-class for specific purposes of your own. =head1 METHODS In general, the intent is that the API be as close as possible to the API for L. Except, of course, that this module implements less of it. =cut use 5.005; use strict; use overload 'bool' => sub () { 1 }; use overload '""' => 'as_string'; use overload 'eq' => sub { "$_[0]" eq "$_[1]" }; use overload 'ne' => sub { "$_[0]" ne "$_[1]" }; use vars qw{$VERSION}; BEGIN { $VERSION = '0.01'; } ##################################################################### # Constructor and Accessors =pod =head2 new my $date = Ftree::Date::Tiny->new( year => 2006, month => 12, day => 31, ); The C constructor creates a new B object. It takes three named params. C should be the day of the month (1-31), C should be the month of the year (1-12), C as a 4 digit year. These are the only params accepted. Returns a new B object. =cut my $format_string = "%d/%m/%Y"; sub new { my $class = shift; bless { @_ }, $class; } =pod =head2 now my $current_date = Ftree::Date::Tiny->now; The C method creates a new date object for the current date. The date created will be based on localtime, despite the fact that the date is created in the floating time zone. Returns a new B object. =cut sub now { my $class = shift; my @t = localtime time; $class->new( year => $t[5] + 1900, month => $t[4] + 1, day => $t[3], ); } =pod =head2 year The C accessor returns the 4-digit year for the date. =cut sub year { $_[0]->{year}; } =pod =head2 month The C accessor returns the 1-12 month of the year for the date. =cut sub month { $_[0]->{month}; } =pod =head2 day The C accessor returns the 1-31 day of the month for the date. =cut sub day { $_[0]->{day}; } =pod =head2 ymd The C method returns the most common and accurate stringified date format, which returns in the form "2006-04-12". =cut sub ymd { sprintf( "%04u-%02u-%02u", $_[0]->year, $_[0]->month, $_[0]->day ); } sub set_format { $format_string = $_[1]; } sub format { return $_[0]->year if(!defined $_[0]->day && !defined $_[0]->month); my $res = $format_string; my $day = $_[0]->day; my $month = $_[0]->month; my $year = $_[0]->year; $res =~ s/%d/$day/; $res =~ s/%m/$month/; $res =~ s/%Y/$year/; return $res; } ##################################################################### # Type Conversion =pod =head2 as_string The C method converts the date to the default string, which at present is the same as that returned by the C method above. =cut sub as_string { $_[0]->ymd; } =pod =head2 DateTime The C method is used to inflate the B object into a full L object. =cut # Convert to "real" DateTime object sub DateTime { require DateTime; my $self = shift; DateTime->new( day => $self->day, month => $self->month, year => $self->year, locale => 'C', time_zone => 'floating', @_, ); } 1; =pod =head1 SUPPORT Bugs should be reported via the CPAN bug tracker at L For other issues, or commercial enhancement or support, contact the author. =head1 AUTHOR Adam Kennedy Ecpan@ali.asE =head1 SEE ALSO L, L, L, L, L =head1 COPYRIGHT Copyright 2006 Adam Kennedy. 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. =cut