fix a test failing under -Dmad
[p5sagit/p5-mst-13.2.git] / ext / IO / Compress / Base / lib / IO / Uncompress / AnyUncompress.pm
CommitLineData
25f0751f 1package IO::Uncompress::AnyUncompress ;
2
3use strict;
4use warnings;
5use bytes;
6
7use IO::Compress::Base::Common qw(createSelfTiedObject);
8
cb7abd7f 9use IO::Uncompress::Base ;
25f0751f 10
25f0751f 11
12require Exporter ;
13
14our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyUncompressError);
15
63ad731d 16$VERSION = '2.001';
25f0751f 17$AnyUncompressError = '';
18
19@ISA = qw( Exporter IO::Uncompress::Base );
20@EXPORT_OK = qw( $AnyUncompressError anyuncompress ) ;
21%EXPORT_TAGS = %IO::Uncompress::Base::DEFLATE_CONSTANTS ;
22push @{ $EXPORT_TAGS{all} }, @EXPORT_OK ;
23Exporter::export_ok_tags('all');
24
25# TODO - allow the user to pick a set of the three formats to allow
26# or just assume want to auto-detect any of the three formats.
27
258133d1 28BEGIN
29{
30 eval ' use IO::Uncompress::Adapter::Inflate ';
31 eval ' use IO::Uncompress::Adapter::Bunzip2 ';
32 eval ' use IO::Uncompress::Adapter::LZO ';
33 eval ' use IO::Uncompress::Adapter::Lzf ';
34
35 eval ' use IO::Uncompress::Bunzip2 ';
36 eval ' use IO::Uncompress::UnLzop ';
37 eval ' use IO::Uncompress::Gunzip ';
38 eval ' use IO::Uncompress::Inflate ';
39 eval ' use IO::Uncompress::RawInflate ';
40 eval ' use IO::Uncompress::Unzip ';
41 eval ' use IO::Uncompress::UnLzf ';
42}
43
25f0751f 44sub new
45{
46 my $class = shift ;
47 my $obj = createSelfTiedObject($class, \$AnyUncompressError);
48 $obj->_create(undef, 0, @_);
49}
50
51sub anyuncompress
52{
53 my $obj = createSelfTiedObject(undef, \$AnyUncompressError);
54 return $obj->_inf(@_) ;
55}
56
57sub getExtraParams
58{
6ecef415 59 use IO::Compress::Base::Common qw(:Parse);
60 return ( 'RawInflate' => [1, 1, Parse_boolean, 0] ) ;
25f0751f 61}
62
63sub ckParams
64{
65 my $self = shift ;
66 my $got = shift ;
67
68 # any always needs both crc32 and adler32
69 $got->value('CRC32' => 1);
70 $got->value('ADLER32' => 1);
71
72 return 1;
73}
74
75sub mkUncomp
76{
77 my $self = shift ;
78 my $class = shift ;
79 my $got = shift ;
80
cb7abd7f 81 my $magic ;
82
25f0751f 83 # try zlib first
cb7abd7f 84 if (defined $IO::Uncompress::RawInflate::VERSION )
85 {
86 my ($obj, $errstr, $errno) = IO::Uncompress::Adapter::Inflate::mkUncompObject();
25f0751f 87
cb7abd7f 88 return $self->saveErrorString(undef, $errstr, $errno)
89 if ! defined $obj;
25f0751f 90
cb7abd7f 91 *$self->{Uncomp} = $obj;
92
6ecef415 93 my @possible = qw( Inflate Gunzip Unzip );
94 unshift @possible, 'RawInflate'
95 if $got->value('RawInflate');
25f0751f 96
6ecef415 97 $magic = $self->ckMagic( @possible );
98
99 if ($magic) {
cb7abd7f 100 *$self->{Info} = $self->readHeader($magic)
101 or return undef ;
25f0751f 102
cb7abd7f 103 return 1;
6ecef415 104 }
25f0751f 105 }
106
25f0751f 107 if (defined $IO::Uncompress::Bunzip2::VERSION and
108 $magic = $self->ckMagic('Bunzip2')) {
109 *$self->{Info} = $self->readHeader($magic)
110 or return undef ;
111
112 my ($obj, $errstr, $errno) = IO::Uncompress::Adapter::Bunzip2::mkUncompObject();
113
114 return $self->saveErrorString(undef, $errstr, $errno)
115 if ! defined $obj;
116
117 *$self->{Uncomp} = $obj;
118
119 return 1;
120 }
6ecef415 121
122 if (defined $IO::Uncompress::UnLzop::VERSION and
25f0751f 123 $magic = $self->ckMagic('UnLzop')) {
124
125 *$self->{Info} = $self->readHeader($magic)
126 or return undef ;
127
128 my ($obj, $errstr, $errno) = IO::Uncompress::Adapter::LZO::mkUncompObject();
129
130 return $self->saveErrorString(undef, $errstr, $errno)
131 if ! defined $obj;
132
133 *$self->{Uncomp} = $obj;
134
135 return 1;
136 }
137
258133d1 138 if (defined $IO::Uncompress::UnLzf::VERSION and
139 $magic = $self->ckMagic('UnLzf')) {
140
141 *$self->{Info} = $self->readHeader($magic)
142 or return undef ;
143
144 my ($obj, $errstr, $errno) = IO::Uncompress::Adapter::Lzf::mkUncompObject();
145
146 return $self->saveErrorString(undef, $errstr, $errno)
147 if ! defined $obj;
148
149 *$self->{Uncomp} = $obj;
150
151 return 1;
152 }
153
25f0751f 154 return 0 ;
155}
156
157
158
159sub ckMagic
160{
161 my $self = shift;
162 my @names = @_ ;
163
164 my $keep = ref $self ;
165 for my $class ( map { "IO::Uncompress::$_" } @names)
166 {
167 bless $self => $class;
168 my $magic = $self->ckMagic();
169
170 if ($magic)
171 {
172 #bless $self => $class;
173 return $magic ;
174 }
175
176 $self->pushBack(*$self->{HeaderPending}) ;
177 *$self->{HeaderPending} = '' ;
178 }
179
180 bless $self => $keep;
181 return undef;
182}
183
1841 ;
185
186__END__
187
188
189=head1 NAME
190
191
cb7abd7f 192IO::Uncompress::AnyUncompress - Uncompress gzip, zip, bzip2 or lzop file/buffer
25f0751f 193
194
195=head1 SYNOPSIS
196
197 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
198
199 my $status = anyuncompress $input => $output [,OPTS]
200 or die "anyuncompress failed: $AnyUncompressError\n";
201
202 my $z = new IO::Uncompress::AnyUncompress $input [OPTS]
203 or die "anyuncompress failed: $AnyUncompressError\n";
204
205 $status = $z->read($buffer)
206 $status = $z->read($buffer, $length)
207 $status = $z->read($buffer, $length, $offset)
208 $line = $z->getline()
209 $char = $z->getc()
210 $char = $z->ungetc()
211 $char = $z->opened()
212
e7d45986 213 $data = $z->trailingData()
214 $status = $z->nextStream()
25f0751f 215 $data = $z->getHeaderInfo()
216 $z->tell()
217 $z->seek($position, $whence)
218 $z->binmode()
219 $z->fileno()
220 $z->eof()
221 $z->close()
222
223 $AnyUncompressError ;
224
225 # IO::File mode
226
227 <$z>
228 read($z, $buffer);
229 read($z, $buffer, $length);
230 read($z, $buffer, $length, $offset);
231 tell($z)
232 seek($z, $position, $whence)
233 binmode($z)
234 fileno($z)
235 eof($z)
236 close($z)
237
238
239=head1 DESCRIPTION
240
241
25f0751f 242This module provides a Perl interface that allows the reading of
cb7abd7f 243files/buffers that have been compressed with a variety of compression
244libraries.
245
246The formats supported are:
247
248=over 5
249
250=item RFC 1950
251
258133d1 252=item RFC 1951 (optionally)
cb7abd7f 253
254=item gzip (RFC 1952)
255
256=item zip
257
258=item bzip2
259
260=item lzop
261
258133d1 262=item lzf
263
cb7abd7f 264=back
265
266The module will auto-detect which, if any, of the supported
267compression formats is being used.
268
25f0751f 269
25f0751f 270
271
25f0751f 272=head1 Functional Interface
273
274A top-level function, C<anyuncompress>, is provided to carry out
275"one-shot" uncompression between buffers and/or files. For finer
276control over the uncompression process, see the L</"OO Interface">
277section.
278
279 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
280
281 anyuncompress $input => $output [,OPTS]
282 or die "anyuncompress failed: $AnyUncompressError\n";
283
284
285
286The functional interface needs Perl5.005 or better.
287
288
289=head2 anyuncompress $input => $output [, OPTS]
290
291
292C<anyuncompress> expects at least two parameters, C<$input> and C<$output>.
293
294=head3 The C<$input> parameter
295
296The parameter, C<$input>, is used to define the source of
297the compressed data.
298
299It can take one of the following forms:
300
301=over 5
302
303=item A filename
304
305If the C<$input> parameter is a simple scalar, it is assumed to be a
306filename. This file will be opened for reading and the input data
307will be read from it.
308
309=item A filehandle
310
311If the C<$input> parameter is a filehandle, the input data will be
312read from it.
313The string '-' can be used as an alias for standard input.
314
315=item A scalar reference
316
317If C<$input> is a scalar reference, the input data will be read
318from C<$$input>.
319
320=item An array reference
321
322If C<$input> is an array reference, each element in the array must be a
323filename.
324
325The input data will be read from each file in turn.
326
327The complete array will be walked to ensure that it only
328contains valid filenames before any data is uncompressed.
329
330
331
332=item An Input FileGlob string
333
334If C<$input> is a string that is delimited by the characters "<" and ">"
335C<anyuncompress> will assume that it is an I<input fileglob string>. The
336input is the list of files that match the fileglob.
337
338If the fileglob does not match any files ...
339
340See L<File::GlobMapper|File::GlobMapper> for more details.
341
342
343=back
344
345If the C<$input> parameter is any other type, C<undef> will be returned.
346
347
348
349=head3 The C<$output> parameter
350
351The parameter C<$output> is used to control the destination of the
352uncompressed data. This parameter can take one of these forms.
353
354=over 5
355
356=item A filename
357
358If the C<$output> parameter is a simple scalar, it is assumed to be a
359filename. This file will be opened for writing and the uncompressed
360data will be written to it.
361
362=item A filehandle
363
364If the C<$output> parameter is a filehandle, the uncompressed data
365will be written to it.
366The string '-' can be used as an alias for standard output.
367
368
369=item A scalar reference
370
371If C<$output> is a scalar reference, the uncompressed data will be
372stored in C<$$output>.
373
374
375
376=item An Array Reference
377
378If C<$output> is an array reference, the uncompressed data will be
379pushed onto the array.
380
381=item An Output FileGlob
382
383If C<$output> is a string that is delimited by the characters "<" and ">"
384C<anyuncompress> will assume that it is an I<output fileglob string>. The
385output is the list of files that match the fileglob.
386
387When C<$output> is an fileglob string, C<$input> must also be a fileglob
388string. Anything else is an error.
389
390=back
391
392If the C<$output> parameter is any other type, C<undef> will be returned.
393
394
395
396=head2 Notes
397
c70c1701 398
399When C<$input> maps to multiple compressed files/buffers and C<$output> is
400a single file/buffer, after uncompression C<$output> will contain a
401concatenation of all the uncompressed data from each of the input
402files/buffers.
403
404
25f0751f 405
406
407
408=head2 Optional Parameters
409
410Unless specified below, the optional parameters for C<anyuncompress>,
411C<OPTS>, are the same as those used with the OO interface defined in the
412L</"Constructor Options"> section below.
413
414=over 5
415
e7d45986 416=item C<< AutoClose => 0|1 >>
25f0751f 417
418This option applies to any input or output data streams to
419C<anyuncompress> that are filehandles.
420
421If C<AutoClose> is specified, and the value is true, it will result in all
422input and/or output filehandles being closed once C<anyuncompress> has
423completed.
424
425This parameter defaults to 0.
426
427
e7d45986 428=item C<< BinModeOut => 0|1 >>
25f0751f 429
430When writing to a file or filehandle, set C<binmode> before writing to the
431file.
432
433Defaults to 0.
434
435
436
437
438
e7d45986 439=item C<< Append => 0|1 >>
25f0751f 440
441TODO
442
e7d45986 443=item C<< MultiStream => 0|1 >>
25f0751f 444
258133d1 445
e7d45986 446If the input file/buffer contains multiple compressed data streams, this
447option will uncompress the whole lot as a single data stream.
25f0751f 448
e7d45986 449Defaults to 0.
25f0751f 450
451
452
258133d1 453
454
455=item C<< TrailingData => $scalar >>
456
457Returns the data, if any, that is present immediately after the compressed
458data stream once uncompression is complete.
459
460This option can be used when there is useful information immediately
461following the compressed data stream, and you don't know the length of the
462compressed data stream.
463
464If the input is a buffer, C<trailingData> will return everything from the
465end of the compressed data stream to the end of the buffer.
466
467If the input is a filehandle, C<trailingData> will return the data that is
468left in the filehandle input buffer once the end of the compressed data
469stream has been reached. You can then use the filehandle to read the rest
470of the input file.
471
472Don't bother using C<trailingData> if the input is a filename.
473
474
475
476If you know the length of the compressed data stream before you start
477uncompressing, you can avoid having to use C<trailingData> by setting the
478C<InputLength> option.
479
480
481
25f0751f 482=back
483
484
485
486
487=head2 Examples
488
489To read the contents of the file C<file1.txt.Compressed> and write the
490compressed data to the file C<file1.txt>.
491
492 use strict ;
493 use warnings ;
494 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
495
496 my $input = "file1.txt.Compressed";
497 my $output = "file1.txt";
498 anyuncompress $input => $output
499 or die "anyuncompress failed: $AnyUncompressError\n";
500
501
502To read from an existing Perl filehandle, C<$input>, and write the
503uncompressed data to a buffer, C<$buffer>.
504
505 use strict ;
506 use warnings ;
507 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
508 use IO::File ;
509
510 my $input = new IO::File "<file1.txt.Compressed"
511 or die "Cannot open 'file1.txt.Compressed': $!\n" ;
512 my $buffer ;
513 anyuncompress $input => \$buffer
514 or die "anyuncompress failed: $AnyUncompressError\n";
515
516To uncompress all files in the directory "/my/home" that match "*.txt.Compressed" and store the compressed data in the same directory
517
518 use strict ;
519 use warnings ;
520 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
521
522 anyuncompress '</my/home/*.txt.Compressed>' => '</my/home/#1.txt>'
523 or die "anyuncompress failed: $AnyUncompressError\n";
524
525and if you want to compress each file one at a time, this will do the trick
526
527 use strict ;
528 use warnings ;
529 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
530
531 for my $input ( glob "/my/home/*.txt.Compressed" )
532 {
533 my $output = $input;
534 $output =~ s/.Compressed// ;
535 anyuncompress $input => $output
536 or die "Error compressing '$input': $AnyUncompressError\n";
537 }
538
539=head1 OO Interface
540
541=head2 Constructor
542
543The format of the constructor for IO::Uncompress::AnyUncompress is shown below
544
545
546 my $z = new IO::Uncompress::AnyUncompress $input [OPTS]
547 or die "IO::Uncompress::AnyUncompress failed: $AnyUncompressError\n";
548
549Returns an C<IO::Uncompress::AnyUncompress> object on success and undef on failure.
550The variable C<$AnyUncompressError> will contain an error message on failure.
551
552If you are running Perl 5.005 or better the object, C<$z>, returned from
553IO::Uncompress::AnyUncompress can be used exactly like an L<IO::File|IO::File> filehandle.
554This means that all normal input file operations can be carried out with
555C<$z>. For example, to read a line from a compressed file/buffer you can
556use either of these forms
557
558 $line = $z->getline();
559 $line = <$z>;
560
561The mandatory parameter C<$input> is used to determine the source of the
562compressed data. This parameter can take one of three forms.
563
564=over 5
565
566=item A filename
567
568If the C<$input> parameter is a scalar, it is assumed to be a filename. This
569file will be opened for reading and the compressed data will be read from it.
570
571=item A filehandle
572
573If the C<$input> parameter is a filehandle, the compressed data will be
574read from it.
575The string '-' can be used as an alias for standard input.
576
577
578=item A scalar reference
579
580If C<$input> is a scalar reference, the compressed data will be read from
581C<$$output>.
582
583=back
584
585=head2 Constructor Options
586
587
588The option names defined below are case insensitive and can be optionally
589prefixed by a '-'. So all of the following are valid
590
591 -AutoClose
592 -autoclose
593 AUTOCLOSE
594 autoclose
595
596OPTS is a combination of the following options:
597
598=over 5
599
e7d45986 600=item C<< AutoClose => 0|1 >>
25f0751f 601
602This option is only valid when the C<$input> parameter is a filehandle. If
603specified, and the value is true, it will result in the file being closed once
604either the C<close> method is called or the IO::Uncompress::AnyUncompress object is
605destroyed.
606
607This parameter defaults to 0.
608
e7d45986 609=item C<< MultiStream => 0|1 >>
25f0751f 610
611
612
613Allows multiple concatenated compressed streams to be treated as a single
614compressed stream. Decompression will stop once either the end of the
615file/buffer is reached, an error is encountered (premature eof, corrupt
616compressed data) or the end of a stream is not immediately followed by the
617start of another stream.
618
619This parameter defaults to 0.
620
621
e7d45986 622=item C<< Prime => $string >>
25f0751f 623
624This option will uncompress the contents of C<$string> before processing the
625input file/buffer.
626
627This option can be useful when the compressed data is embedded in another
628file/data structure and it is not possible to work out where the compressed
629data begins without having to read the first few bytes. If this is the
630case, the uncompression can be I<primed> with these bytes using this
631option.
632
e7d45986 633=item C<< Transparent => 0|1 >>
25f0751f 634
635If this option is set and the input file or buffer is not compressed data,
636the module will allow reading of it anyway.
637
638This option defaults to 1.
639
e7d45986 640=item C<< BlockSize => $num >>
25f0751f 641
642When reading the compressed input data, IO::Uncompress::AnyUncompress will read it in
643blocks of C<$num> bytes.
644
645This option defaults to 4096.
646
e7d45986 647=item C<< InputLength => $size >>
25f0751f 648
649When present this option will limit the number of compressed bytes read
650from the input file/buffer to C<$size>. This option can be used in the
651situation where there is useful data directly after the compressed data
652stream and you know beforehand the exact length of the compressed data
653stream.
654
655This option is mostly used when reading from a filehandle, in which case
656the file pointer will be left pointing to the first byte directly after the
657compressed data stream.
658
659
660
661This option defaults to off.
662
e7d45986 663=item C<< Append => 0|1 >>
25f0751f 664
665This option controls what the C<read> method does with uncompressed data.
666
667If set to 1, all uncompressed data will be appended to the output parameter
668of the C<read> method.
669
670If set to 0, the contents of the output parameter of the C<read> method
671will be overwritten by the uncompressed data.
672
673Defaults to 0.
674
e7d45986 675=item C<< Strict => 0|1 >>
25f0751f 676
677
678
679This option controls whether the extra checks defined below are used when
680carrying out the decompression. When Strict is on, the extra tests are
681carried out, when Strict is off they are not.
682
683The default for this option is off.
684
685
686
687
688
689
690
691
692
693
694
258133d1 695=item C<< RawInflate => 0|1 >>
696
697When auto-detecting the compressed format, try to test for raw-deflate (RFC
6981951) content using the C<IO::Uncompress::RawInflate> module.
699
700The reason this is not default behaviour is because RFC 1951 content can
701only be detected by attempting to uncompress it. This process is error
702prone and can result is false positives.
703
704Defaults to 0.
705
706
707
25f0751f 708
709
710
711=back
712
713=head2 Examples
714
715TODO
716
717=head1 Methods
718
719=head2 read
720
721Usage is
722
723 $status = $z->read($buffer)
724
725Reads a block of compressed data (the size the the compressed block is
726determined by the C<Buffer> option in the constructor), uncompresses it and
727writes any uncompressed data into C<$buffer>. If the C<Append> parameter is
728set in the constructor, the uncompressed data will be appended to the
729C<$buffer> parameter. Otherwise C<$buffer> will be overwritten.
730
731Returns the number of uncompressed bytes written to C<$buffer>, zero if eof
732or a negative number on error.
733
734=head2 read
735
736Usage is
737
738 $status = $z->read($buffer, $length)
739 $status = $z->read($buffer, $length, $offset)
740
741 $status = read($z, $buffer, $length)
742 $status = read($z, $buffer, $length, $offset)
743
744Attempt to read C<$length> bytes of uncompressed data into C<$buffer>.
745
746The main difference between this form of the C<read> method and the
747previous one, is that this one will attempt to return I<exactly> C<$length>
748bytes. The only circumstances that this function will not is if end-of-file
749or an IO error is encountered.
750
751Returns the number of uncompressed bytes written to C<$buffer>, zero if eof
752or a negative number on error.
753
754
755=head2 getline
756
757Usage is
758
759 $line = $z->getline()
760 $line = <$z>
761
762Reads a single line.
763
258133d1 764This method fully supports the use of of the variable C<$/> (or
765C<$INPUT_RECORD_SEPARATOR> or C<$RS> when C<English> is in use) to
766determine what constitutes an end of line. Paragraph mode, record mode and
767file slurp mode are all supported.
25f0751f 768
769
770=head2 getc
771
772Usage is
773
774 $char = $z->getc()
775
776Read a single character.
777
778=head2 ungetc
779
780Usage is
781
782 $char = $z->ungetc($string)
783
784
785
786
787=head2 getHeaderInfo
788
789Usage is
790
791 $hdr = $z->getHeaderInfo();
792 @hdrs = $z->getHeaderInfo();
793
794This method returns either a hash reference (in scalar context) or a list
795or hash references (in array context) that contains information about each
796of the header fields in the compressed data stream(s).
797
798
799
800
801=head2 tell
802
803Usage is
804
805 $z->tell()
806 tell $z
807
808Returns the uncompressed file offset.
809
810=head2 eof
811
812Usage is
813
814 $z->eof();
815 eof($z);
816
817
818
819Returns true if the end of the compressed input stream has been reached.
820
821
822
823=head2 seek
824
825 $z->seek($position, $whence);
826 seek($z, $position, $whence);
827
828
829
830
831Provides a sub-set of the C<seek> functionality, with the restriction
832that it is only legal to seek forward in the input file/buffer.
833It is a fatal error to attempt to seek backward.
834
835
836
837The C<$whence> parameter takes one the usual values, namely SEEK_SET,
838SEEK_CUR or SEEK_END.
839
840Returns 1 on success, 0 on failure.
841
842=head2 binmode
843
844Usage is
845
846 $z->binmode
847 binmode $z ;
848
849This is a noop provided for completeness.
850
851=head2 opened
852
853 $z->opened()
854
855Returns true if the object currently refers to a opened file/buffer.
856
857=head2 autoflush
858
859 my $prev = $z->autoflush()
860 my $prev = $z->autoflush(EXPR)
861
862If the C<$z> object is associated with a file or a filehandle, this method
863returns the current autoflush setting for the underlying filehandle. If
864C<EXPR> is present, and is non-zero, it will enable flushing after every
865write/print operation.
866
867If C<$z> is associated with a buffer, this method has no effect and always
868returns C<undef>.
869
870B<Note> that the special variable C<$|> B<cannot> be used to set or
871retrieve the autoflush setting.
872
873=head2 input_line_number
874
875 $z->input_line_number()
876 $z->input_line_number(EXPR)
877
878
879
880Returns the current uncompressed line number. If C<EXPR> is present it has
881the effect of setting the line number. Note that setting the line number
882does not change the current position within the file/buffer being read.
883
884The contents of C<$/> are used to to determine what constitutes a line
885terminator.
886
887
888
889=head2 fileno
890
891 $z->fileno()
892 fileno($z)
893
894If the C<$z> object is associated with a file or a filehandle, this method
895will return the underlying file descriptor.
896
897If the C<$z> object is is associated with a buffer, this method will
898return undef.
899
900=head2 close
901
902 $z->close() ;
903 close $z ;
904
905
906
907Closes the output file/buffer.
908
909
910
911For most versions of Perl this method will be automatically invoked if
912the IO::Uncompress::AnyUncompress object is destroyed (either explicitly or by the
913variable with the reference to the object going out of scope). The
914exceptions are Perl versions 5.005 through 5.00504 and 5.8.0. In
915these cases, the C<close> method will be called automatically, but
916not until global destruction of all live objects when the program is
917terminating.
918
919Therefore, if you want your scripts to be able to run on all versions
920of Perl, you should call C<close> explicitly and not rely on automatic
921closing.
922
923Returns true on success, otherwise 0.
924
925If the C<AutoClose> option has been enabled when the IO::Uncompress::AnyUncompress
926object was created, and the object is associated with a file, the
927underlying file will also be closed.
928
929
930
931
e7d45986 932=head2 nextStream
933
934Usage is
935
936 my $status = $z->nextStream();
937
938Skips to the next compressed data stream in the input file/buffer. If a new
258133d1 939compressed data stream is found, the eof marker will be cleared and C<$.>
940will be reset to 0.
e7d45986 941
942Returns 1 if a new stream was found, 0 if none was found, and -1 if an
943error was encountered.
944
945=head2 trailingData
946
947Usage is
948
949 my $data = $z->trailingData();
950
258133d1 951Returns the data, if any, that is present immediately after the compressed
952data stream once uncompression is complete. It only makes sense to call
953this method once the end of the compressed data stream has been
954encountered.
955
956This option can be used when there is useful information immediately
957following the compressed data stream, and you don't know the length of the
958compressed data stream.
959
960If the input is a buffer, C<trailingData> will return everything from the
961end of the compressed data stream to the end of the buffer.
962
963If the input is a filehandle, C<trailingData> will return the data that is
964left in the filehandle input buffer once the end of the compressed data
965stream has been reached. You can then use the filehandle to read the rest
966of the input file.
967
968Don't bother using C<trailingData> if the input is a filename.
969
970
971
972If you know the length of the compressed data stream before you start
973uncompressing, you can avoid having to use C<trailingData> by setting the
974C<InputLength> option in the constructor.
e7d45986 975
25f0751f 976=head1 Importing
977
978No symbolic constants are required by this IO::Uncompress::AnyUncompress at present.
979
980=over 5
981
982=item :all
983
984Imports C<anyuncompress> and C<$AnyUncompressError>.
985Same as doing this
986
987 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
988
989=back
990
991=head1 EXAMPLES
992
993
994
995
996=head1 SEE ALSO
997
258133d1 998L<Compress::Zlib>, L<IO::Compress::Gzip>, L<IO::Uncompress::Gunzip>, L<IO::Compress::Deflate>, L<IO::Uncompress::Inflate>, L<IO::Compress::RawDeflate>, L<IO::Uncompress::RawInflate>, L<IO::Compress::Bzip2>, L<IO::Uncompress::Bunzip2>, L<IO::Compress::Lzop>, L<IO::Uncompress::UnLzop>, L<IO::Compress::Lzf>, L<IO::Uncompress::UnLzf>, L<IO::Uncompress::AnyInflate>
25f0751f 999
1000L<Compress::Zlib::FAQ|Compress::Zlib::FAQ>
1001
1002L<File::GlobMapper|File::GlobMapper>, L<Archive::Zip|Archive::Zip>,
1003L<Archive::Tar|Archive::Tar>,
1004L<IO::Zlib|IO::Zlib>
1005
1006
1007
1008
1009
25f0751f 1010=head1 AUTHOR
1011
cb7abd7f 1012This module was written by Paul Marquess, F<pmqs@cpan.org>.
25f0751f 1013
1014
1015
1016=head1 MODIFICATION HISTORY
1017
1018See the Changes file.
1019
1020=head1 COPYRIGHT AND LICENSE
25f0751f 1021
1022Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
1023
1024This program is free software; you can redistribute it and/or
1025modify it under the same terms as Perl itself.
1026