vote up 3 vote down star

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?

flag

3 Answers

vote up 5 vote down check

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|flag
Yes, I think yours is the better answer for this particular question! +1 – Dave Cluderay Jun 2 at 21:18
Thanks for answer, this worked for me. – Alex Kaushovik Jun 3 at 16:17
vote up 2 vote down

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|flag
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 at 17:06
vote up 1 vote down

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|flag
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 at 21:13
No worries. Pesto's answer looks very promising. – Dave Cluderay Jun 2 at 21:39

Your Answer

Get an OpenID
or

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