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