Upgrade to ExtUtils-MakeMaker-6.35
[p5sagit/p5-mst-13.2.git] / ext / IO_Compress_Base / lib / IO / Compress / Base.pm
CommitLineData
25f0751f 1
2package IO::Compress::Base ;
3
4require 5.004 ;
5
6use strict ;
7use warnings;
8
4e7676c7 9use IO::Compress::Base::Common 2.004 ;
25f0751f 10
11use IO::File ;
12use Scalar::Util qw(blessed readonly);
13
14#use File::Glob;
15#require Exporter ;
16use Carp ;
17use Symbol;
18use bytes;
19
4e7676c7 20our (@ISA, $VERSION);
25f0751f 21#@ISA = qw(Exporter IO::File);
22
4e7676c7 23$VERSION = '2.004';
25f0751f 24
25#Can't locate object method "SWASHNEW" via package "utf8" (perhaps you forgot to load "utf8"?) at .../ext/Compress-Zlib/Gzip/blib/lib/Compress/Zlib/Common.pm line 16.
26
25f0751f 27sub saveStatus
28{
29 my $self = shift ;
30 ${ *$self->{ErrorNo} } = shift() + 0 ;
31 ${ *$self->{Error} } = '' ;
32
33 return ${ *$self->{ErrorNo} } ;
34}
35
36
37sub saveErrorString
38{
39 my $self = shift ;
40 my $retval = shift ;
41 ${ *$self->{Error} } = shift ;
42 ${ *$self->{ErrorNo} } = shift() + 0 if @_ ;
43
44 return $retval;
45}
46
47sub croakError
48{
49 my $self = shift ;
50 $self->saveErrorString(0, $_[0]);
51 croak $_[0];
52}
53
54sub closeError
55{
56 my $self = shift ;
57 my $retval = shift ;
58
59 my $errno = *$self->{ErrorNo};
60 my $error = ${ *$self->{Error} };
61
62 $self->close();
63
64 *$self->{ErrorNo} = $errno ;
65 ${ *$self->{Error} } = $error ;
66
67 return $retval;
68}
69
70
71
72sub error
73{
74 my $self = shift ;
75 return ${ *$self->{Error} } ;
76}
77
78sub errorNo
79{
80 my $self = shift ;
81 return ${ *$self->{ErrorNo} } ;
82}
83
84
85sub writeAt
86{
87 my $self = shift ;
88 my $offset = shift;
89 my $data = shift;
90
91 if (defined *$self->{FH}) {
92 my $here = tell(*$self->{FH});
93 return $self->saveErrorString(undef, "Cannot seek to end of output filehandle: $!", $!)
94 if $here < 0 ;
95 seek(*$self->{FH}, $offset, SEEK_SET)
96 or return $self->saveErrorString(undef, "Cannot seek to end of output filehandle: $!", $!) ;
97 defined *$self->{FH}->write($data, length $data)
98 or return $self->saveErrorString(undef, $!, $!) ;
99 seek(*$self->{FH}, $here, SEEK_SET)
100 or return $self->saveErrorString(undef, "Cannot seek to end of output filehandle: $!", $!) ;
101 }
102 else {
103 substr(${ *$self->{Buffer} }, $offset, length($data)) = $data ;
104 }
105
106 return 1;
107}
108
e7d45986 109sub output
110{
111 my $self = shift ;
112 my $data = shift ;
113 my $last = shift ;
114
115 return 1
116 if length $data == 0 && ! $last ;
117
118 if ( *$self->{FilterEnvelope} ) {
119 *_ = \$data;
120 &{ *$self->{FilterEnvelope} }();
121 }
122
123 if ( defined *$self->{FH} ) {
124 defined *$self->{FH}->write( $data, length $data )
125 or return $self->saveErrorString(0, $!, $!);
126 }
127 else {
128 ${ *$self->{Buffer} } .= $data ;
129 }
130
131 return 1;
132}
133
25f0751f 134sub getOneShotParams
135{
136 return ( 'MultiStream' => [1, 1, Parse_boolean, 1],
137 );
138}
139
140sub checkParams
141{
142 my $self = shift ;
143 my $class = shift ;
144
145 my $got = shift || IO::Compress::Base::Parameters::new();
146
147 $got->parse(
148 {
149 # Generic Parameters
150 'AutoClose' => [1, 1, Parse_boolean, 0],
4e7676c7 151 #'Encode' => [1, 1, Parse_any, undef],
25f0751f 152 'Strict' => [0, 1, Parse_boolean, 1],
153 'Append' => [1, 1, Parse_boolean, 0],
154 'BinModeIn' => [1, 1, Parse_boolean, 0],
155
e7d45986 156 'FilterEnvelope' => [1, 1, Parse_any, undef],
157
25f0751f 158 $self->getExtraParams(),
159 *$self->{OneShot} ? $self->getOneShotParams()
160 : (),
161 },
162 @_) or $self->croakError("${class}: $got->{Error}") ;
163
164 return $got ;
165}
166
167sub _create
168{
169 my $obj = shift;
170 my $got = shift;
171
172 *$obj->{Closed} = 1 ;
173
174 my $class = ref $obj;
175 $obj->croakError("$class: Missing Output parameter")
176 if ! @_ && ! $got ;
177
178 my $outValue = shift ;
179 my $oneShot = 1 ;
180
181 if (! $got)
182 {
183 $oneShot = 0 ;
184 $got = $obj->checkParams($class, undef, @_)
185 or return undef ;
186 }
187
188 my $lax = ! $got->value('Strict') ;
189
190 my $outType = whatIsOutput($outValue);
191
192 $obj->ckOutputParam($class, $outValue)
193 or return undef ;
194
195 if ($outType eq 'buffer') {
196 *$obj->{Buffer} = $outValue;
197 }
198 else {
199 my $buff = "" ;
200 *$obj->{Buffer} = \$buff ;
201 }
202
203 # Merge implies Append
204 my $merge = $got->value('Merge') ;
205 my $appendOutput = $got->value('Append') || $merge ;
e7d45986 206 *$obj->{Append} = $appendOutput;
207 *$obj->{FilterEnvelope} = $got->value('FilterEnvelope') ;
25f0751f 208
209 if ($merge)
210 {
211 # Switch off Merge mode if output file/buffer is empty/doesn't exist
212 if (($outType eq 'buffer' && length $$outValue == 0 ) ||
213 ($outType ne 'buffer' && (! -e $outValue || (-w _ && -z _))) )
214 { $merge = 0 }
215 }
216
217 # If output is a file, check that it is writable
218 if ($outType eq 'filename' && -e $outValue && ! -w _)
219 { return $obj->saveErrorString(undef, "Output file '$outValue' is not writable" ) }
220
25f0751f 221
222
4e7676c7 223 if ($got->parsed('Encode')) {
224 my $want_encoding = $got->value('Encode');
225 *$obj->{Encoding} = getEncoding($obj, $class, $want_encoding);
226 }
25f0751f 227
228 $obj->ckParams($got)
229 or $obj->croakError("${class}: " . $obj->error());
230
231
232 $obj->saveStatus(STATUS_OK) ;
233
234 my $status ;
235 if (! $merge)
236 {
237 *$obj->{Compress} = $obj->mkComp($class, $got)
238 or return undef;
239
e7d45986 240 *$obj->{UnCompSize} = new U64 ;
241 *$obj->{CompSize} = new U64 ;
25f0751f 242
243 if ( $outType eq 'buffer') {
244 ${ *$obj->{Buffer} } = ''
245 unless $appendOutput ;
25f0751f 246 }
247 else {
248 if ($outType eq 'handle') {
249 *$obj->{FH} = $outValue ;
250 setBinModeOutput(*$obj->{FH}) ;
251 $outValue->flush() ;
252 *$obj->{Handle} = 1 ;
253 if ($appendOutput)
254 {
255 seek(*$obj->{FH}, 0, SEEK_END)
256 or return $obj->saveErrorString(undef, "Cannot seek to end of output filehandle: $!", $!) ;
257
258 }
259 }
260 elsif ($outType eq 'filename') {
261 my $mode = '>' ;
262 $mode = '>>'
263 if $appendOutput;
264 *$obj->{FH} = new IO::File "$mode $outValue"
265 or return $obj->saveErrorString(undef, "cannot open file '$outValue': $!", $!) ;
266 *$obj->{StdIO} = ($outValue eq '-');
267 setBinModeOutput(*$obj->{FH}) ;
268 }
25f0751f 269 }
e7d45986 270
271 *$obj->{Header} = $obj->mkHeader($got) ;
272 $obj->output( *$obj->{Header} )
273 or return undef;
25f0751f 274 }
275 else
276 {
277 *$obj->{Compress} = $obj->createMerge($outValue, $outType)
278 or return undef;
279 }
280
281 *$obj->{Closed} = 0 ;
282 *$obj->{AutoClose} = $got->value('AutoClose') ;
283 *$obj->{Output} = $outValue;
284 *$obj->{ClassName} = $class;
285 *$obj->{Got} = $got;
286 *$obj->{OneShot} = 0 ;
287
288 return $obj ;
289}
290
291sub ckOutputParam
292{
293 my $self = shift ;
294 my $from = shift ;
295 my $outType = whatIsOutput($_[0]);
296
297 $self->croakError("$from: output parameter not a filename, filehandle or scalar ref")
298 if ! $outType ;
299
300 $self->croakError("$from: output filename is undef or null string")
301 if $outType eq 'filename' && (! defined $_[0] || $_[0] eq '') ;
302
303 $self->croakError("$from: output buffer is read-only")
304 if $outType eq 'buffer' && readonly(${ $_[0] });
305
306 return 1;
307}
308
309
310sub _def
311{
312 my $obj = shift ;
313
314 my $class= (caller)[0] ;
315 my $name = (caller(1))[3] ;
316
317 $obj->croakError("$name: expected at least 1 parameters\n")
318 unless @_ >= 1 ;
319
320 my $input = shift ;
321 my $haveOut = @_ ;
322 my $output = shift ;
323
324 my $x = new Validator($class, *$obj->{Error}, $name, $input, $output)
325 or return undef ;
326
327 push @_, $output if $haveOut && $x->{Hash};
328
329 *$obj->{OneShot} = 1 ;
330
331 my $got = $obj->checkParams($name, undef, @_)
332 or return undef ;
333
334 $x->{Got} = $got ;
335
336# if ($x->{Hash})
337# {
338# while (my($k, $v) = each %$input)
339# {
340# $v = \$input->{$k}
341# unless defined $v ;
342#
343# $obj->_singleTarget($x, 1, $k, $v, @_)
344# or return undef ;
345# }
346#
347# return keys %$input ;
348# }
349
350 if ($x->{GlobMap})
351 {
352 $x->{oneInput} = 1 ;
353 foreach my $pair (@{ $x->{Pairs} })
354 {
355 my ($from, $to) = @$pair ;
356 $obj->_singleTarget($x, 1, $from, $to, @_)
357 or return undef ;
358 }
359
360 return scalar @{ $x->{Pairs} } ;
361 }
362
363 if (! $x->{oneOutput} )
364 {
365 my $inFile = ($x->{inType} eq 'filenames'
366 || $x->{inType} eq 'filename');
367
368 $x->{inType} = $inFile ? 'filename' : 'buffer';
369
370 foreach my $in ($x->{oneInput} ? $input : @$input)
371 {
372 my $out ;
373 $x->{oneInput} = 1 ;
374
375 $obj->_singleTarget($x, $inFile, $in, \$out, @_)
376 or return undef ;
377
378 push @$output, \$out ;
379 #if ($x->{outType} eq 'array')
380 # { push @$output, \$out }
381 #else
382 # { $output->{$in} = \$out }
383 }
384
385 return 1 ;
386 }
387
388 # finally the 1 to 1 and n to 1
389 return $obj->_singleTarget($x, 1, $input, $output, @_);
390
391 croak "should not be here" ;
392}
393
394sub _singleTarget
395{
396 my $obj = shift ;
397 my $x = shift ;
398 my $inputIsFilename = shift;
399 my $input = shift;
400
401 if ($x->{oneInput})
402 {
403 $obj->getFileInfo($x->{Got}, $input)
404 if isaFilename($input) and $inputIsFilename ;
405
406 my $z = $obj->_create($x->{Got}, @_)
407 or return undef ;
408
409
410 defined $z->_wr2($input, $inputIsFilename)
411 or return $z->closeError(undef) ;
412
413 return $z->close() ;
414 }
415 else
416 {
417 my $afterFirst = 0 ;
418 my $inputIsFilename = ($x->{inType} ne 'array');
419 my $keep = $x->{Got}->clone();
420
421 #for my $element ( ($x->{inType} eq 'hash') ? keys %$input : @$input)
422 for my $element ( @$input)
423 {
424 my $isFilename = isaFilename($element);
425
426 if ( $afterFirst ++ )
427 {
428 defined addInterStream($obj, $element, $isFilename)
429 or return $obj->closeError(undef) ;
430 }
431 else
432 {
433 $obj->getFileInfo($x->{Got}, $element)
434 if $isFilename;
435
436 $obj->_create($x->{Got}, @_)
437 or return undef ;
438 }
439
440 defined $obj->_wr2($element, $isFilename)
441 or return $obj->closeError(undef) ;
442
443 *$obj->{Got} = $keep->clone();
444 }
445 return $obj->close() ;
446 }
447
448}
449
450sub _wr2
451{
452 my $self = shift ;
453
454 my $source = shift ;
455 my $inputIsFilename = shift;
456
457 my $input = $source ;
458 if (! $inputIsFilename)
459 {
460 $input = \$source
461 if ! ref $source;
462 }
463
464 if ( ref $input && ref $input eq 'SCALAR' )
465 {
466 return $self->syswrite($input, @_) ;
467 }
468
469 if ( ! ref $input || isaFilehandle($input))
470 {
471 my $isFilehandle = isaFilehandle($input) ;
472
473 my $fh = $input ;
474
475 if ( ! $isFilehandle )
476 {
477 $fh = new IO::File "<$input"
478 or return $self->saveErrorString(undef, "cannot open file '$input': $!", $!) ;
479 }
480 binmode $fh if *$self->{Got}->valueOrDefault('BinModeIn') ;
481
482 my $status ;
483 my $buff ;
484 my $count = 0 ;
e7d45986 485 while (($status = read($fh, $buff, 16 * 1024)) > 0) {
25f0751f 486 $count += length $buff;
487 defined $self->syswrite($buff, @_)
488 or return undef ;
489 }
490
491 return $self->saveErrorString(undef, $!, $!)
492 if $status < 0 ;
493
494 if ( (!$isFilehandle || *$self->{AutoClose}) && $input ne '-')
495 {
496 $fh->close()
497 or return undef ;
498 }
499
500 return $count ;
501 }
502
503 croak "Should not be here";
504 return undef;
505}
506
507sub addInterStream
508{
509 my $self = shift ;
510 my $input = shift ;
511 my $inputIsFilename = shift ;
512
513 if (*$self->{Got}->value('MultiStream'))
514 {
515 $self->getFileInfo(*$self->{Got}, $input)
516 #if isaFilename($input) and $inputIsFilename ;
517 if isaFilename($input) ;
518
519 # TODO -- newStream needs to allow gzip/zip header to be modified
520 return $self->newStream();
521 }
522 elsif (*$self->{Got}->value('AutoFlush'))
523 {
524 #return $self->flush(Z_FULL_FLUSH);
525 }
526
527 return 1 ;
528}
529
258133d1 530sub getFileInfo
531{
532}
533
25f0751f 534sub TIEHANDLE
535{
536 return $_[0] if ref($_[0]);
537 die "OOPS\n" ;
538}
539
540sub UNTIE
541{
542 my $self = shift ;
543}
544
545sub DESTROY
546{
547 my $self = shift ;
548 $self->close() ;
549
550 # TODO - memory leak with 5.8.0 - this isn't called until
551 # global destruction
552 #
553 %{ *$self } = () ;
554 undef $self ;
555}
556
557
558
2b4e0969 559sub filterUncompressed
560{
561}
562
25f0751f 563sub syswrite
564{
565 my $self = shift ;
566
567 my $buffer ;
568 if (ref $_[0] ) {
569 $self->croakError( *$self->{ClassName} . "::write: not a scalar reference" )
570 unless ref $_[0] eq 'SCALAR' ;
571 $buffer = $_[0] ;
572 }
573 else {
574 $buffer = \$_[0] ;
575 }
576
577
578 if (@_ > 1) {
579 my $slen = defined $$buffer ? length($$buffer) : 0;
580 my $len = $slen;
581 my $offset = 0;
582 $len = $_[1] if $_[1] < $len;
583
584 if (@_ > 2) {
585 $offset = $_[2] || 0;
586 $self->croakError(*$self->{ClassName} . "::write: offset outside string")
587 if $offset > $slen;
588 if ($offset < 0) {
589 $offset += $slen;
590 $self->croakError( *$self->{ClassName} . "::write: offset outside string") if $offset < 0;
591 }
592 my $rem = $slen - $offset;
593 $len = $rem if $rem < $len;
594 }
595
596 $buffer = \substr($$buffer, $offset, $len) ;
597 }
598
599 return 0 if ! defined $$buffer || length $$buffer == 0 ;
600
4e7676c7 601 if (*$self->{Encoding}) {
602 $$buffer = *$self->{Encoding}->encode($$buffer);
603 }
25f0751f 604
2b4e0969 605 $self->filterUncompressed($buffer);
606
4e7676c7 607 my $buffer_length = defined $$buffer ? length($$buffer) : 0 ;
608 *$self->{UnCompSize}->add($buffer_length) ;
25f0751f 609
e7d45986 610 my $outBuffer='';
611 my $status = *$self->{Compress}->compr($buffer, $outBuffer) ;
25f0751f 612
613 return $self->saveErrorString(undef, *$self->{Compress}{Error},
614 *$self->{Compress}{ErrorNo})
615 if $status == STATUS_ERROR;
616
e7d45986 617 *$self->{CompSize}->add(length $outBuffer) ;
25f0751f 618
e7d45986 619 $self->output($outBuffer)
620 or return undef;
25f0751f 621
622 return $buffer_length;
623}
624
625sub print
626{
627 my $self = shift;
628
629 #if (ref $self) {
630 # $self = *$self{GLOB} ;
631 #}
632
633 if (defined $\) {
634 if (defined $,) {
635 defined $self->syswrite(join($,, @_) . $\);
636 } else {
637 defined $self->syswrite(join("", @_) . $\);
638 }
639 } else {
640 if (defined $,) {
641 defined $self->syswrite(join($,, @_));
642 } else {
643 defined $self->syswrite(join("", @_));
644 }
645 }
646}
647
648sub printf
649{
650 my $self = shift;
651 my $fmt = shift;
652 defined $self->syswrite(sprintf($fmt, @_));
653}
654
655
656
657sub flush
658{
659 my $self = shift ;
660
e7d45986 661 my $outBuffer='';
662 my $status = *$self->{Compress}->flush($outBuffer, @_) ;
25f0751f 663 return $self->saveErrorString(0, *$self->{Compress}{Error},
664 *$self->{Compress}{ErrorNo})
665 if $status == STATUS_ERROR;
666
667 if ( defined *$self->{FH} ) {
668 *$self->{FH}->clearerr();
e7d45986 669 }
670
671 *$self->{CompSize}->add(length $outBuffer) ;
672
673 $self->output($outBuffer)
674 or return 0;
675
676 if ( defined *$self->{FH} ) {
25f0751f 677 defined *$self->{FH}->flush()
678 or return $self->saveErrorString(0, $!, $!);
25f0751f 679 }
680
681 return 1;
682}
683
684sub newStream
685{
686 my $self = shift ;
687
688 $self->_writeTrailer()
689 or return 0 ;
690
691 my $got = $self->checkParams('newStream', *$self->{Got}, @_)
692 or return 0 ;
693
694 $self->ckParams($got)
695 or $self->croakError("newStream: $self->{Error}");
696
697 *$self->{Header} = $self->mkHeader($got) ;
e7d45986 698 $self->output(*$self->{Header} )
699 or return 0;
25f0751f 700
2b4e0969 701 my $status = $self->reset() ;
25f0751f 702 return $self->saveErrorString(0, *$self->{Compress}{Error},
703 *$self->{Compress}{ErrorNo})
704 if $status == STATUS_ERROR;
705
e7d45986 706 *$self->{UnCompSize}->reset();
707 *$self->{CompSize}->reset();
25f0751f 708
709 return 1 ;
710}
711
2b4e0969 712sub reset
713{
714 my $self = shift ;
715 return *$self->{Compress}->reset() ;
716}
717
25f0751f 718sub _writeTrailer
719{
720 my $self = shift ;
721
e7d45986 722 my $trailer = '';
723
724 my $status = *$self->{Compress}->close($trailer) ;
25f0751f 725 return $self->saveErrorString(0, *$self->{Compress}{Error}, *$self->{Compress}{ErrorNo})
726 if $status == STATUS_ERROR;
727
e7d45986 728 *$self->{CompSize}->add(length $trailer) ;
729
730 $trailer .= $self->mkTrailer();
25f0751f 731 defined $trailer
732 or return 0;
733
e7d45986 734 return $self->output($trailer);
25f0751f 735}
736
737sub _writeFinalTrailer
738{
739 my $self = shift ;
740
e7d45986 741 return $self->output($self->mkFinalTrailer());
25f0751f 742}
743
744sub close
745{
746 my $self = shift ;
747
748 return 1 if *$self->{Closed} || ! *$self->{Compress} ;
749 *$self->{Closed} = 1 ;
750
751 untie *$self
752 if $] >= 5.008 ;
753
754 $self->_writeTrailer()
755 or return 0 ;
756
757 $self->_writeFinalTrailer()
758 or return 0 ;
759
e7d45986 760 $self->output( "", 1 )
761 or return 0;
762
25f0751f 763 if (defined *$self->{FH}) {
e7d45986 764
25f0751f 765 #if (! *$self->{Handle} || *$self->{AutoClose}) {
766 if ((! *$self->{Handle} || *$self->{AutoClose}) && ! *$self->{StdIO}) {
767 $! = 0 ;
768 *$self->{FH}->close()
769 or return $self->saveErrorString(0, $!, $!);
770 }
771 delete *$self->{FH} ;
772 # This delete can set $! in older Perls, so reset the errno
773 $! = 0 ;
774 }
f6fd7794 775
25f0751f 776 return 1;
777}
778
779
780#sub total_in
781#sub total_out
782#sub msg
783#
784#sub crc
785#{
786# my $self = shift ;
787# return *$self->{Compress}->crc32() ;
788#}
789#
790#sub msg
791#{
792# my $self = shift ;
793# return *$self->{Compress}->msg() ;
794#}
795#
796#sub dict_adler
797#{
798# my $self = shift ;
799# return *$self->{Compress}->dict_adler() ;
800#}
801#
802#sub get_Level
803#{
804# my $self = shift ;
805# return *$self->{Compress}->get_Level() ;
806#}
807#
808#sub get_Strategy
809#{
810# my $self = shift ;
811# return *$self->{Compress}->get_Strategy() ;
812#}
813
814
815sub tell
816{
817 my $self = shift ;
818
e7d45986 819 return *$self->{UnCompSize}->get32bit() ;
25f0751f 820}
821
822sub eof
823{
824 my $self = shift ;
825
826 return *$self->{Closed} ;
827}
828
829
830sub seek
831{
832 my $self = shift ;
833 my $position = shift;
834 my $whence = shift ;
835
836 my $here = $self->tell() ;
837 my $target = 0 ;
838
839 #use IO::Handle qw(SEEK_SET SEEK_CUR SEEK_END);
840 use IO::Handle ;
841
842 if ($whence == IO::Handle::SEEK_SET) {
843 $target = $position ;
844 }
845 elsif ($whence == IO::Handle::SEEK_CUR || $whence == IO::Handle::SEEK_END) {
846 $target = $here + $position ;
847 }
848 else {
849 $self->croakError(*$self->{ClassName} . "::seek: unknown value, $whence, for whence parameter");
850 }
851
852 # short circuit if seeking to current offset
853 return 1 if $target == $here ;
854
855 # Outlaw any attempt to seek backwards
856 $self->croakError(*$self->{ClassName} . "::seek: cannot seek backwards")
857 if $target < $here ;
858
859 # Walk the file to the new offset
860 my $offset = $target - $here ;
861
862 my $buffer ;
863 defined $self->syswrite("\x00" x $offset)
864 or return 0;
865
866 return 1 ;
867}
868
869sub binmode
870{
871 1;
872# my $self = shift ;
873# return defined *$self->{FH}
874# ? binmode *$self->{FH}
875# : 1 ;
876}
877
878sub fileno
879{
880 my $self = shift ;
881 return defined *$self->{FH}
882 ? *$self->{FH}->fileno()
883 : undef ;
884}
885
886sub opened
887{
888 my $self = shift ;
889 return ! *$self->{Closed} ;
890}
891
892sub autoflush
893{
894 my $self = shift ;
895 return defined *$self->{FH}
896 ? *$self->{FH}->autoflush(@_)
897 : undef ;
898}
899
900sub input_line_number
901{
902 return undef ;
903}
904
905
906sub _notAvailable
907{
908 my $name = shift ;
909 return sub { croak "$name Not Available: File opened only for output" ; } ;
910}
911
912*read = _notAvailable('read');
913*READ = _notAvailable('read');
914*readline = _notAvailable('readline');
915*READLINE = _notAvailable('readline');
916*getc = _notAvailable('getc');
917*GETC = _notAvailable('getc');
918
919*FILENO = \&fileno;
920*PRINT = \&print;
921*PRINTF = \&printf;
922*WRITE = \&syswrite;
923*write = \&syswrite;
924*SEEK = \&seek;
925*TELL = \&tell;
926*EOF = \&eof;
927*CLOSE = \&close;
928*BINMODE = \&binmode;
929
930#*sysread = \&_notAvailable;
931#*syswrite = \&_write;
932
9331;
934
935__END__
936
937=head1 NAME
938
939
940IO::Compress::Base - Base Class for IO::Compress modules
941
942
943=head1 SYNOPSIS
944
945 use IO::Compress::Base ;
946
947=head1 DESCRIPTION
948
949
950This module is not intended for direct use in application code. Its sole
951purpose if to to be sub-classed by IO::Compress modules.
952
953
954
955
956=head1 SEE ALSO
957
258133d1 958L<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>, L<IO::Uncompress::AnyUncompress>
25f0751f 959
960L<Compress::Zlib::FAQ|Compress::Zlib::FAQ>
961
962L<File::GlobMapper|File::GlobMapper>, L<Archive::Zip|Archive::Zip>,
963L<Archive::Tar|Archive::Tar>,
964L<IO::Zlib|IO::Zlib>
965
966
967
968
969
25f0751f 970=head1 AUTHOR
971
cb7abd7f 972This module was written by Paul Marquess, F<pmqs@cpan.org>.
25f0751f 973
974
975
976=head1 MODIFICATION HISTORY
977
978See the Changes file.
979
980=head1 COPYRIGHT AND LICENSE
25f0751f 981
b0cda13f 982Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
25f0751f 983
984This program is free software; you can redistribute it and/or
985modify it under the same terms as Perl itself.
986
987