Handle.pm 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653
  1. package IO::Handle;
  2. =head1 NAME
  3. IO::Handle - supply object methods for I/O handles
  4. =head1 SYNOPSIS
  5. use IO::Handle;
  6. $io = IO::Handle->new();
  7. if ($io->fdopen(fileno(STDIN),"r")) {
  8. print $io->getline;
  9. $io->close;
  10. }
  11. $io = IO::Handle->new();
  12. if ($io->fdopen(fileno(STDOUT),"w")) {
  13. $io->print("Some text\n");
  14. }
  15. # setvbuf is not available by default on Perls 5.8.0 and later.
  16. use IO::Handle '_IOLBF';
  17. $io->setvbuf($buffer_var, _IOLBF, 1024);
  18. undef $io; # automatically closes the file if it's open
  19. autoflush STDOUT 1;
  20. =head1 DESCRIPTION
  21. C<IO::Handle> is the base class for all other IO handle classes. It is
  22. not intended that objects of C<IO::Handle> would be created directly,
  23. but instead C<IO::Handle> is inherited from by several other classes
  24. in the IO hierarchy.
  25. If you are reading this documentation, looking for a replacement for
  26. the C<FileHandle> package, then I suggest you read the documentation
  27. for C<IO::File> too.
  28. =head1 CONSTRUCTOR
  29. =over 4
  30. =item new ()
  31. Creates a new C<IO::Handle> object.
  32. =item new_from_fd ( FD, MODE )
  33. Creates an C<IO::Handle> like C<new> does.
  34. It requires two parameters, which are passed to the method C<fdopen>;
  35. if the fdopen fails, the object is destroyed. Otherwise, it is returned
  36. to the caller.
  37. =back
  38. =head1 METHODS
  39. See L<perlfunc> for complete descriptions of each of the following
  40. supported C<IO::Handle> methods, which are just front ends for the
  41. corresponding built-in functions:
  42. $io->close
  43. $io->eof
  44. $io->fcntl( FUNCTION, SCALAR )
  45. $io->fileno
  46. $io->format_write( [FORMAT_NAME] )
  47. $io->getc
  48. $io->ioctl( FUNCTION, SCALAR )
  49. $io->read ( BUF, LEN, [OFFSET] )
  50. $io->print ( ARGS )
  51. $io->printf ( FMT, [ARGS] )
  52. $io->say ( ARGS )
  53. $io->stat
  54. $io->sysread ( BUF, LEN, [OFFSET] )
  55. $io->syswrite ( BUF, [LEN, [OFFSET]] )
  56. $io->truncate ( LEN )
  57. See L<perlvar> for complete descriptions of each of the following
  58. supported C<IO::Handle> methods. All of them return the previous
  59. value of the attribute and takes an optional single argument that when
  60. given will set the value. If no argument is given the previous value
  61. is unchanged (except for $io->autoflush will actually turn ON
  62. autoflush by default).
  63. $io->autoflush ( [BOOL] ) $|
  64. $io->format_page_number( [NUM] ) $%
  65. $io->format_lines_per_page( [NUM] ) $=
  66. $io->format_lines_left( [NUM] ) $-
  67. $io->format_name( [STR] ) $~
  68. $io->format_top_name( [STR] ) $^
  69. $io->input_line_number( [NUM]) $.
  70. The following methods are not supported on a per-filehandle basis.
  71. IO::Handle->format_line_break_characters( [STR] ) $:
  72. IO::Handle->format_formfeed( [STR]) $^L
  73. IO::Handle->output_field_separator( [STR] ) $,
  74. IO::Handle->output_record_separator( [STR] ) $\
  75. IO::Handle->input_record_separator( [STR] ) $/
  76. Furthermore, for doing normal I/O you might need these:
  77. =over 4
  78. =item $io->fdopen ( FD, MODE )
  79. C<fdopen> is like an ordinary C<open> except that its first parameter
  80. is not a filename but rather a file handle name, an IO::Handle object,
  81. or a file descriptor number. (For the documentation of the C<open>
  82. method, see L<IO::File>.)
  83. =item $io->opened
  84. Returns true if the object is currently a valid file descriptor, false
  85. otherwise.
  86. =item $io->getline
  87. This works like <$io> described in L<perlop/"I/O Operators">
  88. except that it's more readable and can be safely called in a
  89. list context but still returns just one line. If used as the conditional
  90. +within a C<while> or C-style C<for> loop, however, you will need to
  91. +emulate the functionality of <$io> with C<< defined($_ = $io->getline) >>.
  92. =item $io->getlines
  93. This works like <$io> when called in a list context to read all
  94. the remaining lines in a file, except that it's more readable.
  95. It will also croak() if accidentally called in a scalar context.
  96. =item $io->ungetc ( ORD )
  97. Pushes a character with the given ordinal value back onto the given
  98. handle's input stream. Only one character of pushback per handle is
  99. guaranteed.
  100. =item $io->write ( BUF, LEN [, OFFSET ] )
  101. This C<write> is somewhat like C<write> found in C, in that it is the
  102. opposite of read. The wrapper for the perl C<write> function is
  103. called C<format_write>. However, whilst the C C<write> function returns
  104. the number of bytes written, this C<write> function simply returns true
  105. if successful (like C<print>). A more C-like C<write> is C<syswrite>
  106. (see above).
  107. =item $io->error
  108. Returns a true value if the given handle has experienced any errors
  109. since it was opened or since the last call to C<clearerr>, or if the
  110. handle is invalid. It only returns false for a valid handle with no
  111. outstanding errors.
  112. =item $io->clearerr
  113. Clear the given handle's error indicator. Returns -1 if the handle is
  114. invalid, 0 otherwise.
  115. =item $io->sync
  116. C<sync> synchronizes a file's in-memory state with that on the
  117. physical medium. C<sync> does not operate at the perlio api level, but
  118. operates on the file descriptor (similar to sysread, sysseek and
  119. systell). This means that any data held at the perlio api level will not
  120. be synchronized. To synchronize data that is buffered at the perlio api
  121. level you must use the flush method. C<sync> is not implemented on all
  122. platforms. Returns "0 but true" on success, C<undef> on error, C<undef>
  123. for an invalid handle. See L<fsync(3c)>.
  124. =item $io->flush
  125. C<flush> causes perl to flush any buffered data at the perlio api level.
  126. Any unread data in the buffer will be discarded, and any unwritten data
  127. will be written to the underlying file descriptor. Returns "0 but true"
  128. on success, C<undef> on error.
  129. =item $io->printflush ( ARGS )
  130. Turns on autoflush, print ARGS and then restores the autoflush status of the
  131. C<IO::Handle> object. Returns the return value from print.
  132. =item $io->blocking ( [ BOOL ] )
  133. If called with an argument C<blocking> will turn on non-blocking IO if
  134. C<BOOL> is false, and turn it off if C<BOOL> is true.
  135. C<blocking> will return the value of the previous setting, or the
  136. current setting if C<BOOL> is not given.
  137. If an error occurs C<blocking> will return undef and C<$!> will be set.
  138. =back
  139. If the C functions setbuf() and/or setvbuf() are available, then
  140. C<IO::Handle::setbuf> and C<IO::Handle::setvbuf> set the buffering
  141. policy for an IO::Handle. The calling sequences for the Perl functions
  142. are the same as their C counterparts--including the constants C<_IOFBF>,
  143. C<_IOLBF>, and C<_IONBF> for setvbuf()--except that the buffer parameter
  144. specifies a scalar variable to use as a buffer. You should only
  145. change the buffer before any I/O, or immediately after calling flush.
  146. WARNING: The IO::Handle::setvbuf() is not available by default on
  147. Perls 5.8.0 and later because setvbuf() is rather specific to using
  148. the stdio library, while Perl prefers the new perlio subsystem instead.
  149. WARNING: A variable used as a buffer by C<setbuf> or C<setvbuf> B<must not
  150. be modified> in any way until the IO::Handle is closed or C<setbuf> or
  151. C<setvbuf> is called again, or memory corruption may result! Remember that
  152. the order of global destruction is undefined, so even if your buffer
  153. variable remains in scope until program termination, it may be undefined
  154. before the file IO::Handle is closed. Note that you need to import the
  155. constants C<_IOFBF>, C<_IOLBF>, and C<_IONBF> explicitly. Like C, setbuf
  156. returns nothing. setvbuf returns "0 but true", on success, C<undef> on
  157. failure.
  158. Lastly, there is a special method for working under B<-T> and setuid/gid
  159. scripts:
  160. =over 4
  161. =item $io->untaint
  162. Marks the object as taint-clean, and as such data read from it will also
  163. be considered taint-clean. Note that this is a very trusting action to
  164. take, and appropriate consideration for the data source and potential
  165. vulnerability should be kept in mind. Returns 0 on success, -1 if setting
  166. the taint-clean flag failed. (eg invalid handle)
  167. =back
  168. =head1 NOTE
  169. An C<IO::Handle> object is a reference to a symbol/GLOB reference (see
  170. the C<Symbol> package). Some modules that
  171. inherit from C<IO::Handle> may want to keep object related variables
  172. in the hash table part of the GLOB. In an attempt to prevent modules
  173. trampling on each other I propose the that any such module should prefix
  174. its variables with its own name separated by _'s. For example the IO::Socket
  175. module keeps a C<timeout> variable in 'io_socket_timeout'.
  176. =head1 SEE ALSO
  177. L<perlfunc>,
  178. L<perlop/"I/O Operators">,
  179. L<IO::File>
  180. =head1 BUGS
  181. Due to backwards compatibility, all filehandles resemble objects
  182. of class C<IO::Handle>, or actually classes derived from that class.
  183. They actually aren't. Which means you can't derive your own
  184. class from C<IO::Handle> and inherit those methods.
  185. =head1 HISTORY
  186. Derived from FileHandle.pm by Graham Barr E<lt>F<gbarr@pobox.com>E<gt>
  187. =cut
  188. use 5.006_001;
  189. use strict;
  190. our($VERSION, @EXPORT_OK, @ISA);
  191. use Carp;
  192. use Symbol;
  193. use SelectSaver;
  194. use IO (); # Load the XS module
  195. require Exporter;
  196. @ISA = qw(Exporter);
  197. $VERSION = "1.35";
  198. $VERSION = eval $VERSION;
  199. @EXPORT_OK = qw(
  200. autoflush
  201. output_field_separator
  202. output_record_separator
  203. input_record_separator
  204. input_line_number
  205. format_page_number
  206. format_lines_per_page
  207. format_lines_left
  208. format_name
  209. format_top_name
  210. format_line_break_characters
  211. format_formfeed
  212. format_write
  213. print
  214. printf
  215. say
  216. getline
  217. getlines
  218. printflush
  219. flush
  220. SEEK_SET
  221. SEEK_CUR
  222. SEEK_END
  223. _IOFBF
  224. _IOLBF
  225. _IONBF
  226. );
  227. ################################################
  228. ## Constructors, destructors.
  229. ##
  230. sub new {
  231. my $class = ref($_[0]) || $_[0] || "IO::Handle";
  232. if (@_ != 1) {
  233. # Since perl will automatically require IO::File if needed, but
  234. # also initialises IO::File's @ISA as part of the core we must
  235. # ensure IO::File is loaded if IO::Handle is. This avoids effect-
  236. # ively "half-loading" IO::File.
  237. if ($] > 5.013 && $class eq 'IO::File' && !$INC{"IO/File.pm"}) {
  238. require IO::File;
  239. shift;
  240. return IO::File::->new(@_);
  241. }
  242. croak "usage: $class->new()";
  243. }
  244. my $io = gensym;
  245. bless $io, $class;
  246. }
  247. sub new_from_fd {
  248. my $class = ref($_[0]) || $_[0] || "IO::Handle";
  249. @_ == 3 or croak "usage: $class->new_from_fd(FD, MODE)";
  250. my $io = gensym;
  251. shift;
  252. IO::Handle::fdopen($io, @_)
  253. or return undef;
  254. bless $io, $class;
  255. }
  256. #
  257. # There is no need for DESTROY to do anything, because when the
  258. # last reference to an IO object is gone, Perl automatically
  259. # closes its associated files (if any). However, to avoid any
  260. # attempts to autoload DESTROY, we here define it to do nothing.
  261. #
  262. sub DESTROY {}
  263. ################################################
  264. ## Open and close.
  265. ##
  266. sub _open_mode_string {
  267. my ($mode) = @_;
  268. $mode =~ /^\+?(<|>>?)$/
  269. or $mode =~ s/^r(\+?)$/$1</
  270. or $mode =~ s/^w(\+?)$/$1>/
  271. or $mode =~ s/^a(\+?)$/$1>>/
  272. or croak "IO::Handle: bad open mode: $mode";
  273. $mode;
  274. }
  275. sub fdopen {
  276. @_ == 3 or croak 'usage: $io->fdopen(FD, MODE)';
  277. my ($io, $fd, $mode) = @_;
  278. local(*GLOB);
  279. if (ref($fd) && "".$fd =~ /GLOB\(/o) {
  280. # It's a glob reference; Alias it as we cannot get name of anon GLOBs
  281. my $n = qualify(*GLOB);
  282. *GLOB = *{*$fd};
  283. $fd = $n;
  284. } elsif ($fd =~ m#^\d+$#) {
  285. # It's an FD number; prefix with "=".
  286. $fd = "=$fd";
  287. }
  288. open($io, _open_mode_string($mode) . '&' . $fd)
  289. ? $io : undef;
  290. }
  291. sub close {
  292. @_ == 1 or croak 'usage: $io->close()';
  293. my($io) = @_;
  294. close($io);
  295. }
  296. ################################################
  297. ## Normal I/O functions.
  298. ##
  299. # flock
  300. # select
  301. sub opened {
  302. @_ == 1 or croak 'usage: $io->opened()';
  303. defined fileno($_[0]);
  304. }
  305. sub fileno {
  306. @_ == 1 or croak 'usage: $io->fileno()';
  307. fileno($_[0]);
  308. }
  309. sub getc {
  310. @_ == 1 or croak 'usage: $io->getc()';
  311. getc($_[0]);
  312. }
  313. sub eof {
  314. @_ == 1 or croak 'usage: $io->eof()';
  315. eof($_[0]);
  316. }
  317. sub print {
  318. @_ or croak 'usage: $io->print(ARGS)';
  319. my $this = shift;
  320. print $this @_;
  321. }
  322. sub printf {
  323. @_ >= 2 or croak 'usage: $io->printf(FMT,[ARGS])';
  324. my $this = shift;
  325. printf $this @_;
  326. }
  327. sub say {
  328. @_ or croak 'usage: $io->say(ARGS)';
  329. my $this = shift;
  330. local $\ = "\n";
  331. print $this @_;
  332. }
  333. # Special XS wrapper to make them inherit lexical hints from the caller.
  334. _create_getline_subs( <<'END' ) or die $@;
  335. sub getline {
  336. @_ == 1 or croak 'usage: $io->getline()';
  337. my $this = shift;
  338. return scalar <$this>;
  339. }
  340. sub getlines {
  341. @_ == 1 or croak 'usage: $io->getlines()';
  342. wantarray or
  343. croak 'Can\'t call $io->getlines in a scalar context, use $io->getline';
  344. my $this = shift;
  345. return <$this>;
  346. }
  347. 1; # return true for error checking
  348. END
  349. *gets = \&getline; # deprecated
  350. sub truncate {
  351. @_ == 2 or croak 'usage: $io->truncate(LEN)';
  352. truncate($_[0], $_[1]);
  353. }
  354. sub read {
  355. @_ == 3 || @_ == 4 or croak 'usage: $io->read(BUF, LEN [, OFFSET])';
  356. read($_[0], $_[1], $_[2], $_[3] || 0);
  357. }
  358. sub sysread {
  359. @_ == 3 || @_ == 4 or croak 'usage: $io->sysread(BUF, LEN [, OFFSET])';
  360. sysread($_[0], $_[1], $_[2], $_[3] || 0);
  361. }
  362. sub write {
  363. @_ >= 2 && @_ <= 4 or croak 'usage: $io->write(BUF [, LEN [, OFFSET]])';
  364. local($\) = "";
  365. $_[2] = length($_[1]) unless defined $_[2];
  366. print { $_[0] } substr($_[1], $_[3] || 0, $_[2]);
  367. }
  368. sub syswrite {
  369. @_ >= 2 && @_ <= 4 or croak 'usage: $io->syswrite(BUF [, LEN [, OFFSET]])';
  370. if (defined($_[2])) {
  371. syswrite($_[0], $_[1], $_[2], $_[3] || 0);
  372. } else {
  373. syswrite($_[0], $_[1]);
  374. }
  375. }
  376. sub stat {
  377. @_ == 1 or croak 'usage: $io->stat()';
  378. stat($_[0]);
  379. }
  380. ################################################
  381. ## State modification functions.
  382. ##
  383. sub autoflush {
  384. my $old = new SelectSaver qualify($_[0], caller);
  385. my $prev = $|;
  386. $| = @_ > 1 ? $_[1] : 1;
  387. $prev;
  388. }
  389. sub output_field_separator {
  390. carp "output_field_separator is not supported on a per-handle basis"
  391. if ref($_[0]);
  392. my $prev = $,;
  393. $, = $_[1] if @_ > 1;
  394. $prev;
  395. }
  396. sub output_record_separator {
  397. carp "output_record_separator is not supported on a per-handle basis"
  398. if ref($_[0]);
  399. my $prev = $\;
  400. $\ = $_[1] if @_ > 1;
  401. $prev;
  402. }
  403. sub input_record_separator {
  404. carp "input_record_separator is not supported on a per-handle basis"
  405. if ref($_[0]);
  406. my $prev = $/;
  407. $/ = $_[1] if @_ > 1;
  408. $prev;
  409. }
  410. sub input_line_number {
  411. local $.;
  412. () = tell qualify($_[0], caller) if ref($_[0]);
  413. my $prev = $.;
  414. $. = $_[1] if @_ > 1;
  415. $prev;
  416. }
  417. sub format_page_number {
  418. my $old;
  419. $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
  420. my $prev = $%;
  421. $% = $_[1] if @_ > 1;
  422. $prev;
  423. }
  424. sub format_lines_per_page {
  425. my $old;
  426. $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
  427. my $prev = $=;
  428. $= = $_[1] if @_ > 1;
  429. $prev;
  430. }
  431. sub format_lines_left {
  432. my $old;
  433. $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
  434. my $prev = $-;
  435. $- = $_[1] if @_ > 1;
  436. $prev;
  437. }
  438. sub format_name {
  439. my $old;
  440. $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
  441. my $prev = $~;
  442. $~ = qualify($_[1], caller) if @_ > 1;
  443. $prev;
  444. }
  445. sub format_top_name {
  446. my $old;
  447. $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
  448. my $prev = $^;
  449. $^ = qualify($_[1], caller) if @_ > 1;
  450. $prev;
  451. }
  452. sub format_line_break_characters {
  453. carp "format_line_break_characters is not supported on a per-handle basis"
  454. if ref($_[0]);
  455. my $prev = $:;
  456. $: = $_[1] if @_ > 1;
  457. $prev;
  458. }
  459. sub format_formfeed {
  460. carp "format_formfeed is not supported on a per-handle basis"
  461. if ref($_[0]);
  462. my $prev = $^L;
  463. $^L = $_[1] if @_ > 1;
  464. $prev;
  465. }
  466. sub formline {
  467. my $io = shift;
  468. my $picture = shift;
  469. local($^A) = $^A;
  470. local($\) = "";
  471. formline($picture, @_);
  472. print $io $^A;
  473. }
  474. sub format_write {
  475. @_ < 3 || croak 'usage: $io->write( [FORMAT_NAME] )';
  476. if (@_ == 2) {
  477. my ($io, $fmt) = @_;
  478. my $oldfmt = $io->format_name(qualify($fmt,caller));
  479. CORE::write($io);
  480. $io->format_name($oldfmt);
  481. } else {
  482. CORE::write($_[0]);
  483. }
  484. }
  485. sub fcntl {
  486. @_ == 3 || croak 'usage: $io->fcntl( OP, VALUE );';
  487. my ($io, $op) = @_;
  488. return fcntl($io, $op, $_[2]);
  489. }
  490. sub ioctl {
  491. @_ == 3 || croak 'usage: $io->ioctl( OP, VALUE );';
  492. my ($io, $op) = @_;
  493. return ioctl($io, $op, $_[2]);
  494. }
  495. # this sub is for compatibility with older releases of IO that used
  496. # a sub called constant to determine if a constant existed -- GMB
  497. #
  498. # The SEEK_* and _IO?BF constants were the only constants at that time
  499. # any new code should just check defined(&CONSTANT_NAME)
  500. sub constant {
  501. no strict 'refs';
  502. my $name = shift;
  503. (($name =~ /^(SEEK_(SET|CUR|END)|_IO[FLN]BF)$/) && defined &{$name})
  504. ? &{$name}() : undef;
  505. }
  506. # so that flush.pl can be deprecated
  507. sub printflush {
  508. my $io = shift;
  509. my $old;
  510. $old = new SelectSaver qualify($io, caller) if ref($io);
  511. local $| = 1;
  512. if(ref($io)) {
  513. print $io @_;
  514. }
  515. else {
  516. print @_;
  517. }
  518. }
  519. 1;