Skip to main content

Convert ProtoBuf proto file to cute Schematics classes file

Project description

ProtoBuf Schematics

https://img.shields.io/pypi/v/protobuf_schematics.svg https://img.shields.io/travis/AlmogCohen/protobuf-schematics.svg Documentation Status

Convert ProtoBuf proto file to cute Schematics classes file.

Google Protobuf is great when it comes to high performance schema aware APIs, but when Google designed Protobuf, it didn’t tried to make the generated code idiomatic in Python, which brings a problem when exporting messages outside interface modules or having nice IDE auto-completions. Schematics is a cute and Pythonic schema library that goes well with most applications. Why not join both?

Currently this package does not support the Protobuf binary format and will work with a any other textual representation which is easily generated with the original Protobuf API for any language. Ease of use was prioritized while writing this package rather than mere performance.

Usage

  1. Convert the proto file to python Schematics classes:

    protobuf_schematics <path-to-file.proto> generated_schematics_proto.py # or any output filename
  2. Convert your ProtoBuf message to Json:

In Java:

import com.google.protobuf.util.JsonFormat;

FileWriter file = new FileWriter("protoBufMessage.json")
JsonFormat.Printer printer = JsonFormat.printer().preservingProtoFieldNames();
String message = printer.print(someProtoBufMessage);
file.write(message)

or from Python:

import json
from google.protobuf.json_format import MessageToJson

json = MessageToJson(org, preserving_proto_field_name=True, including_default_value_fields=True)
with open("protoBufMessage.json", 'w') as output:
    json.dump(json, output)
  1. In your project, load the message in python as Schematics object:

import json
from generated_schematics_proto import SomeMessage # import the schematics message class

schematics_root_message = SomeMessage(json.load(open('protoBufMessage.json')))

Or use a message loaded in python by Protobuf:

import json
from generated_schematics_proto import SomeMessage # import the schematics message class

# ... get your protobuf message as the pb class representation
schematics_root_message = SomeMessage.import_from_protobuf_message(protobuf_message)

Example

This proto file:

syntax = "proto3";

enum IPAddressFamily {
    INVALID = 0;
    IPv4 = 1;
    IPv6 = 2;
};

message ProtocolAndPorts {
    repeated uint32 ports = 3;
}

message FlowFilter {
    enum SomeEnum {
        VALUE = 0;
    };
    string id = 1 [deprecated = true];
    SomeEnum consumer_filter_id = 2;
    map<string, ProtocolAndPorts> ports = 3;
    repeated ProtocolAndPorts protocol_and_ports = 4;
}

Will be converted to:

class IPAddressFamily(Enum):
    INVALID = 0
    IPv4 = 1
    IPv6 = 2


class ProtocolAndPorts(ProtobufMessageModel):
    ports = ListType(IntType())


class FlowFilter(ProtobufMessageModel):
    class InnerEnum(Enum):
        VALUE = 0

    id = StringType()
    consumer_filter_id = EnumType(SomeEnum)
    ports = DictType(ModelType(ProtocolAndPorts), str)
    protocol_and_ports = ListType(ModelType(ProtocolAndPorts))

Features

  • Support both Protobuf syntax 2 and 3.

  • Support builtin types such as StringType, IntType.

  • Support proto map fields as Schematics DictType.

  • Support repeated modifier as convert to ListType.

  • Support Enum class generation and custom Schematics EnumType.

  • Support custom schematics ByteArrayType base64 encoded byte arrays converted from Java.

Development

First, install the Pipfile and create the proper virtual environment:

pipenv install --dev

To check linting with flake8, run:

make lint

To run the unittests against your working python version:

py.test

To see coverage report:

make coverage

To run tests against all supported python versions:

tox

To make the docs (which will be automatically published to readthedocs on commits to the master branch):

make docs

Credits

The parsing work of .proto files is provided thanks to the awesome guys at PyroBuf.

This package was created with Cookiecutter and the elgertam/cookiecutter-pipenv project template, based on audreyr/cookiecutter-pypackage.

History

TODO

  • Add more meaningful unittests.

  • Improve Protobuf support and integration.

  • add support for parsing the Protobuf generated files as it is more comprehensive than the current Pyrobuf support.

Read for Release

0.4.0 (2019-01-16)

  • Added more meaningful unittests.

  • Export Types and Models out of the templates.

  • Export heavy definition logic (such as field definition) from the jinja template to pythonic filters.

  • Improve integration with Protobuf.

0.2.0 (2019-01-14)

  • Improve README - Add usage examples.

  • Update the setup.py to point to official PyroBuf 0.8.5 PyPi release.

0.1.0 (2019-01-13)

  • First release on PyPI.

  • CLI interface for compiling a given proto file to schematics definition file.

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

protobuf_schematics-0.4.1.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

protobuf_schematics-0.4.1-py2.py3-none-any.whl (8.9 kB view details)

Uploaded Python 2Python 3

File details

Details for the file protobuf_schematics-0.4.1.tar.gz.

File metadata

  • Download URL: protobuf_schematics-0.4.1.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.2 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.3

File hashes

Hashes for protobuf_schematics-0.4.1.tar.gz
Algorithm Hash digest
SHA256 b401ac3e657737b9c51b8f5aad93e14726d5a926ecefbdb73f04cc6d26c53d97
MD5 b4755578d7d786a26e3f06241dd69e8b
BLAKE2b-256 64ce3cd78f17239db2a41924844beab2ade1d4a6364f4ab588f6ee7ed9dd19ed

See more details on using hashes here.

File details

Details for the file protobuf_schematics-0.4.1-py2.py3-none-any.whl.

File metadata

  • Download URL: protobuf_schematics-0.4.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.2 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.3

File hashes

Hashes for protobuf_schematics-0.4.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 3b203893d61e27e303982719f85609706048ebed3c4bc8068d308ea237b64c55
MD5 410c9b134cc12d121451b65245ce46fb
BLAKE2b-256 8eaabeb58a77b5f7b777e0ca664035069e86ca48dd8725ff6359e29b7efd07b8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page