I have generated many pdf files in memory and I want to compress them into one zip file before sending it as a email attachment. I have looked at Rubyzip and it does not allows me to create a zip file without saving it to disk (maybe I am wrong).

Is there any way I can compress those file without creating a temp file ?

link|improve this question
See the answer by @vas, it does exactly what you want! – maerics May 21 at 15:09
feedback

4 Answers

Ruby comes with a very convenient StringIO library - this can be used for using a String as output IO object or faking reading a file backed by a String.

The challenge here is that RubyZip does not support directly taking an IO object when creating a Zip::ZipOutputStream, but if you look at the implementation of the initialize, and depending on your willingness to experiment, you may be able to extend the class and allow it to take either an IO object or a file name in the constructor.

link|improve this answer
feedback

There are two RubyZip libraries that I was able to find.

  1. Chilkat's Ruby Zip Library
  2. rubyzip on Sourforge

Chilkat's library definitely allows one to create a zip file in memory instead of writing it to disk automatically as seen in these links: Zip to Memory, Zip from in memory data

The one on sourceforge, on the other hand, may provide an option of zipping a file in memory but I'm not entirely certain since I'm very new to ruby. The sourceforge rubyzip is based off java.util.zip which has led to it having a class called ZipOutputStream. I don't know how good the rubyzip implementation is, but with java.util.zip implementation the OutputStream can be set to ByteArrayOutputStream, FileOutputStream, FilterOutputStream, ObjectOutputStream, OutputStream, PipedOutputStream...

If that holds true for the rubyzip implementation then it should be a matter of using ZipOutputStream to pass in a ByteArrayOutputStream of sorts which would result in it being output to memory.

If it doesn't exist in rubyzip, then I'm sure you could always write your own implementation and submit it for inclusion in rubyzip seeing as it is opensource.

link|improve this answer
The one I was referring was the gem: rubygems.org/gems/rubyzip I don't want to use the Chilkat library since there it's not open source. – Martinos Mar 9 '10 at 1:06
I won't downrate this, but I didn't find anywhere a comment like "no, the standard Ruby ZIP classes can NOT do this". I believe you should have started with it. – dimitko Mar 10 '10 at 11:59
In fact the ZipOutputStream new method takes a file name as argument, I didn't find any way to pass an IO object. – Martinos Mar 10 '10 at 20:06
dimitko, there are no standard ruby library for zip. I have checked rubyzip but it seems that there is nothing for doing what I want. – Martinos Mar 10 '10 at 23:51
1  
@flutedemetan, like I said above, if it doesn't exist then you'll either need to use another library or make your own addition to the rubyzip open source project. – mezoid Mar 11 '10 at 1:16
feedback

I had a similar problem which I solved using the rubyzip gem and the stringio object. It turns out that rubyzip provides a method that returns a stringio object: ZipOutputStream::write_buffer.

You can create the zip file structure as you like using put_next_entry and write and once you are finished you can rewind the stringio and read the binary data using sysread.

See the following simple example

    require 'zip/zip'
    stringio = Zip::ZipOutputStream::write_buffer do |zio|
      zio.put_next_entry("test.txt")
      zio.write "Hello world!"
    end
    stringio.rewind
    binary_data = stringio.sysread

Tested on jruby 1.6.5.1 (ruby-1.9.2-p136) (2011-12-27 1bf37c2) (Java HotSpot(TM) 64-Bit Server VM 1.6.0_29) [Windows Server 2008-amd64-java])

link|improve this answer
feedback

If you're on Linux, and depending upon how much RAM you have, and how large your files are, you could always use tmpfs (shared memory). Then, the rubyzip disk-based methods will work. http://www.mjmwired.net/kernel/Documentation/filesystems/tmpfs.txt

link|improve this answer
Mounting requires superuser permissions – Abe Voelker Sep 23 '11 at 18:55
@AbeVoelker yes, this answer assumes that you already have a tmpfs, or have a friendly local sysadmin. – g33kz0r Sep 25 '11 at 19:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.