Build Status

NAME

POSIX::strftime::GNU - strftime with GNU extensions

SYNOPSIS

use POSIX::strftime::GNU;
use POSIX 'strftime';
print POSIX::strftime('%a, %d %b %Y %T %z', localtime);

command line:

C:\> set PERL_ANYEVENT_LOG=filter=debug
C:\> perl -MPOSIX::strftime::GNU -MAnyEvent -e "AE::cv->send"

DESCRIPTION

This is a wrapper for POSIX::strftime which implements more character sequences compatible with GNU systems.

The module is 100% compatible with format of date(1) command from GNU coreutils package.

It can be helpful if you run some software on operating system where these extensions, especially %z sequence, are not supported, i.e. on Microsoft Windows. On such system some software can work incorrectly, i.e. logging for Plack and AnyEvent modules might be broken.

Even GNU C Library's strftime(3) function does not provide 100% compatibility with date(1) command so this module can be useful also on Linux.

The XS module is used if compiler is available and can module can be loaded. The XS is mandatory if PERL_POSIX_STRFTIME_GNU_XS environment variable is true.

The PP module is used when XS module can not be loaded or PERL_POSIX_STRFTIME_GNU_PP environment variable is true.

None of these modules are loaded if both PERL_POSIX_STRFTIME_GNU_PP and PERL_POSIX_STRFTIME_GNU_XS environment variables are defined and false.

FUNCTIONS

strftime

$str = strftime($format, @time)

This is replacement for POSIX::strftime function.

The nanoseconds can be given as a fraction of seconds.

use POSIX::strftime::GNU;
use Time::HiRes qw(gettimeofday);
my ($t, $nsec) = gettimeofday;
my @t = localtime $t;
$t[0] += $nsec / 10e5;
print strftime('%N', @t);

FORMAT

The format argument is composed of zero or more conversion specifications. Each conversion specification is composed of a % (percent) character followed by one or two conversion characters which specify the replacement required.

There are some extensions of ANSI C (unmarked): those given in the Single UNIX Specification (marked SU), those given in Olson's timezone package (marked TZ), and those given in glibc (marked GNU).

The following conversion specifications are supported:

Some conversion specifications can be modified by preceding the conversion specifier character by the E or O modifier to indicate that an alternative format should be used. If the alternative format or specification does not exist for the current locale, the behavior will be as if the unmodified conversion specification were used. (SU) The Single UNIX Specification mentions %Ec, %EC, %Ex, %EX, %Ey, %EY, %Od, %Oe, %OH, %OI, %Om, %OM, %OS, %Ou, %OU, %OV, %Ow, %OW, %Oy, where the effect of the O modifier is to use alternative numeric symbols (say, roman numerals), and that of the E modifier is to use a locale-dependent alternative representation.

%G, %g, and %V yield values calculated from the week-based year defined by the ISO 8601 standard. In this system, weeks start on a Monday, and are numbered from 01, for the first week, up to 52 or 53, for the last week. Week 1 is the first week where four or more days fall within the new year (or, synonymously, week 01 is: the first week of the year that contains a Thursday; or, the week that has 4 January in it). When three of fewer days of the first calendar week of the new year fall within that year, then the ISO 8601 week-based system counts those days as part of week 53 of the preceding year. For example, 1 January 2010 is a Friday, meaning that just three days of that calendar week fall in 2010. Thus, the ISO 8601 week- based system considers these days to be part of week 53 (%V) of the year 2009 (%G) ; week 01 of ISO 8601 year 2010 starts on Monday, 4 January 2010.

Glibc provides some extensions for conversion specifications. (These extensions are not specified in POSIX.1-2001, but a few other systems provide similar features.) Between the % character and the conversion specifier character, an optional flag and field width may be specified. (These precede the E or O modifiers, if present.)

The following flag characters are permitted:

INSTALLING

Cygwin

This module requires libcrypt-devel package.

BUGS

Timezone name is guessed with several heuristics so it can differ from timezone name returned by date(1) command.

If you find the bug or want to implement new features, please report it at https://github.com/dex4er/perl-POSIX-strftime-GNU/issues

The code repository is available at http://github.com/dex4er/perl-POSIX-strftime-GNU

AUTHOR

Piotr Roszatycki dexter@cpan.org

LICENSE

Copyright (c) 2012-2014 Piotr Roszatycki dexter@cpan.org.

Format specification is based on strftime(3) manual page which is a part of the Linux man-pages project.

This is free software; you can redistribute it and/or modify it under the same terms as perl itself.

See http://dev.perl.org/licenses/artistic.html