Skip to main content

A lock-free ring buffer for Python and Cython.

Project description

ringbuf

A lock-free, single-producer, single-consumer, ring buffer for Python and Cython.

build_status

Installation

OS X: brew install boost

Ubuntu: apt-get install libboost-all-dev

Windows: Install the latest version of Boost then set the BOOST_ROOT environment variable to point to its folder.

Then:

pip install ringbuf

Motivation

When working with realtime DSP in Python, we might be wrapping some external C/C++ library (for instance, PortAudio) which runs some user-provided callback function in realtime. The callback function shouldn't allocate/deallocate memory, shouldn't contain any critical sections (mutexes), and so forth, to prevent priority inversion. If the callback were to contain Python objects, we'd likely be allocating and deallocating, and at the very least, acquiring and releasing the GIL. So, the callback cannot interact with Python objects if we expect realtime performance. As such, there's a need for buffering data in a non-locking way between a C/C++ callback and Python.

Enter ringbuf, Cython wrappers for boost::lockfree::spsc_queue. Our Python code can read from and write to a ringbuf.RingBuffer object, and our C++ code can read from and write to that buffer's underlying spsc_queue, no GIL required.

Usage

Any Python object which supports the buffer protocol can be stored in ringbuf.RingBuffer. This includes, but is not limited to: bytes, bytearray, array.array, and numpy.ndarray.

NumPy

import numpy as np
from ringbuf import RingBuffer

buffer = RingBuffer(format='f', capacity=100)

data = np.linspace(-1, 1, num=100, dtype='f')

buffer.push(data)

popped = buffer.pop(100)

assert np.array_equal(data, popped)

bytes

from ringbuf import RingBuffer

buffer = RingBuffer(format='B', capacity=11)

buffer.push(b'hello world')

popped = buffer.pop(11)

assert bytes(popped) == b'hello world'

Interfacing with C/C++

mymodule.pxd:

# distutils: language = c++
cdef void callback(void* q)

mymodule.pyx:

# distutils: language = c++
from array import array

from ringbuf.boost cimport spsc_queue, void_ptr_to_spsc_queue_char_ptr
from ringbuf.ringbuf cimport RingBuffer

from some_c_library cimport some_c_function


cdef void callback(void* q):
    cdef:
        # Cast the void* back to an spsc_queue.
        # The underlying queue always holds chars.
        spsc_queue[char] *queue = void_ptr_to_spsc_queue_char_ptr(q)
        double[5] to_push = [1.0, 2.0, 3.0, 4.0, 5.0]

    # Since the queue holds chars, you'll have to cast and adjust size accordingly.
    queue.push(<char*>to_push, sizeof(double) * 5)


def do_stuff():
    cdef:
        RingBuffer buffer = RingBuffer(format='d', capacity=100)
        void* queue = buffer.queue_void_ptr()

    # Pass our callback and a void pointer to the buffer's queue to some third party library.
    # Presumably, the C library schedules the callback and passes it the queue's void pointer.
    some_c_function(callback, queue)

    sleep(1)

    assert array.array('d', buffer.pop(5)) == array.array('d', range(1, 6))

Handling overflow & underflow

When RingBuffer.push() overflows, it returns the data that couldn't be pushed (or None, if all was pushed):

from ringbuf import RingBuffer

buffer = RingBuffer(format='B', capacity=10)
overflowed = buffer.push(b'spam eggs ham')
assert overflowed == b'ham'

When RingBuffer.pop() underflows, it returns whatever data could be popped:

from ringbuf import RingBuffer

buffer = RingBuffer(format='B', capacity=10)
overflowed = buffer.push(b'spam eggs ham')
assert overflowed == b'ham'

For additional usage see the tests.

Supported platforms

Travis CI tests with the following configurations:

  • Ubuntu 18.04 Bionic Beaver:
    • CPython3.6
    • CPython3.7
    • CPython3.8*
    • PyPy7.3.0 (3.6.9)
  • OS X:
    • CPython3.6
    • CPython3.7
    • CPython3.8
    • PyPy7.3.0 (3.6.9)

Any platform with a C++11 compiler will probably work. Windows support has been added, but it is considered experimental. A pull request to test ringbuf on Windows for Travis CI would be most welcome.

Contributing

Pull requests are welcome, please file any issues you encounter.

Changelog

v2.5.0 2020-04-17

  • Added experimental support for Windows.

v2.4.0 2020-03-23

  • Added RingBuffer.reset() method to clear the buffer.

v2.3.0 2020-03-22

  • Added concatenate function for joining multiple arbitrary Python objects that support the buffer protocol.

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

ringbuf-2.5.0.tar.gz (151.0 kB view details)

Uploaded Source

Built Distribution

ringbuf-2.5.0-py3.8-linux-x86_64.egg (441.1 kB view details)

Uploaded Source

File details

Details for the file ringbuf-2.5.0.tar.gz.

File metadata

  • Download URL: ringbuf-2.5.0.tar.gz
  • Upload date:
  • Size: 151.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.1

File hashes

Hashes for ringbuf-2.5.0.tar.gz
Algorithm Hash digest
SHA256 103773faa82b82b1b8a16662a6c7a06059505c034188cf1e14b98fb33353e294
MD5 e7e434e6f0d176d92152dac85a378d1b
BLAKE2b-256 d088e76f7c3f4469f6017c9a04dda49e3f70a7a765b9e5c7e34cd3dede1e91c8

See more details on using hashes here.

File details

Details for the file ringbuf-2.5.0-py3.8-linux-x86_64.egg.

File metadata

  • Download URL: ringbuf-2.5.0-py3.8-linux-x86_64.egg
  • Upload date:
  • Size: 441.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.1

File hashes

Hashes for ringbuf-2.5.0-py3.8-linux-x86_64.egg
Algorithm Hash digest
SHA256 0175189ec4847168308ce3546a76cc0b26e9062e9c1196712ffaf2cba10ed897
MD5 6d3cf54111cb807ee9fffb26337d9bca
BLAKE2b-256 be00e6449f15b8f73084cef7f6d31e1aa58d7e9884e62a165f74f0687e765e0b

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