Skip to main content

A library to store robot data in a msgpack format

Project description

image

The Collector

Latest Version License image image

This is still under heavy development

The idea behind this a container that can store data and time tag the data when it is captured. The main structure is a dict which has keys for each data series stored.

This was written for a class I taught on robotics. It is meant to be simple and teach the students some things. There are probably better solutions out there, but I like this. :smirk:

Additionally, there is nothing magically about what this does:

  • It provides a generic interface to using pickle, json, or msgpack as the protocol for saving data to disk
  • It also allows you to convert between them if needed
  • Bag files can be read using the original protocol, thus data is never lost if this library goes away
  • Designed to be simple and straight forward

Setup

Install

The suggested way to install this is via the pip command as follows:

pip install the_collector
pip install the_collector[numpy]

If you install numpy, then you get access to working with numpy arrays using the functions: array_pack() and array_pack(). These really don't save you much.

Usage

BagIt

Bag stores data in memory until the buffer size limit is reached then it dumps the data to a file.

#!/usr/bin/env python3
from __future__ import print_function
from the_collector import BagIt
from the_collector import Json, MsgPack, Pickle
import json


d = {'a': 1, 'b': 2}

bag = BagIt(Json)
# bag = BagIt(Pickle)
# bag = BagIt(MsgPack)

for i in range(10):
    bag.push('test', d)
    bag.push('bob', d)
    bag.push('tom', ('a', i,))

# timestamp adds a timestamp automatically to the bag file. Thus, you won't
# over write bob.json.bag each time you run this program because the filename
# is bob-2019-04-20-15:35:25.6543.json.bag
fname = bag.write('bob', timestamp=False)

print(">> created:", fname)

data = bag.read(fname)
print(data)

Now, since there is nothing super special the_collector does with packing data, you can always read the bag files using the original libraries:

with open(fname, 'rb') as fd:
    data = json.load(fd)

for key, val in data.items():
    print("{}[{}]".format(key, len(val)))
    for v in val:
        print("{}".format(v), end=' ')
        print(' ')

Circular Buffer

from the_collector import CircularBuffer

cb = CircularBuffer(60)  # can only hold 60 items before it copies over data

# Let's push way more than 60 things
for i in range(200):
    cb.push(i)

print(cb.get_all())  # print everything
print('get cb[7]', cb[7])
print('get cb[0]', cb[0])
print('get last', cb.get_last())

Data Tuple

Use a generic namedtuple for data storage. It will automatically insert a timestamp when created. This is useful for tagging data with a timestamp and not having to remember to do it yourself.

WARNING: json and msgpack have issues with tuples, so this is best used with pickle or you have to accept json will turn it into a list and msgpack will turn it into a regular tuple. Either way, you still keep the timestamp.

from the_collector import Data

d = Data((1,2,3,))  # timestamp generate when made

print("Data[{}]: {}".format(d.timestamp, d.data))
print("Namedtuple output:", d)

Todo

  • look at enabling BytesIO for testing/working so you don't litter filing system with test bag files

Change Log

Date Version Notes
2019-07-06 0.8.2 add generic data container
2019-04-28 0.8.0 can store data using json, pickle, or msgpack
2018-07-25 0.7.0 added msgpack messages and a way to do custom messages
2018-07-14 0.6.0 changed interface to support buffered writing to disk
2018-07-09 0.5.0 moved away from json and now using msgpack
2017-11-23 0.4.0 fixes, documentation, unit tests
2017-10-04 0.0.1 init

The MIT License (MIT)

Copyright (c) 2017 Kevin J. Walchko

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

the_collector-0.8.2.tar.gz (7.3 kB view details)

Uploaded Source

Built Distribution

the_collector-0.8.2-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file the_collector-0.8.2.tar.gz.

File metadata

  • Download URL: the_collector-0.8.2.tar.gz
  • Upload date:
  • Size: 7.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for the_collector-0.8.2.tar.gz
Algorithm Hash digest
SHA256 6b1a100d3f055f293e1c040d73ef99a70c54a35bdca9e03bebb59ce99d3a823e
MD5 6f995004ccbc8182f0483ae00af7c23e
BLAKE2b-256 431fb72c6c6aa27cf8cfd1826f04fc5d31c61fb4cf9e835c9ab38298640b6d4a

See more details on using hashes here.

File details

Details for the file the_collector-0.8.2-py3-none-any.whl.

File metadata

  • Download URL: the_collector-0.8.2-py3-none-any.whl
  • Upload date:
  • Size: 9.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for the_collector-0.8.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b4d2c1f198c1c9647f58bc9babf016dea3714a480b2497dfa02036a2a9560d4a
MD5 a006964c0259a1fd5b64191f1daea4e1
BLAKE2b-256 36afd5e8ab938a3d22136083518a36b8fd6c4d3317ef7c9bb700455449dac591

See more details on using hashes here.

Supported by

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