/usr/share/perl5/DateTime/Tiny.pm is in libdatetime-tiny-perl 1.06-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 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 | use strict;
use warnings;
package DateTime::Tiny;
# ABSTRACT: A date object, with as little code as possible
our $VERSION = '1.06';
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 =pod
#pod
#pod =method new
#pod
#pod my $date = DateTime::Tiny->new(
#pod year => 2006,
#pod month => 12,
#pod day => 31,
#pod hour => 10,
#pod minute => 45,
#pod second => 32,
#pod );
#pod
#pod The C<new> constructor creates a new B<DateTime::Tiny> object.
#pod
#pod It takes six named parameters. C<day> should be the day of the month (1-31),
#pod C<month> should be the month of the year (1-12), C<year> as a 4 digit year.
#pod C<hour> should be the hour of the day (0-23), C<minute> should be the
#pod minute of the hour (0-59) and C<second> should be the second of the
#pod minute (0-59).
#pod
#pod These are the only parameters accepted.
#pod
#pod Returns a new B<DateTime::Tiny> object.
#pod
#pod =cut
sub new {
my $class = shift;
bless { @_ }, $class;
}
#pod =pod
#pod
#pod =method now
#pod
#pod my $current_date = DateTime::Tiny->now;
#pod
#pod The C<now> method creates a new date object for the current date.
#pod
#pod The date created will be based on localtime, despite the fact that
#pod the date is created in the floating time zone.
#pod
#pod Returns a new B<DateTime::Tiny> object.
#pod
#pod =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 =pod
#pod
#pod =method year
#pod
#pod The C<year> accessor returns the 4-digit year for the date.
#pod
#pod =cut
sub year {
defined $_[0]->{year} ? $_[0]->{year} : 1970;
}
#pod =pod
#pod
#pod =method month
#pod
#pod The C<month> accessor returns the 1-12 month of the year for the date.
#pod
#pod =cut
sub month {
$_[0]->{month} || 1;
}
#pod =pod
#pod
#pod =method day
#pod
#pod The C<day> accessor returns the 1-31 day of the month for the date.
#pod
#pod =cut
sub day {
$_[0]->{day} || 1;
}
#pod =pod
#pod
#pod =method hour
#pod
#pod The C<hour> accessor returns the hour component of the time as
#pod an integer from zero to twenty-three (0-23) in line with 24-hour
#pod time.
#pod
#pod =cut
sub hour {
$_[0]->{hour} || 0;
}
#pod =pod
#pod
#pod =method minute
#pod
#pod The C<minute> accessor returns the minute component of the time
#pod as an integer from zero to fifty-nine (0-59).
#pod
#pod =cut
sub minute {
$_[0]->{minute} || 0;
}
#pod =pod
#pod
#pod =method second
#pod
#pod The C<second> accessor returns the second component of the time
#pod as an integer from zero to fifty-nine (0-59).
#pod
#pod =cut
sub second {
$_[0]->{second} || 0;
}
#pod =pod
#pod
#pod =method ymdhms
#pod
#pod The C<ymdhms> method returns the most common and accurate stringified date
#pod format, which returns in the form "2006-04-12T23:59:59".
#pod
#pod =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 =pod
#pod
#pod =method from_string
#pod
#pod The C<from_string> method creates a new B<DateTime::Tiny> object from a string.
#pod
#pod The string is expected to be an ISO 8601 combined date and time, with
#pod separators (including the 'T' separator) and no time zone designator. No
#pod other ISO 8601 formats are supported.
#pod
#pod my $almost_midnight = DateTime::Tiny->from_string( '2006-12-20T23:59:59' );
#pod
#pod Returns a new B<DateTime::Tiny> object, or throws an exception on error.
#pod
#pod =cut
sub from_string {
my $string = $_[1];
unless ( defined $string and ! ref $string ) {
require Carp;
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)$/ ) {
require Carp;
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 =pod
#pod
#pod =method as_string
#pod
#pod The C<as_string> method converts the date to the default string, which
#pod at present is the same as that returned by the C<ymdhms> method above.
#pod
#pod This string conforms to the ISO 8601 standard for the encoding of a combined
#pod date and time as a string, without time-zone designator.
#pod
#pod =cut
sub as_string {
$_[0]->ymdhms;
}
#pod =pod
#pod
#pod =method DateTime
#pod
#pod The C<DateTime> method is used to create a L<DateTime> object
#pod that is equivalent to the B<DateTime::Tiny> object, for use in
#pod conversions and calculations.
#pod
#pod As mentioned earlier, the object will be set to the 'C' locale,
#pod and the 'floating' time zone.
#pod
#pod If installed, the L<DateTime> module will be loaded automatically.
#pod
#pod Returns a L<DateTime> object, or throws an exception if L<DateTime>
#pod is not installed on the current host.
#pod
#pod =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;
__END__
=pod
=encoding UTF-8
=head1 NAME
DateTime::Tiny - A date object, with as little code as possible
=head1 VERSION
version 1.06
=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 L<DateTime::LazyInit>, but unlike that module
B<DateTime::Tiny> objects are 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 locale 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 USAGE
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.
=head1 METHODS
=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 parameters. 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 parameters accepted.
Returns a new B<DateTime::Tiny> object.
=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.
=head2 year
The C<year> accessor returns the 4-digit year for the date.
=head2 month
The C<month> accessor returns the 1-12 month of the year for the date.
=head2 day
The C<day> accessor returns the 1-31 day of the month for the date.
=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.
=head2 minute
The C<minute> accessor returns the minute component of the time
as an integer from zero to fifty-nine (0-59).
=head2 second
The C<second> accessor returns the second component of the time
as an integer from zero to fifty-nine (0-59).
=head2 ymdhms
The C<ymdhms> method returns the most common and accurate stringified date
format, which returns in the form "2006-04-12T23:59:59".
=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 combined date and time, with
separators (including the 'T' separator) and no time zone designator. No
other ISO 8601 formats are supported.
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.
=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<ymdhms> method above.
This string conforms to the ISO 8601 standard for the encoding of a combined
date and time as a string, without time-zone designator.
=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
conversions and calculations.
As mentioned earlier, the object will be set to the 'C' locale,
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.
=head1 HISTORY
This module was written by Adam Kennedy in 2006. In 2016, David Golden
adopted it as a caretaker maintainer.
=head1 SEE ALSO
L<DateTime>, L<Date::Tiny>, L<Time::Tiny>, L<Config::Tiny>, L<ali.as>
=for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
=head1 SUPPORT
=head2 Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker
at L<https://github.com/dagolden/DateTime-Tiny/issues>.
You will be notified automatically of any progress on your issue.
=head2 Source Code
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
L<https://github.com/dagolden/DateTime-Tiny>
git clone https://github.com/dagolden/DateTime-Tiny.git
=head1 AUTHORS
=over 4
=item *
Adam Kennedy <adamk@cpan.org>
=item *
David Golden <dagolden@cpan.org>
=back
=head1 CONTRIBUTORS
=for stopwords Ken Williams Nigel Gregoire
=over 4
=item *
Ken Williams <Ken.Williams@WindLogics.com>
=item *
Nigel Gregoire <nigelg@airg.com>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2006 by Adam Kennedy.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|