Skip to main content

WebSocket server for republishing LCM messages

Project description

lcm-websocket-server

WebSocket server for republishing LCM messages.

:hammer: Installation

You must have the LCM Python package installed before using lcm-websocket-server. See the LCM build instructions for more information.

From PyPI

pip install lcm-websocket-server

From source

poetry build
pip install dist/lcm_websocket_server-*-py3-none-any.whl

:rocket: Usage

[!TIP] The lcm-websocket-server commands have a log level of ERROR by default. To see more detailed logs, use the -v flag. Repeated use of the flag increases the verbosity from ERROR to WARNING, INFO, and DEBUG.

JSON Proxy

The lcm-websocket-json-proxy command can be used to run a server that republishes LCM messages as JSON over a WebSocket connection. This command requires the image extension to be installed. This can be done with:

pip install lcm-websocket-server[image]

[!NOTE] The lcm-websocket-server command has been renamed to lcm-websocket-json-proxy. The old name is still available for backwards compatibility, but it is recommended to use the new name.

To run the server locally on port 8765 and republish messages on all channels:

lcm-websocket-json-proxy --host localhost --port 8765 --channel '.*' your_lcm_types_packages

The lcm_packages argument is the name of the package (or comma-separated list of packages) that contains the LCM Python message definitions. Submodules are scanned recursively and registered so they can be automatically identified, decoded, and republished.

Example: compas_lcmtypes

For example, the compas_lcmtypes package contains LCM types for the CoMPAS lab. These can be installed with:

pip install compas-lcmtypes==0.1.0

Then, the server can be run with:

lcm-websocket-server compas_lcmtypes

JPEG Proxy

The lcm-websocket-jpeg-proxy command can be used to run a server that republishes CoMPAS senlcm::image_t LCM messages as JPEG images over a WebSocket connection. The images are decoded from a variety of pixel formats and encoded as JPEG resolution as a configurable resolution and quality.

See the CoMPAS LCM types repository for more information.

To run the server locally on port 8766 and republish images for the CAMERA channel at 75% quality at 1.0 scale:

lcm-websocket-jpeg-proxy --host localhost --port 8766 --quality 75 --scale 1.0 --channel CAMERA

Dial Proxy

The lcm-websocket-dial-proxy command is a combined version of the JSON and JPEG proxies, tweaked for Dial. It can be used to run a server that republishes CoMPAS senlcm::image_t LCM messages as JPEG images and all other CoMPAS LCM messages as JSON over a WebSocket connection. All text frames sent over the WebSocket connection are encoded as JSON. Binary frames are JPEG images with a prepended header and channel name that conforms to the LCM log file format with the following considerations:

  • The event number is always 0. This is because the server is not reading from a log file, but rather republishing messages as they are received.
  • The timestamp is the timestamp from the image_t event's contained header_t timestamp. The timestamp is conventionally in units of microseconds, but this is not guaranteed.
  • The data length represents the original image data length, not the length of the JPEG image data.

Therefore, the binary frame is laid out as follows:

[28 byte LCM header] [channel name] [JPEG]

To run the server locally on port 8765 and republish messages on all channels (JPEG quality and scale are configured as before):

lcm-websocket-dial-proxy --host localhost --port 8765 --channel '.*' --quality 75 --scale 1.0

:whale: Docker

Build

A Docker image to run the lcm-websocket-server can be built with:

./scripts/docker_build.sh

This will create the mbari/lcm-websocket-server image.

Run

The container can be run with:

docker run \
    --name lcm-websocket-server \
    --rm \
    -e HOST=0.0.0.0 \
    -e PORT=8765 \
    -e CHANNEL=".*" \
    -v /path/to/your_lcm_types_package:/app/your_lcm_types_package \
    -e LCM_PACKAGES=your_lcm_types_package \
    --network=host \
    -d \
    mbari/lcm-websocket-server

Note that the HOST, PORT, and CHANNEL environment variables specified above are the defaults for the mbari/lcm-websocket-server image. These can be omitted if the defaults are acceptable.

The LCM_PACKAGES environment variable should be set to the name of the package (or comma-separated list of packages) that contains the LCM Python message definitions. The /app directory is included in the PYTHONPATH so that any packages mounted there (as shown with -v above) can be imported.

It's recommended to run with --network=host to avoid issues with LCM over UDP. This will allow the container to use the host's network stack.

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

lcm_websocket_server-0.2.0.tar.gz (13.1 kB view details)

Uploaded Source

Built Distribution

lcm_websocket_server-0.2.0-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file lcm_websocket_server-0.2.0.tar.gz.

File metadata

  • Download URL: lcm_websocket_server-0.2.0.tar.gz
  • Upload date:
  • Size: 13.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.4 Linux/6.5.0-21-generic

File hashes

Hashes for lcm_websocket_server-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f038f4c56e96025f310a01872e9795bdbe570e7eaee9f7d90848f3566b06d4fe
MD5 332fe03495cf6e3adb9c34af83550f97
BLAKE2b-256 614b166f8a49fccbe04f229822196026582d2f7b7c381335126211e19b4d954b

See more details on using hashes here.

File details

Details for the file lcm_websocket_server-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for lcm_websocket_server-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 066572b4375f7183c7ee42b1782f4219e1c9acc43b01496868067e1e1f5a28d5
MD5 9148c2a633020380620f64a62f59152b
BLAKE2b-256 8d20ea414f315baa40de01c8c4e95d6ce4e39dfdcc88196b44ab225c5eb49624

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