Sha256: 20307f2415e63f4f0910ada154ab3e63701456fd29b74aed6349598641628db9
Contents?: true
Size: 1.92 KB
Versions: 1
Compression:
Stored size: 1.92 KB
Contents
# What is BinData? [![Version ](http://img.shields.io/gem/v/bindata.svg) ](https://rubygems.org/gems/bindata) [![Travis CI ](http://img.shields.io/travis/dmendel/bindata/master.svg) ](https://travis-ci.org/dmendel/bindata) [![Quality ](http://img.shields.io/codeclimate/github/dmendel/bindata.svg)](https://codeclimate.com/github/dmendel/bindata) [![Coverage ](http://img.shields.io/coveralls/dmendel/bindata.svg) ](https://coveralls.io/r/dmendel/bindata) Do you ever find yourself writing code like this? ```ruby io = File.open(...) len = io.read(2).unpack("v") name = io.read(len) width, height = io.read(8).unpack("VV") puts "Rectangle #{name} is #{width} x #{height}" ``` It’s ugly, violates DRY and feels like you’re writing Perl, not Ruby. There is a better way. Here’s how you’d write the above using BinData. ```ruby class Rectangle < BinData::Record endian :little uint16 :len string :name, :read_length => :len uint32 :width uint32 :height end io = File.open(...) r = Rectangle.read(io) puts "Rectangle #{r.name} is #{r.width} x #{r.height}" ``` BinData provides a _declarative_ way to read and write structured binary data. This means the programmer specifies *what* the format of the binary data is, and BinData works out *how* to read and write data in this format. It is an easier (and more readable) alternative to ruby's `#pack` and `#unpack` methods. BinData makes it easy to create new data types. It supports all the common primitive datatypes that are found in structured binary data formats. Support for dependent and variable length fields is built in. # Installation $ gem install bindata or if running ruby 1.8 $ gem install bindata -v '~> 1.8.0' # Documentation [Read the wiki](http://github.com/dmendel/bindata/wiki). # Contact If you have any queries / bug reports / suggestions, please contact me (Dion Mendel) via email at dion@lostrealm.com
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bindata-2.1.0 | README.md |