Skip to content

Instantly share code, notes, and snippets.

@anntzer
Created December 8, 2020 21:25
Show Gist options
  • Save anntzer/96f27c0b88634dbc61862d08bff46d10 to your computer and use it in GitHub Desktop.
Save anntzer/96f27c0b88634dbc61862d08bff46d10 to your computer and use it in GitHub Desktop.
pythonic enums with pybind11
// The ``P11X_DECLARE_ENUM`` macro and the ``p11x::bind_enums`` function
// bind enums to Python's ``enum.Enum`` or one of its subclasses
// (``enum.IntEnum``, ``enum.Flag``, ``enum.IntFlag``) -- unlike
// ``pybind11::enum_`` which uses an unrelated implementation.
//
// Use as follows:
//
// .. code-block:: c++
//
// // Define module_name.NameOfPythonEnum as an enum.Enum subclass, with
// // members PyNameA, PyNameB, etc.
//
// // This must happen at the toplevel, not within a namespace.
// P11X_DECLARE_ENUM(
// "NameOfPythonEnum",
// "enum.Enum", // or "enum.IntEnum", etc.
// {"PyNameA", CEnumMemberA}, {"PyNameB", CEnumMemberB}, ...
// )
//
// // This must be within PYBIND11_MODULE, in the same translation unit as
// // P11X_DECLARE_ENUM.
// PYBIND11_MODULE(module_name, m) {
// p11x::bind_enums(m);
// }
//
// The enum members passed to ``P11X_DECLARE_ENUM`` must be actual members of the
// enum class, not integers with the corresponding value -- their type is used to
// infer the C class used by the caster.
#pragma once
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
// private.
#define P11X_ENUM_TYPE(...) \
decltype(std::map{std::pair __VA_ARGS__})::mapped_type
#define P11X_CAT2(a, b) a##b
#define P11X_CAT(a, b) P11X_CAT2(a, b)
namespace p11x {
namespace {
namespace py = pybind11;
// Holder is (py_base_cls, [(name, value), ...]) before module init;
// converted to the Python class object after init.
auto enums = std::unordered_map<std::string, py::object>{};
auto bind_enums(py::module mod) -> void
{
for (auto& [py_name, spec]: enums) {
auto const& [py_base_cls, pairs] =
spec.cast<std::pair<std::string, py::object>>();
mod.attr(py::cast(py_name)) = spec =
py::module::import("pydoc").attr("locate")(py_base_cls)(
py_name, pairs, py::arg("module") = mod.attr("__name__"));
}
}
}
}
// Immediately converting the args to a vector outside of the lambda avoids
// name collisions.
#define P11X_DECLARE_ENUM(py_name, py_base_cls, ...) \
namespace p11x { \
namespace { \
[[maybe_unused]] auto const P11X_CAT(enum_placeholder_, __COUNTER__) = \
[](auto args) { \
py::gil_scoped_acquire gil; \
using int_t = std::underlying_type_t<decltype(args[0].second)>; \
auto pairs = std::vector<std::pair<std::string, int_t>>{}; \
for (auto& [k, v]: args) { \
pairs.emplace_back(k, int_t(v)); \
} \
p11x::enums[py_name] = pybind11::cast(std::pair{py_base_cls, pairs}); \
return 0; \
} (std::vector{std::pair __VA_ARGS__}); \
} \
} \
namespace pybind11::detail { \
template<> struct type_caster<P11X_ENUM_TYPE(__VA_ARGS__)> { \
using type = P11X_ENUM_TYPE(__VA_ARGS__); \
static_assert(std::is_enum_v<type>, "Not an enum"); \
PYBIND11_TYPE_CASTER(type, _(py_name)); \
bool load(handle src, bool) { \
auto cls = p11x::enums.at(py_name); \
PyObject* tmp = nullptr; \
if (pybind11::isinstance(src, cls) \
&& (tmp = PyNumber_Index(src.attr("value").ptr()))) { \
auto ival = PyLong_AsLong(tmp); \
value = decltype(value)(ival); \
Py_DECREF(tmp); \
return !(ival == -1 && !PyErr_Occurred()); \
} else { \
return false; \
} \
} \
static handle cast(decltype(value) obj, return_value_policy, handle) { \
auto cls = p11x::enums.at(py_name); \
return cls(std::underlying_type_t<type>(obj)).inc_ref(); \
} \
}; \
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment