home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl560.zip / lib / Time / gmtime.pm next >
Text File  |  2000-01-22  |  3KB  |  90 lines

  1. package Time::gmtime;
  2. use strict;
  3. use Time::tm;
  4.  
  5. use 5.005_64;
  6. our(@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION);
  7. BEGIN { 
  8.     use Exporter   ();
  9.     @ISA         = qw(Exporter Time::tm);
  10.     @EXPORT      = qw(gmtime gmctime);
  11.     @EXPORT_OK   = qw(  
  12.             $tm_sec $tm_min $tm_hour $tm_mday 
  13.             $tm_mon $tm_year $tm_wday $tm_yday 
  14.             $tm_isdst
  15.             );
  16.     %EXPORT_TAGS = ( FIELDS => [ @EXPORT_OK, @EXPORT ] );
  17.     $VERSION     = 1.01;
  18. }
  19. use vars      @EXPORT_OK;
  20.  
  21. sub populate (@) {
  22.     return unless @_;
  23.     my $tmob = Time::tm->new();
  24.     @$tmob = (
  25.         $tm_sec, $tm_min, $tm_hour, $tm_mday, 
  26.         $tm_mon, $tm_year, $tm_wday, $tm_yday, 
  27.         $tm_isdst )
  28.         = @_;
  29.     return $tmob;
  30.  
  31. sub gmtime (;$)    { populate CORE::gmtime(@_ ? shift : time)}
  32. sub gmctime (;$)   { scalar   CORE::gmtime(@_ ? shift : time)} 
  33.  
  34. 1;
  35. __END__
  36.  
  37. =head1 NAME
  38.  
  39. Time::gmtime - by-name interface to Perl's built-in gmtime() function
  40.  
  41. =head1 SYNOPSIS
  42.  
  43.  use Time::gmtime;
  44.  $gm = gmtime();
  45.  printf "The day in Greenwich is %s\n", 
  46.     (qw(Sun Mon Tue Wed Thu Fri Sat Sun))[ gm->wday() ];
  47.  
  48.  use Time::gmtime w(:FIELDS;
  49.  printf "The day in Greenwich is %s\n", 
  50.     (qw(Sun Mon Tue Wed Thu Fri Sat Sun))[ gm_wday() ];
  51.  
  52.  $now = gmctime();
  53.  
  54.  use Time::gmtime;
  55.  use File::stat;
  56.  $date_string = gmctime(stat($file)->mtime);
  57.  
  58. =head1 DESCRIPTION
  59.  
  60. This module's default exports override the core gmtime() function,
  61. replacing it with a version that returns "Time::tm" objects.
  62. This object has methods that return the similarly named structure field
  63. name from the C's tm structure from F<time.h>; namely sec, min, hour,
  64. mday, mon, year, wday, yday, and isdst.
  65.  
  66. You may also import all the structure fields directly into your namespace
  67. as regular variables using the :FIELDS import tag.  (Note that this
  68. still overrides your core functions.)  Access these fields as variables
  69. named with a preceding C<tm_> in front their method names.  Thus,
  70. C<$tm_obj-E<gt>mday()> corresponds to $tm_mday if you import the fields.
  71.  
  72. The gmctime() function provides a way of getting at the 
  73. scalar sense of the original CORE::gmtime() function.
  74.  
  75. To access this functionality without the core overrides,
  76. pass the C<use> an empty import list, and then access
  77. function functions with their full qualified names.
  78. On the other hand, the built-ins are still available
  79. via the C<CORE::> pseudo-package.
  80.  
  81. =head1 NOTE
  82.  
  83. While this class is currently implemented using the Class::Struct
  84. module to build a struct-like class, you shouldn't rely upon this.
  85.  
  86. =head1 AUTHOR
  87.  
  88. Tom Christiansen
  89.