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