File.pm 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. #
  2. package IO::File;
  3. =head1 NAME
  4. IO::File - supply object methods for filehandles
  5. =head1 SYNOPSIS
  6. use IO::File;
  7. $fh = IO::File->new();
  8. if ($fh->open("< file")) {
  9. print <$fh>;
  10. $fh->close;
  11. }
  12. $fh = IO::File->new("> file");
  13. if (defined $fh) {
  14. print $fh "bar\n";
  15. $fh->close;
  16. }
  17. $fh = IO::File->new("file", "r");
  18. if (defined $fh) {
  19. print <$fh>;
  20. undef $fh; # automatically closes the file
  21. }
  22. $fh = IO::File->new("file", O_WRONLY|O_APPEND);
  23. if (defined $fh) {
  24. print $fh "corge\n";
  25. $pos = $fh->getpos;
  26. $fh->setpos($pos);
  27. undef $fh; # automatically closes the file
  28. }
  29. autoflush STDOUT 1;
  30. =head1 DESCRIPTION
  31. C<IO::File> inherits from C<IO::Handle> and C<IO::Seekable>. It extends
  32. these classes with methods that are specific to file handles.
  33. =head1 CONSTRUCTOR
  34. =over 4
  35. =item new ( FILENAME [,MODE [,PERMS]] )
  36. Creates an C<IO::File>. If it receives any parameters, they are passed to
  37. the method C<open>; if the open fails, the object is destroyed. Otherwise,
  38. it is returned to the caller.
  39. =item new_tmpfile
  40. Creates an C<IO::File> opened for read/write on a newly created temporary
  41. file. On systems where this is possible, the temporary file is anonymous
  42. (i.e. it is unlinked after creation, but held open). If the temporary
  43. file cannot be created or opened, the C<IO::File> object is destroyed.
  44. Otherwise, it is returned to the caller.
  45. =back
  46. =head1 METHODS
  47. =over 4
  48. =item open( FILENAME [,MODE [,PERMS]] )
  49. =item open( FILENAME, IOLAYERS )
  50. C<open> accepts one, two or three parameters. With one parameter,
  51. it is just a front end for the built-in C<open> function. With two or three
  52. parameters, the first parameter is a filename that may include
  53. whitespace or other special characters, and the second parameter is
  54. the open mode, optionally followed by a file permission value.
  55. If C<IO::File::open> receives a Perl mode string ("E<gt>", "+E<lt>", etc.)
  56. or an ANSI C fopen() mode string ("w", "r+", etc.), it uses the basic
  57. Perl C<open> operator (but protects any special characters).
  58. If C<IO::File::open> is given a numeric mode, it passes that mode
  59. and the optional permissions value to the Perl C<sysopen> operator.
  60. The permissions default to 0666.
  61. If C<IO::File::open> is given a mode that includes the C<:> character,
  62. it passes all the three arguments to the three-argument C<open> operator.
  63. For convenience, C<IO::File> exports the O_XXX constants from the
  64. Fcntl module, if this module is available.
  65. =item binmode( [LAYER] )
  66. C<binmode> sets C<binmode> on the underlying C<IO> object, as documented
  67. in C<perldoc -f binmode>.
  68. C<binmode> accepts one optional parameter, which is the layer to be
  69. passed on to the C<binmode> call.
  70. =back
  71. =head1 NOTE
  72. Some operating systems may perform C<IO::File::new()> or C<IO::File::open()>
  73. on a directory without errors. This behavior is not portable and not
  74. suggested for use. Using C<opendir()> and C<readdir()> or C<IO::Dir> are
  75. suggested instead.
  76. =head1 SEE ALSO
  77. L<perlfunc>,
  78. L<perlop/"I/O Operators">,
  79. L<IO::Handle>,
  80. L<IO::Seekable>,
  81. L<IO::Dir>
  82. =head1 HISTORY
  83. Derived from FileHandle.pm by Graham Barr E<lt>F<gbarr@pobox.com>E<gt>.
  84. =cut
  85. use 5.006_001;
  86. use strict;
  87. our($VERSION, @EXPORT, @EXPORT_OK, @ISA);
  88. use Carp;
  89. use Symbol;
  90. use SelectSaver;
  91. use IO::Seekable;
  92. require Exporter;
  93. @ISA = qw(IO::Handle IO::Seekable Exporter);
  94. $VERSION = "1.16";
  95. @EXPORT = @IO::Seekable::EXPORT;
  96. eval {
  97. # Make all Fcntl O_XXX constants available for importing
  98. require Fcntl;
  99. my @O = grep /^O_/, @Fcntl::EXPORT;
  100. Fcntl->import(@O); # first we import what we want to export
  101. push(@EXPORT, @O);
  102. };
  103. ################################################
  104. ## Constructor
  105. ##
  106. sub new {
  107. my $type = shift;
  108. my $class = ref($type) || $type || "IO::File";
  109. @_ >= 0 && @_ <= 3
  110. or croak "usage: $class->new([FILENAME [,MODE [,PERMS]]])";
  111. my $fh = $class->SUPER::new();
  112. if (@_) {
  113. $fh->open(@_)
  114. or return undef;
  115. }
  116. $fh;
  117. }
  118. ################################################
  119. ## Open
  120. ##
  121. sub open {
  122. @_ >= 2 && @_ <= 4 or croak 'usage: $fh->open(FILENAME [,MODE [,PERMS]])';
  123. my ($fh, $file) = @_;
  124. if (@_ > 2) {
  125. my ($mode, $perms) = @_[2, 3];
  126. if ($mode =~ /^\d+$/) {
  127. defined $perms or $perms = 0666;
  128. return sysopen($fh, $file, $mode, $perms);
  129. } elsif ($mode =~ /:/) {
  130. return open($fh, $mode, $file) if @_ == 3;
  131. croak 'usage: $fh->open(FILENAME, IOLAYERS)';
  132. } else {
  133. return open($fh, IO::Handle::_open_mode_string($mode), $file);
  134. }
  135. }
  136. open($fh, $file);
  137. }
  138. ################################################
  139. ## Binmode
  140. ##
  141. sub binmode {
  142. ( @_ == 1 or @_ == 2 ) or croak 'usage $fh->binmode([LAYER])';
  143. my($fh, $layer) = @_;
  144. return binmode $$fh unless $layer;
  145. return binmode $$fh, $layer;
  146. }
  147. 1;