up vote 9 down vote favorite
4
share [g+] share [fb]

Is there a simple way to write binary data into binary file like we used to do in C/C++? For example, how can I create a 4-byte file with serialized 4-byte integer value without using fancy math?

link|improve this question

feedback

4 Answers

up vote 16 down vote accepted

You can use Array#pack and String#unpack to convert to and from binary representations. Combine them with IO#write and IO#read, and away you go.

link|improve this answer
Yes, I think yours is the better answer for this particular question! +1 – Dave Cluderay Jun 2 '09 at 21:18
Thanks for answer, this worked for me. – Alex Kaushovik Jun 3 '09 at 16:17
feedback

I recently had a similar problem for work. I used the BinData gem and it worked a treat. You just do something like File.open('test.bin', 'wb') {|file| BinData::Int32be.new(12345).write(file) } and you don't need to remember any Array#pack codes.

link|improve this answer
Thank you! Excellent! Now I'm curious how it's implemented in the gem... – Alex Kaushovik Feb 4 '11 at 5:03
feedback

There are Marshal.dump and Marshal.load methods you can use.

Here's a link: http://en.wikipedia.org/wiki/Serialization#Ruby.

And another that saves the data to a file: http://rubylearning.com/satishtalim/object_serialization.html.

link|improve this answer
This works ok, but I still couldn't get 4-byte file using this: File.open('test.bin', 'wb') {|file| file << Marshal.dump(12345) }, I'm getting 6-byte file. The problem is that I need to create a binary file of proprietary format, this file consists of records, each of them is fixed-length C-style record with integers, bytes, etc. Thanks for really quick answer though. – Alex Kaushovik Jun 2 '09 at 21:13
No worries. Pesto's answer looks very promising. – Dave Cluderay Jun 2 '09 at 21:39
feedback

In my humble oppinion, ruby wasn't made for such tasks. If you have to write to binary files a lot, it would be easiest to write some c functions for that and call them from ruby, which is quite easy using swig. I'm doing the same thing at the moment to write a raid simulator.

link|improve this answer
That's right - Ruby was meant for other stuff probably, but we have a pretty big Rails application already and we just faced this need to operate with binary files. Thanks for your answer though - we might consider writing the native extension in C/C++. – Alex Kaushovik Jul 27 '09 at 17:06
The problem with writing those functions in C/C++ is that doing so end up could tying them to a specific Ruby implementation. See stackoverflow.com/questions/3292610/what-version-of-ruby/… – sampablokuper Nov 23 '10 at 3:43
feedback

Your Answer

 
or
required, but never shown

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