in reply to Creating Zip Archives on the fly
See thread keeping connection alive while spending time building a zip file where a similar problem with generating large zip files on the fly was discussed.
Having the zip files already available is the best way to go with this. If that isn't an option, and you can't use one of the other suggestions in that thread, you will have to stream the zip file as it is created to the client.
That means two things:
I din't think Archive::Zip supports streaming output. Both the command line zip and IO::Compress::Zip can stream a zip file as it creates it.
Below is a proof of concept code I posted in the other thread that streamed a zip file and chunked it at the same time using IO::Compress::Zip.
use IO::Compress::Zip qw(:all) ; select STDOUT; $| = 1; my $OUT = \*STDOUT; print <<EOM; Status: 200 OK Content-Type: application/zip Transfer-Encoding: chunked EOM my @files = qw(/tmp/file1 /tmp/file2) ; zip [@files] => '-', FilterEnvelope => sub { # Chunk the output my $length = length($_); $_ = sprintf("%x", $length) . "\r\n" . $_ . "\r\n"; $_ .= "\r\n" unless $length; 1; } ;
One thing missing from your original requirements is the ability to rename the zip file members as you create the zip file. That is a feature that is under development now for IO::Compress::Zip (I'm the author of the module). I can get you an early rlease if you want.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Creating Zip Archives on the fly
by fulmar2 (Initiate) on Oct 05, 2011 at 17:04 UTC | |
by pmqs (Friar) on Oct 29, 2011 at 12:23 UTC | |
|
Re^2: Creating Zip Archives on the fly
by Anonymous Monk on Sep 12, 2013 at 17:12 UTC |