Skip to main content

Generate source code for C++, Rust, Go or Python from a Flatdata schema file

Project description

flatdata-generator

Build Status

Generates code from a flatdata schema file.

For more information on flatdata and its implementations, please refer to flatdata's homepage.

Using flatdata-generator

# installation
pip3 install flatdata-generator

# example: generate a header-only C++ library
flatdata-generator -s locations.flatdata -g cpp -O locations.hpp

Currently supported target languages:

  • C++
  • Rust
  • Python
  • Go
  • Dot (graph of the schema)
  • Flatdata (normalized stable schema)

Architecture

Stages

The flatdata generator works in several stages which are clearly separated from one another and can be extended/tested in isolation:

  1. Parse the source schema file using pyparsing library. Grammar for the schema is defined in grammar.py

  2. Construct a node tree out of pyparsing.ParseResults. The node tree contains entities for every construct of flatdata grammar, organized in hierarchical order, allowing non-tree references between nodes:

    • Namespace - Nesting namespaces in the tree is allowed.
    • Structure - Structures are grouping together a set of fields.
    • Archive - Archives are grouping together resources and are referencing structures or other archives (see Reference)
    • ResourceBase - All resources derive from ResourceBase
    • Reference - All references between flatdata entities are modeled with Reference nodes. All references participate in name resolution. There are two type of references:
      • RuntimeReference - model explicit references and bound resources that show themselves at runtime.
      • TypeReference - model type dependencies, which are used during topological sorting at a later stage and for schema resolution.
  3. Augment the tree with structures and references that are not directly corresponding to pyparsing.ParseResults or needed to implement advanced features. Among these:

    • Add builtin structures if any of the resources require them. For example, multivector< N, ... > requires _builtin.multivector.IndexTypeN to be available.
    • Add constant references to all archives so that constants are available for schema resolution.
  4. Resolve references iterates through all references and tries to find a node they refer to, either in:

    • Parent scopes until (inclusive) innermost parent namespace.
    • Root node if path is fully qualified.
  5. Perform topological sorting to detect cycles in between entities and to determine the order of serialization for targets that depend on one.

  6. Generate the source code using nodes in topological order and/or the tree (depending on the generator architecture - recursive descent or iterative).

Node Tree

Every node of the tree consists of its name, properties (metadata) and holds references to its children. Every node is reachable via certain path which is a dot-joint concatenation of the names of its parents. Node tree enforces several properties of the flatdata schema:

  • No conflicting declarations: No two nodes with the same path are allowed.
  • All references are correct: All reference nodes are resolvable.
  • No cyclic dependencies among resources: All TypeReference participate in topological sorting of the DAG formed by the tree edges and edges between source and target of a TypeReference

References

Reference names are mangled so they are not ambiguous with other paths components. For example reference to type T would have name @T, and similarly reference to .foo.bar.T would change to @@foo@bar@T.

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

flatdata-generator-0.2.4.tar.gz (34.1 kB view details)

Uploaded Source

Built Distribution

flatdata_generator-0.2.4-py3-none-any.whl (61.5 kB view details)

Uploaded Python 3

File details

Details for the file flatdata-generator-0.2.4.tar.gz.

File metadata

  • Download URL: flatdata-generator-0.2.4.tar.gz
  • Upload date:
  • Size: 34.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.2 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.3

File hashes

Hashes for flatdata-generator-0.2.4.tar.gz
Algorithm Hash digest
SHA256 9f03f4f51028ecc0325dd955c6971f0e38bfb30d75174164834a6440db8ef909
MD5 2e440b4a98affc291c67bfa3165e92d5
BLAKE2b-256 521d58bcde0e02a1e5c32b14949e02d844e99de55822362c989eea95b0f80b36

See more details on using hashes here.

File details

Details for the file flatdata_generator-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: flatdata_generator-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 61.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.2 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.3

File hashes

Hashes for flatdata_generator-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 df03ec7b5f8b417abf81d5a3a78f337a38c14e9f655ae6507ab395ca03fff1da
MD5 53c438e38cbdb6c42d2df074f5c31224
BLAKE2b-256 e9d49fa0b207605a2fdc5f284ae29ac4efb591b6727aaf15257e7963c87026fa

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