/usr/share/perl5/CGI/Compress/Gzip.pm is in libcgi-compress-gzip-perl 1.03-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 | package CGI::Compress::Gzip;
use 5.006;
use warnings;
use strict;
use English qw(-no_match_vars);
use CGI::Compress::Gzip::FileHandle;
use base 'CGI';
our $VERSION = '1.03';
# Package globals - testing and debugging flags
# These should only be used for extreme circumstances (e.g. testing)
our $global_use_compression = 1; # user-settable
our $global_can_compress = undef; # 1 = yes, 0 = no, undef = don't know yet
# If true, add an outgoing HTTP header explaining why we are not
# compressing if gzip turns itself off.
our $global_give_reason = 0;
#=encoding utf8
=head1 NAME
CGI::Compress::Gzip - CGI with automatically compressed output
=head1 LICENSE
Copyright 2006-2007 Clotho Advanced Media, Inc., <cpan@clotho.com>
Copyright 2007-2008 Chris Dolan <cdolan@cpan.org>
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 SYNOPSIS
use CGI::Compress::Gzip;
my $cgi = new CGI::Compress::Gzip;
print $cgi->header();
print "<html> ...";
See the CAVEATS section below!
=head1 DESCRIPTION
CGI::Compress::Gzip extends the CGI module to auto-detect whether the
client browser wants compressed output and, if so and if the script
chooses HTML output, apply gzip compression on any content header for
STDOUT. This module is intended to be a drop-in replacement for
CGI.pm.
Apache mod_perl users may wish to consider the Apache::Compress or
Apache::GzipChain modules, which allow more transparent output
compression than this module can provide. However, as of this writing
those modules are more aggressive about compressing, regardless of
Content-Type.
=head2 Headers
At the time that a header is requested, CGI::Compress::Gzip checks the
HTTP_ACCEPT_ENCODING environment variable (passed by Apache). If this
variable includes the flag "gzip" and the outgoing mime-type is
"text/*", then gzipped output is preferred. [the default mime-type
selection of text/* can be changed by subclassing -- see below] The
header is altered to add the "Content-Encoding: gzip" flag which
indicates that compression is turned on.
Naturally, it is crucial that the CGI application output nothing
before the header is printed. If this is violated, things will go
badly.
=head2 Compression
When the header is created, this module sets up a new filehandle to
accept data. STDOUT is redirected through that filehandle. The new
filehandle passes data verbatim until it detects the end of the CGI
header. At that time, it switches over to Gzip output for the
remainder of the CGI run.
Note that the Zlib library on which this code is ultimately based
requires a fileno for the output filehandle. Where the output
filehandle is faked (i.e. in mod_perl), we instead use in-memory
compression. This is more wasteful of RAM, but it is the only
solution I've found (and it is one shared by the Apache::* compression
modules).
Debugging note: if you set B<$CGI::Compress::Gzip::global_give_reason>
to a true value, then this module will add an HTTP header entry called
B<X-non-gzip-reason> with an explanation of why it chose not to gzip
the output stream.
=head2 Buffering
The Zlib library introduces latencies. In some cases, this module may
delay output until the CGI object is garbage collected, presumably at
the end of the program. This buffering can be detrimental to
long-lived programs which are supposed to have incremental output,
causing browser timeouts. To compensate, compression is automatically
disabled when autoflush (i.e. the $| variable) is set to true. Future
versions may try to enable autoflushing on the Zlib filehandles, if
possible [Help wanted].
=head1 CLASS METHODS
=over 4
=item $pkg->new([CGI ARGS])
Create a new object. This resets the environment before creating a
CGI.pm object. This should not be called more than once per script
run! All arguments are passed to the parent class.
=cut
sub new
{
my ($pkg, @args) = @_;
select STDOUT;
my $self = $pkg->SUPER::new(@args);
$self->{'.CGIgz'} = {
ext_fh => undef,
zlib_fh => undef,
header_done => 0,
use_compression => undef,
};
return $self;
}
=item $pkg->useCompression($boolean)
=item $self->useCompression($boolean)
This can be used as a class method or an instance method. The former
is included for backward compatibility, and is NOT recommended. As a
class method, this changes the default value. As an instance method
it affects only the specified instance.
Turn compression on/off for the target. If turned on, compression
will be used only if the prerequisite compression libraries are
available and if the client browser requests compression.
Defaults to on.
=cut
sub useCompression
{
my ($pkg_or_self, $value) = @_;
if (ref $pkg_or_self)
{
$pkg_or_self->{'.CGIgz'}->{use_compression} = $value ? 1 : 0;
}
else
{
$global_use_compression = $value ? 1 : 0;
}
return $pkg_or_self;
}
=back
=head1 INSTANCE METHODS
=over 4
=item $self->useFileHandle($filehandle)
Manually set the output filehandle. Because of limitations of Zlib,
this MUST be a real filehandle (with valid results from fileno()) and
not a pseudo filehandle like IO::String.
If this is not set, STDOUT is used.
=cut
sub useFileHandle
{
my ($self, $fh) = @_;
$self->{'.CGIgz'}->{ext_fh} = $fh;
return $self;
}
=item $self->isCompressibleType($content_type)
Given a MIME type (with possible charset attached), return a boolean
indicating if this media type is a good candidate for compression.
This implementation is simply:
return $type =~ /^text\//;
Subclasses may wish to override this method to apply different
criteria.
=cut
sub isCompressibleType
{
my ($self, $type) = @_;
return ($type || q{}) =~ m/ \A text\/ /xms;
}
=item $self->header([HEADER ARGS])
Overrides the C<header()> method in L<CGI>.
Return a CGI header with the compression flags set properly. Returns
an empty string is a header has already been printed.
This method engages the Gzip output by fiddling with the default
output filehandle. All subsequent output via usual Perl print() will
be automatically gzipped except for this header (which must go out as
plain text).
Any arguments will be passed on to CGI::header. This method should
NOT be called if you don't want your header or STDOUT to be fiddled
with.
=cut
sub header
{
my ($self, @args) = @_;
my ($compress, $reason) = $self->_can_compress(\@args);
if (!$compress && $global_give_reason && $reason)
{
push @args, '-X_non_gzip_reason', $reason;
}
my $header = $self->SUPER::header(@args);
if (!defined $header) # workaround for problem found on 5.6.0 on Linux
{
$header = q{};
}
if (!$self->{'.CGIgz'}->{header_done}++ && $compress)
{
$self->_start_compression($header);
}
return $header;
}
# Enable the compression filehandle if:
# - The mime-type is appropriate (text/* is the default)
# - The programmer wants compression, indicated by the useCompression()
# method
# - Client wants compression, indicated by the Accepted-Encoding HTTP field
# - The IO::Zlib compression library is available
# Returns: (boolean, reason) -- reason is a string if boolean is false
# Side effects:
# - may alter $header to add gzip flag if boolean is true
# - may set $global_can_compress if not yet set
sub _can_compress ## no critic(Subroutines::ProhibitExcessComplexity)
{
my ($self, $header) = @_;
# $header is an array ref
my $settings = $self->{'.CGIgz'};
# Check programmer preference
if (defined $settings->{use_compression} ?
!$settings->{use_compression} : !$global_use_compression)
{
return (0, 'programmer request');
}
# save it in case we change it
$settings->{flush} = $OUTPUT_AUTOFLUSH;
# Check buffering (disable if autoflushing)
if ($settings->{flush})
{
return (0, 'programmer wants unbuffered output');
}
# Check that browser supports gzip
my $acc = $ENV{HTTP_ACCEPT_ENCODING};
if (!$acc || $acc !~ m/ \bgzip\b /ixms)
{
return (0, 'user agent does not want gzip');
}
# Parse the header data and look for indicators of compressibility:
# * appropriate content type
# * already set for compression
# * HTTP status not 200
my @newheader;
my $content_type;
# This search reproduces the header parsing done by CGI.pm
if (@{$header} && $header->[0] =~ m/ \A [a-z] /xms) ## no critic (ProhibitEnumeratedClasses)
{
# Using unkeyed version of arguments - convert to the keyed version
# arg order comes from the header() function in CGI.pm
my @flags = qw(
Content_Type Status Cookie Target Expires
NPH Charset Attachment P3P
);
for my $i (0 .. $#{$header})
{
if ($i < @flags)
{
push @newheader, q{-} . $flags[$i], $header->[$i];
}
else
{
# Extra args
push @newheader, $header->[$i];
}
}
}
else
{
@newheader = @{$header};
}
# gets set if we find an existing encoding directive
my $encoding_index;
for (my $i = 0; $i < @newheader; $i++)
{
next if (!defined $newheader[$i]);
if ($newheader[$i] =~ m/ \A -?(?:Content[-_]Type|Type)(.*) \z /ixms)
{
$content_type = $1;
if ($content_type !~ s/ \A :\s* //xms)
{
$content_type = $newheader[++$i];
}
}
elsif ($newheader[$i] =~ m/ \A -?Status(.*) \z /ixms)
{
my $content = $1;
if ($content !~ s/ \A :\s* //xms)
{
$content = $newheader[++$i];
}
my ($status) = $content =~ m/ \A (\d+) /xms;
if (!defined $status || $status ne '200')
{
return (0, 'HTTP status not 200');
}
}
elsif ($newheader[$i] =~ m/ \A -?Content[-_]Encoding(.*) \z /ixms)
{
my $content = $1;
if ($content !~ s/ \A :\s* //xms)
{
$content = $newheader[++$i];
}
$encoding_index = $i;
if ($content =~ m/ \bgzip\b /ixms)
{
# Already gzip compressed
return (0, 'someone already requested gzip');
}
}
}
if (defined $encoding_index)
{
# prepend gzip encoding to the existing encoding list
$newheader[$encoding_index] =~ s/ \A ((?:-?Content[-_]Encoding:\s*)?) /$1gzip, /ioxms;
}
else
{
push @newheader, '-Content_Encoding', 'gzip';
}
$content_type ||= 'text/html';
if (!$self->isCompressibleType($content_type))
{
# Not compressible media
return (0, 'incompatible content-type ' . $content_type);
}
# Check that IO::Zlib is available
if (!defined $global_can_compress)
{
local $SIG{__WARN__} = 'DEFAULT';
local $SIG{__DIE__} = 'DEFAULT';
eval { require IO::Zlib; }; ## no critic (RequireCheckingReturnValueOfEval)
$global_can_compress = $EVAL_ERROR ? 0 : 1;
}
if (!$global_can_compress)
{
return (0, 'IO::Zlib not found');
}
# Commit any changes made above
@{$header} = @newheader;
return (1, undef);
}
sub _start_compression
{
my ($self, $header) = @_;
my $settings = $self->{'.CGIgz'};
$settings->{ext_fh} ||= \*STDOUT;
binmode $settings->{ext_fh};
my $filehandle = CGI::Compress::Gzip::FileHandle->new($settings->{ext_fh}, 'wb');
if (!$filehandle)
{
warn 'Failed to open Zlib output, reverting to uncompressed output';
return;
}
# All output from here on goes to our new filehandle
## Autoflush makes no sense since compression is disabled if autoflush is on
#if ($filehandle->can('autoflush'))
#{
# $filehandle->autoflush();
#}
select $filehandle;
$settings->{zlib_fh} = $filehandle; # needed for destructor
my $tied = tied ${$filehandle};
$tied->{pending_header} = $header;
return $self;
}
=item $self->DESTROY()
Override the L<CGI> destructor so we can close the Gzip output stream, if
there is one open.
=cut
sub DESTROY
{
my ($self) = @_;
if ($self->{'.CGIgz'}->{zlib_fh})
{
$self->{'.CGIgz'}->{zlib_fh}->close()
or die 'Failed to close the Zlib filehandle';
}
if ($self->{'.CGIgz'}->{ext_fh})
{
select $self->{'.CGIgz'}->{ext_fh};
}
return $self->SUPER::DESTROY();
}
1;
__END__
=back
=head1 CAVEATS
=head2 Apache::Registry
Under Apache::Registry, global variables may not go out of scope in
time. This may causes timing bugs, since this module makes use of
the DESTROY() method. To avoid this issue, make sure your CGI
object is stored in a scoped variable.
# BROKEN CODE
use CGI::Compress::Gzip;
$q = CGI::Compress::Gzip->new;
print $q->header;
print "Hello, world\n";
# WORKAROUND CODE
use CGI::Compress::Gzip;
do {
my $q = CGI::Compress::Gzip->new;
print $q->header;
print "Hello, world\n";
}
=head2 Filehandles
This module works by changing the default filehandle. It does not
change STDOUT at all. As a consequence, your programs should call
C<print> without a filehandle argument.
# BROKEN CODE
use CGI::Compress::Gzip;
my $q = CGI::Compress::Gzip->new;
print STDOUT $q->header;
print STDOUT "Hello, world\n";
# WORKAROUND CODE
use CGI::Compress::Gzip;
my $q = CGI::Compress::Gzip->new;
print $q->header;
print "Hello, world\n";
Future versions may steal away STDOUT and replace it with the
compression filehandle, but that seemed too risky for this version.
=head2 Header Munging
When sending compressed output, the HTTP headers must remain
uncompressed. So, this module goes to great effort to keep the
headers and body separate. That has led to CGI::header() emulation
code that is a little brittle. Most potential problems arise because
STDOUT gets tweaked as soon as header() is called.
If you use the CGI.pm header() API as specified in CGI.pm, then all
should go well. But if you do anything unusual, this module may
break. For example:
# BROKEN CODE
use CGI::Compress::Gzip;
my $q = CGI::Compress::Gzip->new;
print "Set-Cookie: foo=bar\n" . $q->header;
print "Hello, world\n";
# WORKAROUND 1 (preferred)
use CGI::Compress::Gzip;
my $q = CGI::Compress::Gzip->new;
print $q->header("-Set_Cookie" => "foo=bar");
print "Hello, world\n";
# WORKAROUND 2
use CGI::Compress::Gzip;
my $q = CGI::Compress::Gzip->new;
print "Set-Cookie: foo=bar\n";
print $q->header;
print "Hello, world\n";
Future versions could try to parse the header to look for its end rather
than insisting that the printed version match the version returned by
header(). Patches would be very welcome.
=head1 SEE ALSO
CGI::Compress::Gzip depends on CGI and IO::Zlib. Similar
functionality is available from mod_gzip, Apache::Compress or
Apache::GzipChain, however all of those require changes to the
webserver configuration.
=head1 AUTHOR
Chris Dolan
This module was originally developed by me at Clotho Advanced Media
Inc. Now I maintain it in my spare time.
=head1 ACKNOWLEDGMENTS
Clotho greatly appreciates the assistance and feedback the community
has extended to help refine this module.
Thanks to Rhesa Rozendaal who noticed the -Type omission in v0.17.
Thanks to Laga Mahesa who did some Windows testing and
experimentation.
Thanks to Slaven Rezic who 1) found several header handling bugs, 2)
discovered the Apache::Registry and Filehandle caveats, 3) provided a
patch incorporated into v0.17, and 4) persisted with smoke tests that
reproduced the envvar problem fixed in v0.23.
Thanks to Jan Willamowius who found a header handling bug.
Thanks to Andreas J. Koenig and brian d foy for module naming advice.
=head1 HELP WANTED
If you like this module, please help by testing on Windows or in a
C<FastCGI> environment, since I have neither available for easy testing.
Personally, I don't use this module much anymore as all of my work is on
Catalyst and mod_perl now.
=cut
|