A package that allows using yaml to define zserio objects.
Project description
zs-yaml
Your Easy Path to zserio Test Data
zs-yaml adds YAML as a text format to be used with zserio in order to improve the user experience when manually creating or analyzing test data for zserio.
- YAML Format: Uses YAML's human-readable format instead of JSON as the primary format for editing, making data handling and transformation more intuitive and less cluttered.
- Metadata Inclusion: Automatically includes metadata in the YAML, eliminating the need for users to manually identify the correct type when importing JSON data, ensuring seamless (de-)serialization.
- Custom Transformations: Allows for hooking in custom transformations so that users can work with familiar formats (e.g., dates or coordinate representations) instead of thinking in unfamiliar formats.
Design Principles
-
Transparency Over Magic:
- Prioritize clear and understandable processes. For example, users can fully render the YAML to see the actual data conforming to the underlying zserio schema.
- This approach avoids black-box conversions, simplifying debugging and ensuring user confidence in the data.
-
Accessibility and Simplicity:
- Make the tool easy to use and understand, even for beginners.
- Features are designed with simplicity in mind. For instance, we use string-only templates as one way to keep things straightforward.
-
Performance for Trusted Sources:
- Optimize for performance, assuming trusted YAML sources.
- Faster processing is crucial for rapid iterations and maintaining workflow.
-
Flexibility Within Simplicity:
- While maintaining a simple core, provide powerful features like YAML imports, built-in and custom transformations, and basic templating.
- This balance allows for adaptability to various use cases without compromising ease of use.
Installation
Install zs-yaml
using pip:
python -m pip install --upgrade zs-yaml
Usage
The main entry point for the application is zs-yaml
. It accepts arguments for specifying the input and output file paths. You can run the application as follows:
zs-yaml input.yaml output.bin
zs-yaml input.bin output.yaml
Programmatic Usage
In addition to the command-line interface, zs-yaml
provides the conversion functions for use within Python scripts. In addition to the ones available to the CLI, there are also functions for programmatic use, e.g. yaml_to_pyobj
for deserializing YAML files to Python objects:
from zs_yaml.convert import yaml_to_pyobj
# Convert a YAML file to a Python object
# (instance of the zserio object defined by the schema)
zserio_object = yaml_to_pyobj('input.yaml')
# Use the zserio_object as needed in your application
Notes
- You have to use the exact same order of fields in the YAML as defined by the zserio schema, because zserio expects this.
- When converting from binary to YAML, the target YAML file must already exist and contain the necessary metadata.
- The minimal metadata content in the target YAML file should be:
_meta:
schema_module: <module_name>
schema_type: <type_name>
Initialization Arguments
Some Zserio types require additional arguments during initialization, either when deserializing from binary or when creating objects from JSON. To support these types, you can specify initialization arguments in the _meta
section of your YAML file:
_meta:
schema_module: <module_name>
schema_type: <type_name>
initialization_args:
- <arg1>
- <arg2>
# ... more arguments as needed
Hint: At the moment only plain values are supported, although zserio supports also compound values as args. Support for these may be added in the future.
These arguments will be passed to the appropriate Zserio functions:
zserio.deserialize_from_file()
when converting from binary to YAMLzserio.from_json_file()
when converting from YAML to binary
For example:
_meta:
schema_module: my_schema
schema_type: MyType
initialization_args:
- 0xAB
- 42
# ... rest of your YAML data
In this example, 0xAB
and 42
will be passed as additional arguments to the initialization functions.
This feature ensures that types requiring additional initialization parameters can be properly handled in both directions of conversion (YAML to binary and binary to YAML).
Example
Zserio Schema Module Creation
-
Create the Zserio schema:
-
Create a file named
person.zs
with the following content:package person; struct Person { string name; string birthdate; string birth_location; string current_job; int32 income; RoleExperience experience[]; }; struct RoleExperience { string role; int32 years; };
-
-
Compile the Zserio schema and generate Python APIs:
-
Run the following command to compile the schema and generate Python sources:
# Generated sources needs type infos so that 'json <-> bin' # conversion works, which is utilized by zs-yaml zserio person.zs -withTypeInfoCode -python zs_gen_api
-
-
Ensure that the schema modules are available in the Python environment:
-
Export the
PYTHONPATH
to include the directory containing the generated Python sources:export PYTHONPATH="zs_gen_api"
-
Use zs-yaml to create data
Using zs-yaml, you can define the same data in a more human-readable YAML format and include necessary metadata along with a custom transformation for the birthdate:
# 1) Metadata is used to specify the type needed for
# (de-)serialization and custom transform functions
# 2) Users are free to use their preferred date format
# for the birth data as the a normalization function
# (defined in the referenced `transformations.py`)
# get invoked.
# 3) Yaml allows avoiding clutter and adding comments
# like this one :)
_meta:
schema_module: person.api
schema_type: Person
transformation_module: "./transformations.py"
name: John Doe
birthdate:
_f: normalize_date
_a: "01/01/1990"
birth_location: Springfield, USA
current_job: Software Engineer
income: 75000
experience:
- role: Intern
years: 1
- role: Junior Developer
years: 2
- role: Senior Developer
years: 3
Example Transformation Module (transformations.py)
def normalize_date(date_str):
from datetime import datetime
for fmt in ("%Y-%m-%d", "%d/%m/%Y", "%m/%d/%Y"):
try:
return datetime.strptime(date_str, fmt).strftime("%Y-%m-%d")
except ValueError:
pass
raise ValueError(f"Date {date_str} is not in a recognized format")
Creating the Binary Representation
After you have installed zs-yaml
, call zs-yaml
to convert your YAML file to a binary representation:
# Install zs-yaml if not already installed.
# Create the binary representation from the YAML file
zs-yaml person.yaml person.bin
Built-in Transformations
zs-yaml comes with several built-in transformation functions that can be used in your YAML files. Here's a brief overview of the available functions:
insert_yaml_as_extern
: Includes external YAML content by transforming it to JSON and using zserio.insert_yaml
: Inserts YAML content directly from an external file.repeat_node
: Repeats a specific node a specified number of times.extract_extern_as_yaml
: Extracts binary data and saves it as an external YAML file.
For more detailed information about these functions and their usage, please refer to the built_in_transformations.py source file.
Note: We plan to implement automatic source documentation generation in a future release, which will provide more comprehensive information about these functions and their parameters.
Project Structure
setup.py
: Script for setting up the project and installing dependencies.zs_yaml/
: Directory containing the actualzs-yaml
implementation.
Reference
This project references the zserio serialization framework. For more information about zserio, visit the zserio GitHub project.
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 zs_yaml-0.6.0.tar.gz
.
File metadata
- Download URL: zs_yaml-0.6.0.tar.gz
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92ab902b67cf38ce8db5e1d55295da3dccca937abaa3b75d19c10e73de0c442f |
|
MD5 | 318fde0f426620ed99a05a2c30fd9937 |
|
BLAKE2b-256 | d06bd2d9d19a95fd49f64eaeb583b98627bd4436aa29e6d9d216f1aad3e87095 |
File details
Details for the file zs_yaml-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: zs_yaml-0.6.0-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 795dc03f3294931d0431e97f81dbe10823067810ff02c88cf1787fd38337d1e6 |
|
MD5 | 18308c41ef9d4fdf896fb1ec579f85ad |
|
BLAKE2b-256 | 04623bc5db7fbebcc281feb9e743802da3259b3528aef9623b3fa197295a7afc |