|
NAMEGzip::Faster - simple and fast gzip and gunzipSYNOPSIS# Make a random input string my $input = join '', map {int (rand (10))} 0..0x1000; use Gzip::Faster; # Compress the random string. my $gzipped = gzip ($input); # Uncompress it again. my $roundtrip = gunzip ($gzipped); # Put it into a file. gzip_to_file ($input, 'file.gz'); # Retrieve it again from the file. $roundtrip = gunzip_file ('file.gz'); VERSIONThis documents version 0.21 of Gzip::Faster corresponding to git commit 0b018b1a4df5f509a16c4262936b601382b6c3d6 <https://github.com/benkasminbullock/gzip-faster/commit/0b018b1a4df5f509a16c4262936b601382b6c3d6> made on Fri Dec 29 10:54:29 2017 +0900.DESCRIPTIONThis module compresses to and decompresses from the gzip and related formats. See "About gzip" if you aren't familiar with the gzip format.The basic functions of the module are "gzip" and "gunzip", which convert scalars to and from gzip format. There are also three convenience functions built on these two: "gzip_file" reads a file then compresses it; "gunzip_file" reads a file then uncompresses it; and "gzip_to_file" compresses a scalar and writes it to a file. Further to this, "deflate" and "inflate" work with the "deflate format", which is the same as the gzip format except it has no header information. "deflate_raw" and "inflate_raw" work with the bare-bones version of this format without checksums. If you need to control the compression beyond what is offered by "gzip" and "gunzip", create a Gzip::Faster object using "new", and compress and uncompress using the "zip" and "unzip" methods. The type of compression can be toggled with "gzip_format" and "raw". A file name can be set and retrieved from the gzip header with "file_name", and the modification time of the file can be set and retrieved with "mod_time". The level of compression can be altered with "level". Perl flags can be copied into the gzip header using "copy_perl_flags". FUNCTIONSgzipmy $zipped = gzip ($plain); This compresses $plain into the gzip format. The return value is the compressed version of $plain. gunzipmy $plain = gunzip ($zipped); This uncompresses $zipped and returns the result of the uncompression. It prints a warning and returns the undefined value if $zipped is the undefined value or an empty string. It throws a fatal error if $zipped is not in the gzip format. gzip_filemy $zipped = gzip_file ('file'); This reads the contents of file into memory and then runs "gzip" on the file's contents. The return value and the possible errors are the same as "gzip", plus this may also throw an error if "open" fails. To write a file name, use my $zipped = gzip_file ('file', file_name => 'file'); The modification time can also be written: my $zipped = gzip_file ('file', file_name => 'file', mod_time => time ()); "gzip_file" was added in version 0.04. File name writing was added in version 0.18. Modification time writing was added in version 0.19. gunzip_filemy $plain = gunzip_file ('file.gz'); This reads the contents of file.gz into memory and then runs "gunzip" on the file's contents. The return value and the possible errors are the same as "gunzip", plus this may also throw an error if "open" fails. To retrieve a file name, use my $plain = gunzip_file ('file.gz', file_name => \my $file_name); Note that you must provide a scalar reference to the "file_name" argument. This reference is filled in with the file name information from the header of file.gz. If file.gz does not contain any file name information, $file_name will contain the undefined value. The modification time can also be read from the header: my $plain = gunzip_file ('file.gz', file_name => \my $file_name, mod_time => \my $mod_time); "gunzip_file" was added in version 0.04. File name reading was added in version 0.18. Modification time reading was added in version 0.19. gzip_to_filegzip_to_file ($plain, 'file.gz'); This compresses $plain in memory using "gzip" and writes the compressed content to 'file.gz'. There is no return value. The errors are the same as "gzip", plus this may also throw an error if "open" fails. To write a file name, use gzip_to_file ($plain, 'file.gz', file_name => 'file'); "gzip_to_file" was added in version 0.08. File name writing was added in version 0.18. Modification time writing was added in version 0.19. deflatemy $deflated = deflate ($plain); This compresses $plain into the deflate format. The deflate format is similar to the "gzip" format, except that it doesn't contain a gzip header. The output of "deflate" can be inflated either with "inflate" or with "gunzip". To see an example of using "deflate" to write a PNG image file, see t/png.t <https://fastapi.metacpan.org/source/BKB/Gzip-Faster-0.21/t/png.t> in the module's tests. "deflate" was added in version 0.16. inflatemy $inflated = inflate ($deflated); This inflates the output of "deflate". For all practical purposes this is identical to "gunzip", and it's included only for completeness. In other words, you can use inflate and gunzip interchangeably. "inflate" was added in version 0.16. deflate_rawThis is similar to "deflate", except that it doesn't write check sum value in the data. The output is incompatible with "inflate" and "gunzip", and must be inflated with "inflate_raw"."deflate_raw" was added in version 0.16. inflate_rawThis inflates data output by "deflate_raw". It won't work on the output of "gzip" and "deflate". It prints a warning and returns the undefined value if its input is the undefined value or an empty string. It throws a fatal error if its input is not in the deflate format."inflate_raw" was added in version 0.16. METHODSThis section describes the object-oriented interface of Gzip::Faster.If you need to control the compression beyond what is offered by "gzip" and "gunzip", create a Gzip::Faster object using "new", and compress and uncompress using the "zip" and "unzip" methods. The type of compression can be toggled with "gzip_format" and "raw". A file name can be set and retrieved from the gzip header with "file_name", and the modification time of the file can be set and retrieved with "mod_time". The level of compression can be altered with "level". Perl flags can be copied into the gzip header using "copy_perl_flags". newmy $gf = Gzip::Faster->new (); Create a Gzip::Faster object. The return value defaults to gzip compression. This can be altered with "gzip_format" and "raw". "new" was added in version 0.16. zipmy $zipped = $gf->zip ($plain); Compress $plain. The type of compression can be set with "gzip" and "raw". "zip" was added in version 0.16. unzipmy $plain = $gf->unzip ($zipped); Uncompress $zipped. The type of uncompression can be set with "gzip" and "raw". "unzip" was added in version 0.16. copy_perl_flags$gf->copy_perl_flags (1); Copy some of the Perl flags (currently the utf8 flag) into the header of the gzipped data. Please see "Browser bugs and Gzip::Faster" for reasons why you might not want to use this feature. This feature of the module was restored in version 0.16. file_namemy $filename = $gf->file_name (); $gf->file_name ('this.gz'); my $zipped = $gf->zip ($something); Get or set the file name in the compressed output. The file name is a feature of the gzip format which is used, for example, when you use the command "gzip -d file.gz". It tells "gzip" what to call the file after it's uncompressed. The file_name method is only useful for the gzip format, since the deflate format does not have a header to store a name into. To prevent accidental re-use of a file name, when you set a file name with "file_name", then use "zip", the file name is deleted from the object, so it needs to be set each time "zip" is called. If you set a file name with "file_name" then call "unzip", that file name may be deleted. The following example demonstrates storing and then retrieving the name: use Gzip::Faster; my $gf = Gzip::Faster->new (); $gf->file_name ("blash.gz"); my $something = $gf->zip ("stuff"); my $no = $gf->file_name (); if ($no) { print "WHAT?\n"; } else { print "The file name has been deleted by the call to zip.\n"; } my $gf2 = Gzip::Faster->new (); $gf2->unzip ($something); my $file_name = $gf2->file_name (); print "Got back file name $file_name\n"; produces output The file name has been deleted by the call to zip. Got back file name blash.gz (This example is included as file-name.pl <https://fastapi.metacpan.org/source/BKB/Gzip-Faster-0.21/examples/file-name.pl> in the distribution.) The module currently has a hard-coded limit of 1024 bytes as the maximum length of file name it can read back. "file_name" was added in version 0.16. gzip_format$gf->gzip_format (1); Switch the compression between the "gzip format" and the "deflate format". A true value turns on the gzip format, and a false value turns on the deflate format. The default is gzip format. Switching on gzip format on an object automatically switches off "raw" format on the object. "gzip_format" was added in version 0.16. raw$gf->raw (1); Switch between the raw deflate and deflate formats. A true value turns on the "raw deflate format", and a false value turns off the raw deflate format. Switching this on has the side effect of automatically switching off "gzip_format". Thus the sequence $gf->gzip_format (1); $gf->raw (1); $gf->raw (0); puts $gf in the non-raw deflate format. "raw" was added in version 0.16. level$gf->level (9); Set the level of compression, from 0 (no compression) to 9 (best compression). Values outside the levels cause a warning and the level to be set to the nearest valid value, for example a value of 100 causes the level to be set to 9. The higher the level of compression, the more time it takes to compute. The default value is a compromise between speed and quality of compression. "level" was added in version 0.16. mod_time$gf->mod_time (time ()); my $mod_time = $gf->mod_time (); Set or get the file modification time in the gzip header. The modification time is an unsigned integer which represents the number of seconds since the Unix epoch. This only applies to "gzip_format" compression. "mod_time" was added in version 0.19. PERFORMANCEThis section compares the performance of Gzip::Faster with IO::Compress::Gzip / IO::Uncompress::Gunzip and Compress::Raw::Zlib. These results are produced by the file bench/benchmarks.pl in the distribution.Short textThis section compares the performance of Gzip::Faster and other modules on a short piece of English text. Gzip::Faster is about five times faster to load, seven times faster to compress, and twenty-five times faster to uncompress than IO::Compress::Gzip and IO::Uncompress::Gunzip. Round trips are about ten times faster with Gzip::Faster.Compared to Compress::Raw::Zlib, load times are about one and a half times faster, round trips are about three times faster, compression is about two and a half times faster, and decompression is about six times faster. The versions used in this test are as follows: $IO::Compress::Gzip::VERSION = 2.069 $IO::Uncompress::Gunzip::VERSION = 2.069 $Compress::Raw::Zlib::VERSION = 2.069 $Gzip::Faster::VERSION = 0.19 The size after compression is as follows: IO::Compress:Gzip size is 830 bytes. Compress::Raw::Zlib size is 830 bytes. Gzip::Faster size is 830 bytes. Here is a comparison of load times: Rate Load IOUG Load IOCG Load CRZ Load GF Load IOUG 25.3/s -- -4% -66% -77% Load IOCG 26.5/s 5% -- -65% -76% Load CRZ 75.1/s 197% 184% -- -31% Load GF 109/s 330% 311% 45% -- Here is a comparison of a round-trip: Rate IO::Compress::Gzip Compress::Raw::Zlib Gzip::Faster IO::Compress::Gzip 1309/s -- -66% -90% Compress::Raw::Zlib 3888/s 197% -- -70% Gzip::Faster 12929/s 888% 233% -- Here is a comparison of gzip (compression) only: Rate IO::Compress::Gzip Compress::Raw::Zlib::Deflate Gzip::Faster IO::Compress::Gzip 2567/s -- -60% -86% Compress::Raw::Zlib::Deflate 6491/s 153% -- -65% Gzip::Faster 18338/s 614% 183% -- Here is a comparison of gunzip (decompression) only: Rate IO::Uncompress::Gunzip Compress::Raw::Zlib::Inflate Gzip::Faster IO::Uncompress::Gunzip 2818/s -- -74% -96% Compress::Raw::Zlib::Inflate 10997/s 290% -- -84% Gzip::Faster 69565/s 2368% 533% -- Long textThis section compares the compression on a 2.2 megabyte file of Chinese text, which is the Project Gutenberg version of Journey to the West, <http://www.gutenberg.org/files/23962/23962-0.txt>, with the header and footer text removed.The versions used in this test are as above. The sizes are as follows: IO::Compress:Gzip size is 995387 bytes. Compress::Raw::Zlib size is 995387 bytes. Gzip::Faster size is 995823 bytes. Note that the size of the file compressed with the command-line gzip, with the default compression, is identical to the size with Gzip::Faster::gzip, except for the 12 bytes in the file version used to store the file name: $ gzip --keep chinese.txt $ ls -l chinese.txt.gz -rw-r--r-- 1 ben ben 995835 Oct 20 18:52 chinese.txt.gz Here is a comparison of a round-trip: Rate IO::Compress::Gzip Compress::Raw::Zlib Gzip::Faster IO::Compress::Gzip 4.43/s -- -3% -8% Compress::Raw::Zlib 4.57/s 3% -- -5% Gzip::Faster 4.81/s 9% 5% -- Here is a comparison of gzip (compression) only: Rate IO::Compress::Gzip Compress::Raw::Zlib::Deflate Gzip::Faster IO::Compress::Gzip 5.04/s -- 0% -6% Compress::Raw::Zlib::Deflate 5.04/s 0% -- -6% Gzip::Faster 5.36/s 6% 6% -- Here is a comparison of gunzip (decompression) only: Rate IO::Uncompress::Gunzip Compress::Raw::Zlib::Inflate Gzip::Faster IO::Uncompress::Gunzip 36.8/s -- -18% -20% Compress::Raw::Zlib::Inflate 45.1/s 23% -- -1% Gzip::Faster 45.7/s 24% 1% -- For longer files, Gzip::Faster is not much faster. The underlying library's speed is the main factor. BUGSThe module doesn't check whether the input of "gzip" is already gzipped, and it doesn't check whether the compression was effective. That is, it doesn't check whether the output of "gzip" is actually smaller than the input.In "copy_perl_flags", only the utf8 flag is implemented. Possible other things which could be implemented are the read-only and the taint flags. Browser bugs and Gzip::FasterSome web browsers have bugs which may affect users of this module.Using "copy_perl_flags" with utf8-encoded text trips a browser bug in the Firefox web browser where it produces a content encoding error message. Using deflate rather than gzip compression trips browser bugs in older versions of Internet Explorer, which mistakenly say they can handle the deflate format, but in fact can only handle gzip format. EXPORTSThe module exports "gzip", "gunzip", "gzip_file", "gunzip_file", and "gzip_to_file" by default. You can switch this blanket exporting off withuse Gzip::Faster (); or use Gzip::Faster 'gunzip'; whereby you only get "gunzip" and not the other functions exported. The functions "inflate", "deflate", "inflate_raw" and "deflate_raw" are exported on demand only. You can export all the functions from the module using use Gzip::Faster ':all'; DIAGNOSTICS
There are other diagnostic messages in the module to detect bugs. A list can be obtained by running the "parse-diagnostics" script which comes with Parse::Diagnostics on the files gzip-faster-perl.c and lib/Gzip/Faster.pm in the distribution. INSTALLATIONInstallation follows standard Perl methods. Detailed instructions can be found in the file README <https://fastapi.metacpan.org/source/BKB/Gzip-Faster-0.21/README> in the distribution. The following are some extra notes for people who get stuck.Gzip::Faster requires the compression library "zlib" (also called "libz") to be installed on your computer. The following message printed during "perl Makefile.PL": You don't seem to have zlib available on your system. or Warning (mostly harmless): No library found for -lz or the following message at run-time: undefined symbol: inflate indicate that Gzip::Faster was unable to link to "libz". Ubuntu LinuxOn Ubuntu Linux, you may need to install "zlib1g-dev" using the following command:sudo apt-get install zlib1g-dev WindowsUnfortunately at this time the module doesn't seem to install on ActiveState Perl. You can check the current status at <http://code.activestate.com/ppm/Gzip-Faster/>. However, the module seems to install without problems on Strawberry Perl, so if you cannot install via ActiveState, you could try that instead.SEE ALSOAbout gzipThe gzip and deflate formats are closely related formats for compressing information. They are used for compressing web pages to reduce the amount of data sent, for compressing source code files, or in applications such as MATLAB files or PNG images.These formats are formally described by RFC 1950 <https://tools.ietf.org/rfc/rfc1950.txt> (ZLIB Compressed Data Format Specification), RFC 1951 <https://tools.ietf.org/rfc/rfc1951.txt> (DEFLATE Compressed Data Format Specification), and RFC 1952 <https://tools.ietf.org/rfc/rfc1952.txt> (GZIP file format specification). The library "zlib" implements the formats. AlternativesThe following alternatives to this module may also be useful.
EXTENDED EXAMPLESThis section gives some extended examples of the use of this module.
GLOSSARYThis section describes some of the terminology of the Gzip compression system.
HISTORYThis module started as an experimental benchmark against IO::Compress::Gzip when profiling revealed that some programs were spending the majority of their time in IO::Compress::Gzip. Since I (Ben Bullock) knew that zlib was fast, I was surprised by the time the Perl code was taking. I wrote Gzip::Faster to test IO::Compress::Gzip against a simplistic gzip wrapper. I released the module to CPAN because the results were very striking. See "PERFORMANCE" above for details.Gzip::Faster's ancestor is the example program "zpipe" supplied with zlib. See <http://zlib.net/zpipe.c>. Gzip::Faster is "zpipe" reading to and and writing from Perl scalars. Version 0.16 added "deflate" and related functions and the object-oriented functions. Version 0.18 added the ability to set and get file names to the g*zip*file functions, and version 0.19 added modification times. Version 0.21 added warnings upon input of empty strings to "gzip", "gunzip", and friends. ACKNOWLEDGEMENTSzgrim reported an important bug related to zlib.Aristotle Pagaltzis contributed the benchmarking code for Compress::Raw::Zlib. The tests in t/png.t and the example "View the image data of a PNG" use material taken from Image::PNG::Write::BW by Andrea Nall (<ANALL>). AUTHORBen Bullock, <bkb@cpan.org>COPYRIGHT & LICENCEThis package and associated files are copyright (C) 2014-2017 Ben Bullock.You can use, copy, modify and redistribute this package and associated files under the Perl Artistic Licence or the GNU General Public Licence.
Visit the GSP FreeBSD Man Page Interface. |