Skip to main content

Domain Specific Language(DSL) for parsing and mapping binary data to python objects

Project description

# Binmapper

Python package for mapping objects to binary data.
It works with Python 2.7+

## Installation

Binmapper is available from https://pypi.python.org/pypi/binmapper and can be installed using pip

```sh
pip install binmapper
```

## Example usage

```python

import binmapper
import textwrap

definition = u"""\
bintype BinX:
field: uint8
bintype Bin:
fieldX: BinX
"""
definition = textwrap.dedent(definition)
binmap = binmapper.compile(definition)
bin = binmap.Bin()
input = io.BytesIO("\x01")
bin.parse(input)
print(bin.fieldX.field)
```

## Data types

Type | Byte Size | Description
--------|-----------|--------------
uint8 | 1 | Unsigned byte
uint16 | 2 | Unsigned short
uint32 | 4 | Unsigned short
sint8 | 1 | Signed byte
sint16 | 2 | Signed short
sint32 | 4 | Signed word
float | 4 | Floating point with single-precision
string | n | String
array | n | Array

## Common class template

```python

bintype CLASS_NAME:
FIELD_NAME : FIELD_TYPE &FIELD_ATTRIBUTE
...
&CLASS_ATTRIBUTE = CLASS_ATTRIBUTE_VALUE
...
&LET_FIELD_NAME = EXPRESSION
...
```

## Fields

## Byteorder

Value | Description
------------|------------
littlendian | Increasing numeric significance with increasing memory addresses
bigendian | Decreasing numeric significance with increasing memory addresses

Byteorder can be specified 3-way

- Field attribute

`field: uint8 &byteorder=littlendian`

Apply only to field

- BinType attribute

:::python
field: uint8
&byteorder=littlendian

Apply to all fields in BinType, except having attribute byteorder

- Parse argument

:::python
bin.parse(input, byteorder='littlendian')

Apply to all parsed data, except having attribute byteorder or BinType byteorder

Byteorder apply order:

`field byteorder > class byteorder > parse byteorder`

## Class Usage

## Array Usage

## String Usage

## Let Field Usage

## Change elements in runtime

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

binmapper-0.1a1.zip (49.1 kB view details)

Uploaded Source

File details

Details for the file binmapper-0.1a1.zip.

File metadata

  • Download URL: binmapper-0.1a1.zip
  • Upload date:
  • Size: 49.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for binmapper-0.1a1.zip
Algorithm Hash digest
SHA256 4be875f9c84cc2341004f3217440917fe4eba59379d1f0f33dd5c97d6b83b4a1
MD5 528033ed529d3a6171712edb9b6270c3
BLAKE2b-256 d18727e1bbb2a7351a5b292ff81d9014788ecc59b8a31db15b87717a67f4d0dd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page