Skip to content
README.md 4.14 KiB
Newer Older
Gallacchi Mattia's avatar
Gallacchi Mattia committed
# RSVP python

This repo contains the implementation of the *RSVP (Request-and-Stream Variable Protocol)* for python. 
Gallacchi Mattia's avatar
Gallacchi Mattia committed

Gallacchi Mattia's avatar
Gallacchi Mattia committed
The general protocol is described in more details [here][1].

Gallacchi Mattia's avatar
Gallacchi Mattia committed
## Add pyrsvp to your project
Gallacchi Mattia's avatar
Gallacchi Mattia committed
The CI publishes a *pypy* package on gitlab. This package can be used in other projects.
Gallacchi Mattia's avatar
Gallacchi Mattia committed
### Add pyrsvp to Poetry project

Add a secondary source to your poetry project
Gallacchi Mattia's avatar
Gallacchi Mattia committed
poetry source add -s igib https://labinfo.ing.he-arc.ch/gitlab/api/v4/projects/2369/packages/pypi/simple
```

Add *pyrsvp* package

```bash
poetry add pyrsvp --source igib
```

### Add using PIP

```bash
pip install pyrsvp --index-url https://labinfo.ing.he-arc.ch/gitlab/api/v4/projects/2369/packages/pypi/simple/
```

## Quick start

Gallacchi Mattia's avatar
Gallacchi Mattia committed
### Server

Here is an example of how to create a RSVP server running on TCP. The basic idea is to create
an instance of the RsvpServer and add command callback functions that will be called when a specific
command is received.
Gallacchi Mattia's avatar
Gallacchi Mattia committed
from pyrsvp.rsvpserver import RsvpServer, RsvpServerTcp
from pyrsvp.rsvptypes import *

Gallacchi Mattia's avatar
Gallacchi Mattia committed
#Define commands and their callbacks

# @RsvpServer.Command("EXCEPTION")
def handle_exception(ex : Exception) -> str:
    
    error =f"{type(ex).__name__} {ex}"

    try:
        raise ex
    except Exception as ex:
        print(f"{type(ex).__name__}: {ex}")

    return RsvpServer.reply(False, [RsvpString("ERROR", error)])

@RsvpServer.Command("START")
Gallacchi Mattia's avatar
Gallacchi Mattia committed
def start(values : dict) -> str:
Gallacchi Mattia's avatar
Gallacchi Mattia committed
    print(values)

    return RsvpServer.reply(True, [RsvpInteger("CODE", 1)])


if __name__ == "__main__":
Gallacchi Mattia's avatar
Gallacchi Mattia committed

    srv = RsvpServerTcp("", port)
Gallacchi Mattia's avatar
Gallacchi Mattia committed
To add a command put decorator above your function. All the function will get a dict containing the 
arguments sent by the client. 

```py
@RsvpServer.Command(<COMMAND_NAME>)
Gallacchi Mattia's avatar
Gallacchi Mattia committed
def function(args : dict)
Gallacchi Mattia's avatar
Gallacchi Mattia committed
Each callback must return a reply string using the following function
Gallacchi Mattia's avatar
Gallacchi Mattia committed
return RsvpServer.reply(ack : bool, args : list[RsvpBaseType])
Gallacchi Mattia's avatar
Gallacchi Mattia committed
There is only one callback predefined with and it's called *"EXCEPTION"* it called if an exception
is raised during the processing of the data. If this command is not defined the exception will be raises.

### Client

The client can be used to exchange data with the server.

```py
Gallacchi Mattia's avatar
Gallacchi Mattia committed
from pyrsvp.rsvpclient import RsvpClientTcp, RsvpClientNotAck
from pyrsvp.rsvptypes import *


Gallacchi Mattia's avatar
Gallacchi Mattia committed
def start_cb(args : dict):
Gallacchi Mattia's avatar
Gallacchi Mattia committed
    print(args)

if __name__ == "__main__":

Gallacchi Mattia's avatar
Gallacchi Mattia committed
    client = RsvpClientTcp("localhost", 55000)
Gallacchi Mattia's avatar
Gallacchi Mattia committed

    args = [
        RsvpInteger("ARG1", 1),
        RsvpDouble("ARG2", 2.0),
Gallacchi Mattia's avatar
Gallacchi Mattia committed
        RsvpBool("ARG3", True),
        RsvpString("ARG4", "hello world"),
        RsvpVectorDouble("ARG5", {"X": 1.0, "Y": 2.0, "Z": 3.0}),
        RsvpStringVector("ARG6", ["Hello", "World"])
Gallacchi Mattia's avatar
Gallacchi Mattia committed
    ]

    try:
Gallacchi Mattia's avatar
Gallacchi Mattia committed
        print(client.send_command("START", args))
Gallacchi Mattia's avatar
Gallacchi Mattia committed
    except Exception as ex:
        print(f"[{type(ex).__name__}] Error: {ex}")
```

A method called send data is available to send data to the server:

```py
client.send_command(cmd_name: str, args: list[svpBaseType], function = None)
```

The function take the command name as a string, a list containing the arguments as RsvpBaseType and
an optional callback function that will be called when the server answer. If the callback is not defined the
Gallacchi Mattia's avatar
Gallacchi Mattia committed
function will return received data as a dict.
Gallacchi Mattia's avatar
Gallacchi Mattia committed


### RsvpType classes

To mitigate errors we encourage the use of the special types for arguments. Available types are:

```py
RsvpInteger(name: str, value : int)
RsvpDouble(name: str, value : float)
RsvpBool(name: str value : bool)
RsvpString(name: str, value: str)
RsvpVectorDouble(name: str, value: dict[str, float])
RsvpVectorString(name: str, value: list[str])
```

All type are checked when creating a new object and it will raise an *RsvpWrongTypeException* exception the
*value* parameter is not of the correct type.

## Usage examples

In the *examples* folder you'll find some usage examples

Gallacchi Mattia's avatar
Gallacchi Mattia committed
## Developers

### Dependencies

| | |
|-|-|
| Poetry | >= 1.2.0 |

Install python dependencies:
Gallacchi Mattia's avatar
Gallacchi Mattia committed
poetry install
Gallacchi Mattia's avatar
Gallacchi Mattia committed
### Run tests
Gallacchi Mattia's avatar
Gallacchi Mattia committed
```bash
poetry run pytest -v -s tests
```
Gallacchi Mattia's avatar
Gallacchi Mattia committed
### TODO list
Gallacchi Mattia's avatar
Gallacchi Mattia committed

Gallacchi Mattia's avatar
Gallacchi Mattia committed
- [X] Add CI/CD for tests and wheel generation
Gallacchi Mattia's avatar
Gallacchi Mattia committed
- [X] Add serial support

[1]:https://labinfo.ing.he-arc.ch/gitlab/igib/documents-latex/rsvp-specs