vote up 4 vote down star
1

What is the cleanest way to parse binary data in clojure? I need to be able to read/write equally cleanly to a file or a socket.

something like:

  (read-data source-of-data) 
  => { :index 42 , :block-size 4 , data-size: 31415, :data (1 2 3 4 ...)}

and the reverse for putting data back. It would be really great to somehow define the structure once and have the read and write functions use the same definition.

flag

62% accept rate

1 Answer

vote up 3 vote down

Since Clojure can use native Java functions, why not use those? A quick Googling along those lines gives: http://gnuvince.wordpress.com/2009/01/29/reading-binary-data-in-clojure/

link|flag
I need to both read and write these fomats though this is a good start. I also need bit level accuracy. – Arthur Ulfeldt Jun 11 at 23:59

Your Answer

Get an OpenID
or

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