/usr/share/perl5/DateTime/Tiny.pm is in libdatetime-tiny-perl 1.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | package DateTime::Tiny;
=pod
=head1 NAME
DateTime::Tiny - A date object, with as little code as possible
=head1 SYNOPSIS
# Create a date manually
$christmas = DateTime::Tiny->new(
year => 2006,
month => 12,
day => 25,
hour => 10,
minute => 45,
second => 0,
);
# Show the current date
my $now = DateTime::Tiny->now;
print "Year : " . $now->year . "\n";
print "Month : " . $now->month . "\n";
print "Day : " . $now->day . "\n";
print "Hour : " . $now->hour . "\n";
print "Minute : " . $now->minute . "\n";
print "Second : " . $now->second . "\n";
=head1 DESCRIPTION
B<DateTime::Tiny> is a most prominent member of the L<DateTime::Tiny>
suite of time modules.
It implements an extremely lightweight object that represents a datetime.
=head2 The Tiny Mandate
Many CPAN modules which provide the best implementation of a certain
concepts are 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 useful subset of their 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 (although this is just a guideline),
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<only> module to implement it completely correct is
L<DateTime>. However, to implement it properly L<DateTime> 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, manipulate or convert the object.
As a result, B<DateTime::Tiny> provides the functionality required to
represent a date as an object, to stringify the date and to parse it
back in, but does B<not> 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 type work.
The problem with this is that having no ability to modify date limits
the usefulness greatly.
To make up for this, B<if> you have L<DateTime> installed, any
B<DateTime::Tiny> module can be inflated into the equivalent L<DateTime>
as needing, loading L<DateTime> on the fly if necessary.
This is somewhat similar to DateTime::LazyInit, but unlike that module
B<DateTime::Tiny> is not modifiable.
For the purposes of date/time logic, all B<DateTime::Tiny> objects exist
in the "C" locale, and the "floating" time zone. This may be improved in
the future if a suitably tiny way of handling timezones is found.
When converting up to full L<DateTime> 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<DateTime>. Except, of course, that this module implements
less of it.
=cut
use strict;
BEGIN {
require 5.004;
$DateTime::Tiny::VERSION = '1.04';
}
use overload 'bool' => sub () { 1 };
use overload '""' => 'as_string';
use overload 'eq' => sub { "$_[0]" eq "$_[1]" };
use overload 'ne' => sub { "$_[0]" ne "$_[1]" };
#####################################################################
# Constructor and Accessors
=pod
=head2 new
my $date = DateTime::Tiny->new(
year => 2006,
month => 12,
day => 31,
hour => 10,
minute => 45,
second => 32,
);
The C<new> constructor creates a new B<DateTime::Tiny> object.
It takes six named params. C<day> should be the day of the month (1-31),
C<month> should be the month of the year (1-12), C<year> as a 4 digit year.
C<hour> should be the hour of the day (0-23), C<minute> should be the
minute of the hour (0-59) and C<second> should be the second of the
minute (0-59).
These are the only params accepted.
Returns a new B<DateTime::Tiny> object.
=cut
sub new {
my $class = shift;
bless { @_ }, $class;
}
=pod
=head2 now
my $current_date = DateTime::Tiny->now;
The C<now> 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<DateTime::Tiny> object.
=cut
sub now {
my @t = localtime time;
shift->new(
year => $t[5] + 1900,
month => $t[4] + 1,
day => $t[3],
hour => $t[2],
minute => $t[1],
second => $t[0],
);
}
=pod
=head2 year
The C<year> accessor returns the 4-digit year for the date.
=cut
sub year {
defined $_[0]->{year} ? $_[0]->{year} : 1970;
}
=pod
=head2 month
The C<month> accessor returns the 1-12 month of the year for the date.
=cut
sub month {
$_[0]->{month} || 1;
}
=pod
=head2 day
The C<day> accessor returns the 1-31 day of the month for the date.
=cut
sub day {
$_[0]->{day} || 1;
}
=pod
=head2 hour
The C<hour> accessor returns the hour component of the time as
an integer from zero to twenty-three (0-23) in line with 24-hour
time.
=cut
sub hour {
$_[0]->{hour} || 0;
}
=pod
=head2 minute
The C<minute> accessor returns the minute component of the time
as an integer from zero to fifty-nine (0-59).
=cut
sub minute {
$_[0]->{minute} || 0;
}
=pod
=head2 second
The C<second> accessor returns the second component of the time
as an integer from zero to fifty-nine (0-59).
=cut
sub second {
$_[0]->{second} || 0;
}
=pod
=head2 ymdhms
The C<ymdhms> method returns the most common and accurate stringified date
format, which returns in the form "2006-04-12".
=cut
sub ymdhms {
sprintf( "%04u-%02u-%02uT%02u:%02u:%02u",
$_[0]->year,
$_[0]->month,
$_[0]->day,
$_[0]->hour,
$_[0]->minute,
$_[0]->second,
);
}
#####################################################################
# Type Conversion
=pod
=head2 from_string
The C<from_string> method creates a new B<DateTime::Tiny> object from a string.
The string is expected to be an ISO 8601 time, with seperators.
my $almost_midnight = DateTime::Tiny->from_string( '2006-12-20T23:59:59' );
Returns a new B<DateTime::Tiny> object, or throws an exception on error.
=cut
sub from_string {
my $string = $_[1];
unless ( defined $string and ! ref $string ) {
Carp::croak("Did not provide a string to from_string");
}
unless ( $string =~ /^(\d\d\d\d)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)$/ ) {
Carp::croak("Invalid time format (does not match ISO 8601)");
}
$_[0]->new(
year => $1 + 0,
month => $2 + 0,
day => $3 + 0,
hour => $4 + 0,
minute => $5 + 0,
second => $6 + 0,
);
}
=pod
=head2 as_string
The C<as_string> method converts the date to the default string, which
at present is the same as that returned by the C<ymd> method above.
This string matches the ISO 8601 standard for the encoding of a date as
a string.
=cut
sub as_string {
$_[0]->ymdhms;
}
=pod
=head2 DateTime
The C<DateTime> method is used to create a L<DateTime> object
that is equivalent to the B<DateTime::Tiny> object, for use in
comversions and caluculations.
As mentioned earlier, the object will be set to the 'C' locate,
and the 'floating' time zone.
If installed, the L<DateTime> module will be loaded automatically.
Returns a L<DateTime> object, or throws an exception if L<DateTime>
is not installed on the current host.
=cut
sub DateTime {
require DateTime;
my $self = shift;
DateTime->new(
day => $self->day,
month => $self->month,
year => $self->year,
hour => $self->hour,
minute => $self->minute,
second => $self->second,
locale => 'C',
time_zone => 'floating',
@_,
);
}
1;
=pod
=head1 SUPPORT
Bugs should be reported via the CPAN bug tracker at
L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DateTime-Tiny>
For other issues, or commercial enhancement or support, contact the author.
=head1 AUTHOR
Adam Kennedy E<lt>adamk@cpan.orgE<gt>
=head1 SEE ALSO
L<DateTime>, L<Date::Tiny>, L<Time::Tiny>, L<Config::Tiny>, L<ali.as>
=head1 COPYRIGHT
Copyright 2006 - 2009 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
|