Generate C++ for an AsyncAPI Specification
Project description
AsyncAPI Codegen
asyncapi-codegen
interprets an AsyncAPI spec and generates code and documentation accordingly. Only MQTT is supported.
There are two parts to this:
- Interpret the AsyncAPI spec into Python classes in ways that makes it easier to use.
- Use Jinja2 templates to create the code.
Terminology
With pub/sub architecture, the broker is a server and everything is a client to it. As such, is is useful to define the general nature of clients to differentiate roles between clients.
A provider is the MQTT service that provides functionality. The AsyncAPI spec describes the behavior of the provider. A utilizer is the MQTT client that consumes the functionality. When the AsyncAPI spec uses "publish" and "subscribe" terms, it is the utilizer that does the described action.
Supported Languages
Lanaguage | MQTT Library | JSON Library | JSON Schema Library |
---|---|---|---|
C++ | Mosquitto Client | rapidjson | Built-in via json-schema-codegen |
Python | Paho MQTT | Python built-in | None |
Features:
Feature | Python | C++ |
---|---|---|
Enforces JSON Schema | No | Yes |
Documentation Formats
Formats:
- Markdown (with significant HTML), suitable for display on GitLab.
Output files
The generator creates the following types of output files:
- client interface. This is the main interface for publishing or subscribing to messages.
- servers. Represents a connection to a server. Currently, only unauthenticated MQTT connections are supported. A server object is provided to a client interface to establish the connection to the broker/server.
- parameters. These are just schema objects.
- messages. Currently, these are just schema objects. However, in the future these objects will also take protocol-specific message bindings.
- schemas. These are structures that always enforce schema compliance and provide (de-)serialization methods to rapidjson Value objects (which can thus be used to create JSON strings).
Generated code files should be annotated for doxygen document generation, or at least that is the goal.
Installation
pip3 install asyncapi-codegen
Python requirements for running code generator
See also requirements.txt
- python 3.10
- jinja2
- stringcase
- json-schema-codegen
- pyyaml
Python Code Generation
Requirements for the generated python code
- python 3.7
- parse
- paho-mqtt
C++ Code Generation
Requirements for the generated C++ code
- boost (boost::optional and boost::variant among others)
- rapidjson 1.1
- C++11
Using Docker
Utilizer code
To generate utilizer/client C++ code for an AsyncAPI spec, you could run this docker command, carefully adjusting the volume mounting to the directory containing the specs and the directory for the output.
When the YAML uses the words "publish" and "subscribe", the utilizer will perform those MQTT actions.
docker run --rm -t \
-v $(pwd)/examples:/specs \
-v $(pwd)/output:/output \
--user $UID:$GID \
docker.io/pearmaster/asyncapi-codegen:latest \
--yaml /specs/streetlights-mqtt.yml \
--name Streetlights \
--cpp
Provider code
If you'd like instead to generate C++ code for the provider, you can append --progtype provider
to the docker command to look like:
docker run --rm -t \
-v $(pwd)/examples:/specs \
-v $(pwd)/output:/output \
--user $UID:$GID \
docker.io/pearmaster/asyncapi-codegen:latest \
--yaml /specs/streetlights-mqtt.yml \
--name Streetlights \
--cpp \
--progtype provider
Markdown documentation
This command will generate documentation for utilizers. The entire spec is output in one big markdown file.
docker run --rm -t \
-v $(pwd)/examples:/specs \
-v $(pwd)/output:/output \
--user $UID:$GID \
docker.io/pearmaster/asyncapi-codegen:latest \
--yaml /specs/streetlights-mqtt.yml \
--name Streetlights
--markdown
License
GPLv2
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file asyncapi-codegen-0.5.0.tar.gz
.
File metadata
- Download URL: asyncapi-codegen-0.5.0.tar.gz
- Upload date:
- Size: 29.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46a3ffdbda5dca492be095c5e0bda02784a7bb54f6626e361ff3f268f9763c5c |
|
MD5 | 145e0a6a072759395614f866f0ab3574 |
|
BLAKE2b-256 | 5ac667ccd1dd9cd43e5b6b2b9f4808d101a31b2738ae2593fdeeb865a67e6e63 |
File details
Details for the file asyncapi_codegen-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: asyncapi_codegen-0.5.0-py3-none-any.whl
- Upload date:
- Size: 39.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ac26f0b4d5c8f44edb0be0c544d85482626482a1a559a68295b9427f9b5c4af |
|
MD5 | 442782386199a7b1f7cfaafd34afd604 |
|
BLAKE2b-256 | 6e0cfc5dcd47df0857b8bde4fdb28b9ba9e66bb304d2aacd7c438033e76c81f1 |