Skip to main content

A subset of Python that can be compiled to C++ meta-functions using the py2tmp compiler

Project description

Build Status

TMPPy is a subset of Python that can be compiled to C++ meta-functions using the py2tmp compiler. This project is aimed at C++ library developers whose libraries include a non-trivial amount of C++ metaprogramming.

Compared to writing C++ metaprogramming code directly, using TMPPy allows that code to be expressed in a more concise and readable way, provides static type checking (avoiding some classes of instantiation-time errors) and produces optimized C++ meta-functions, reducing the compile time for the C++ compilation.

Example

As an example, let’s write a metafunction (aka type trait class) add_pointer_multiple such that:

  • add_pointer_multiple<T, 0>::type is T

  • add_pointer_multiple<T, 1>::type is T*

  • add_pointer_multiple<T, 2>::type is T**

  • (and so on)

This can be written as a template, as follows:

template <typename T, int64_t n>
struct add_pointer_multiple {
    using type = typename add_pointer_multiple<T, n - 1>::type*;
};

template <typename T>
struct add_pointer_multiple<T, 0> {
    using type = T;
};

However this syntax is quite verbose and not very readable. For more complex metafunctions this becomes a significant issue, leading to more bugs and more effort when debugging or maintaining the code.

Some C++ metaprogramming libraries (notably Boost’s MPL library) can be used to reduce the verbosity, however that comes at the price of slower compile times.

Using TMPPy, the above can be written as:

def add_pointer_multiple(t: Type, n: int) -> Type:
    if n == 0:
        return t
    else:
        return Type('T*', T=add_pointer_multiple(t, n-1))

And this TMPPy code can then be compiled to C++ code equivalent to the metafunction above (without the overhead of e.g. MPL).

For more information on TMPPy, see the wiki.

License

TMPPy is released under the Apache 2.0 license. See the LICENSE file for details.

This is not an official Google product.

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

TMPPy-0.1.3.tar.gz (52.6 kB view details)

Uploaded Source

Built Distribution

TMPPy-0.1.3-py3-none-any.whl (62.0 kB view details)

Uploaded Python 3

File details

Details for the file TMPPy-0.1.3.tar.gz.

File metadata

  • Download URL: TMPPy-0.1.3.tar.gz
  • Upload date:
  • Size: 52.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for TMPPy-0.1.3.tar.gz
Algorithm Hash digest
SHA256 841ceb0352284c8ed166c03abd9df1d403d4c259a04f06fd49889beb426757c1
MD5 2fbca6c4e9c4d02513944fa7c388eccf
BLAKE2b-256 92db22b144db5aa768287490cff32da93b72a5ee98716a88746b4a9534bff4bd

See more details on using hashes here.

File details

Details for the file TMPPy-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for TMPPy-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 91ee12409478a515e234109af91d0007ce3cdf634b359aa545805b2d5adaae8f
MD5 67139cce14a4f9a1cc892f619e1d3b5e
BLAKE2b-256 b34762a89bf5ad12147349897ddcca808a464e022342d640b0576182770bddef

See more details on using hashes here.

Supported by

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