https://github.com/tiagocoutinho/sockio
Concurrency agnostic socket with semantics
https://github.com/tiagocoutinho/sockio
asyncio concurrency-library protocols python scpi socket
Last synced: about 1 month ago
JSON representation
Concurrency agnostic socket with semantics
- Host: GitHub
- URL: https://github.com/tiagocoutinho/sockio
- Owner: tiagocoutinho
- License: other
- Created: 2019-10-16T18:05:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-15T12:58:20.000Z (almost 2 years ago)
- Last Synced: 2025-02-27T07:47:15.236Z (about 2 months ago)
- Topics: asyncio, concurrency-library, protocols, python, scpi, socket
- Language: Python
- Homepage: https://tiagocoutinho.github.io/sockio/
- Size: 168 KB
- Stars: 11
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sockio
![Pypi version][pypi]
A python concurrency agnostic socket library.

Helpful when handling with instrumentation which work over TCP and implement
simple REQ-REP communication protocols (example:
[SCPI](https://en.m.wikipedia.org/wiki/Standard_Commands_for_Programmable_Instruments)).So far implemented REQ-REP and streaming semantics with auto-reconnection facilites.
Base implementation written in asyncio with support for different concurrency models:
* asyncio
* classic blocking API
* future based API
* python 2 compatible blocking API (for those pour souls stuck with python 2)## Installation
From within your favorite python environment:
```console
pip install sockio
```## Usage
*asyncio*
```python
import asyncio
from sockio.aio import TCPasync def main():
sock = TCP('acme.example.com', 5000)
# Assuming a SCPI complient on the other end we can ask for:
reply = await sock.write_readline(b'*IDN?\n')
print(reply)asyncio.run(main())
```*classic*
```python
from sockio.sio import TCPsock = TCP('acme.example.com', 5000)
reply = sock.write_readline(b'*IDN?\n')
print(reply)
```*concurrent.futures*
```python
from sockio.sio import TCPsock = TCP('acme.example.com', 5000, resolve_futures=False)
reply = sock.write_readline(b'*IDN?\n').result()
print(reply)
```*python 2 compatibility*
```python
from sockio.py2 import TCPsock = TCP('acme.example.com', 5000)
reply = sock.write_readline(b'*IDN?\n').result()
print(reply)
```## Features
The main goal of a sockio TCP object is to facilitate communication
with instruments which listen on a TCP socket.The most frequent cases include instruments which expect a REQ/REP
semantics with ASCII protocols like SCPI. In these cases most commands
translate in small packets being exchanged between the host and the
instrument. Care has been taken in this library to make sure we reduce
latency as much as possible. This translates into the following defaults
when creating a TCP object:* TCP no delay is active. Can be disabled with `TCP(..., no_delay=False)`.
This prevents the kernel from applying
[Nagle's algorithm](https://en.wikipedia.org/wiki/Nagle%27s_algorithm)
* TCP ToS is set to LOWDELAY. This effectively prioritizes our packets
if favor of other concurrent communications. Can be disabled with
`TCP(tos=IPTOS_NORMAL)`### Price to pay
Before going in detail about the features, note that this abstraction comes
with a price. Intentionally, when comparing with low level socket API, the
following features are no longer available:1. The capability of controlling the two ends of the socket independently
(ex: close the write end)
2. While the low level `socket.recv()` returns empty string when EOF is reached,
the TCP class raises `ConnectionEOFError` instead and closes both ends of
the connection.
3. Clever low level operations like `os.dup()`, make socket non-blocking### REQ-REP semantics
Many instruments out there have a Request-Reply protocol. A sockio TCP
provides `write_read` family of methods which simplify communication with
these instruments. These methods are atomic which means different tasks or
threads can safely work with the same socket object (although I would
question myself why would I be doing that in my library/application).### Auto-reconnection
```python
sock = TCP('acme.example.com', 5000)
reply = await sock.write_readline(b'*IDN?\n')
print(reply)# ... kill the server connection somehow and bring it back to life again
# You can use the same socket object. It will reconnect automatically
# and work "transparently"
reply = await sock.write_readline(b'*IDN?\n')
print(reply)
```The auto-reconnection facility is specially useful when, for example, you
move equipement from one place to another, or you need to turn off the
equipment during the night (planet Earth thanks you for saving energy!).### Timeout
The TCP constructor provides a `connection_timeout` that is used when the
connection is open and `timeout` parameter that is taken into account
when performing any data I/O operation (read, write, read_writeline,
etc).
By default, they are both None, meaning infinite timeout.```python
sock = TCP('acme.example.com', 5000, connection_timeout=0.1, timeout=1)
```Additionally, you can override the object timeout on each data I/O method
call by providing an alternative timeout parameter:```python
sock = TCP('acme.example.com', 5000, timeout=1)
# the next call will raise asyncio.TimeoutError if it takes more than 0.1s
reply = await sock.write_readline(b'*IDN?\n', timeout=0.1)
print(reply)
```### Custom EOL
In line based protocols, sometimes people decide `\n` is not a good EOL character.
A sockio TCP can be customized with a different EOL character. Example:```python
sock = TCP('acme.example.com', 5000, eol=b'\r')
```The EOL character can be overwritten in any of the `readline` methods. Example:
```python
await sock.write_readline(b'*IDN?\n', eol=b'\r')
```### Connection event callbacks
You can be notified on `connection_made`, `connection_lost` and `eof_received` events
by registering callbacks on the sockio TCP constructorThis is particularly useful if, for example, you want a specific procedure to be
executed every time the socket is reconnected to make sure your configuration is
right. Example:```python
async def connected():
await sock.write(b'ACQU:TRIGGER HARDWARE\n')
await sock.write(b'DISPLAY OFF\n')sock = TCP('acme.example.com', 5000, on_connection_made=connected)
```(see examples/req-rep/client.py)
Connection event callbacks are **not** available in *python 2 compatibility module*.
### Streams
sockio TCPs are asynchronous iterable objects. This means that line streaming
is as easy as:```python
sock = TCP('acme.example.com', 5000, eol=b'\r')async for line in sock:
print(line)
```Streams are **not** available in *python 2 compatibility module*. Let me know
if you need them by writing an issue. Also feel free to make a PR!## Missing features
* Connection retries
* trio event loop
* curio event loopJoin the party by bringing your own concurrency library with a PR!
I am looking in particular for implementations over trio and curio.
[pypi]: https://img.shields.io/pypi/pyversions/sockio.svg