42#include "pybind11/embed.h"
52namespace py = pybind11;
58 const unsigned char *code,
int zlen,
int len)
59 : abspath(abspath), modpath(modpath), code(code), zlen(zlen),
len(
len)
78 Bytef marshalled[
len];
80 int ret = uncompress(marshalled, &unzlen, (
const Bytef *)
code,
zlen);
82 std::cerr <<
"Could not uncompress code: " << zError(ret) << std::endl;
85 assert(unzlen == (uLongf)
len);
87 auto marshal = py::module_::import(
"marshal");
88 return marshal.attr(
"loads")(py::bytes((
char *)marshalled,
len));
94 auto importer = py::module_::import(
"importer");
106 for (
auto *embedded:
getList()) {
107 if (!embedded->addModule())
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
static std::list< EmbeddedPython * > & getList()
pybind11::object getCode() const
EmbeddedPython(const char *abspath, const char *modpath, const uint8_t *code, int zlen, int len)