home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _4402434435b1673a3dbd58939af99fd0 < prev    next >
Text File  |  2000-03-15  |  2KB  |  78 lines

  1. #
  2.  
  3. package IO::Seekable;
  4.  
  5. =head1 NAME
  6.  
  7. IO::Seekable - supply seek based methods for I/O objects
  8.  
  9. =head1 SYNOPSIS
  10.  
  11.     use IO::Seekable;
  12.     package IO::Something;
  13.     @ISA = qw(IO::Seekable);
  14.  
  15. =head1 DESCRIPTION
  16.  
  17. C<IO::Seekable> does not have a constructor of its own as it is intended to
  18. be inherited by other C<IO::Handle> based objects. It provides methods
  19. which allow seeking of the file descriptors.
  20.  
  21. If the C functions fgetpos() and fsetpos() are available, then
  22. C<$io-E<lt>getpos> returns an opaque value that represents the
  23. current position of the IO::File, and C<$io-E<gt>setpos(POS)> uses
  24. that value to return to a previously visited position.
  25.  
  26. See L<perlfunc> for complete descriptions of each of the following
  27. supported C<IO::Seekable> methods, which are just front ends for the
  28. corresponding built-in functions:
  29.  
  30.   $io->seek( POS, WHENCE )
  31.   $io->sysseek( POS, WHENCE )
  32.   $io->tell
  33.  
  34. =head1 SEE ALSO
  35.  
  36. L<perlfunc>, 
  37. L<perlop/"I/O Operators">,
  38. L<IO::Handle>
  39. L<IO::File>
  40.  
  41. =head1 HISTORY
  42.  
  43. Derived from FileHandle.pm by Graham Barr E<lt>gbarr@pobox.comE<gt>
  44.  
  45. =cut
  46.  
  47. require 5.005_64;
  48. use Carp;
  49. use strict;
  50. our($VERSION, @EXPORT, @ISA);
  51. use IO::Handle ();
  52. # XXX we can't get these from IO::Handle or we'll get prototype
  53. # mismatch warnings on C<use POSIX; use IO::File;> :-(
  54. use Fcntl qw(SEEK_SET SEEK_CUR SEEK_END);
  55. require Exporter;
  56.  
  57. @EXPORT = qw(SEEK_SET SEEK_CUR SEEK_END);
  58. @ISA = qw(Exporter);
  59.  
  60. $VERSION = "1.08";
  61.  
  62. sub seek {
  63.     @_ == 3 or croak 'usage: $io->seek(POS, WHENCE)';
  64.     seek($_[0], $_[1], $_[2]);
  65. }
  66.  
  67. sub sysseek {
  68.     @_ == 3 or croak 'usage: $io->sysseek(POS, WHENCE)';
  69.     sysseek($_[0], $_[1], $_[2]);
  70. }
  71.  
  72. sub tell {
  73.     @_ == 1 or croak 'usage: $io->tell()';
  74.     tell($_[0]);
  75. }
  76.  
  77. 1;
  78.