58 #include "config/have_protobuf.hh"
63 #include <google/protobuf/stubs/common.h>
67 namespace py = pybind11;
74 #define PyCC(x) (const_cast<char *>(x))
79 const char *modpath,
const unsigned char *code,
int zlen,
int len)
80 : filename(filename), abspath(abspath), modpath(modpath), code(code),
85 if (std::string(
modpath) == std::string(
"importer"))
105 Bytef marshalled[
len];
107 int ret = uncompress(marshalled, &unzlen, (
const Bytef *)
code,
zlen);
109 panic(
"Could not uncompress code: %s\n", zError(ret));
110 assert(unzlen == (uLongf)
len);
112 return PyMarshal_ReadObjectFromString((
char *)marshalled,
len);
148 for (;
i != end; ++
i)
149 if (!(*i)->addModule())
156 void (*init_func)(py::module_ &),
158 : initFunc(init_func), registered(false),
name(_name),
base(_base)
160 getMap()[_name] =
this;
164 void (*init_func)(py::module_ &))
165 : initFunc(init_func), registered(false),
name(_name),
base(
"")
167 getMap()[_name] =
this;
177 cprintf(
"Warning: %s already registered.\n",
name);
187 std::map<std::string, EmbeddedPyBind *> &
190 static std::map<std::string, EmbeddedPyBind *> objs;
194 #if PY_MAJOR_VERSION >= 3
203 py::module_ m_m5 = py::module_(
"_m5");
204 m_m5.attr(
"__package__") = py::cast(
"_m5");
212 for (
auto &kv :
getMap()) {
213 auto &obj = kv.second;
214 if (obj->base.empty()) {
217 pending.push_back(obj);
221 while (!pending.empty()) {
222 for (
auto it = pending.begin(); it != pending.end(); ) {
226 it = pending.erase(it);
233 #if PY_MAJOR_VERSION >= 3
243 panic(
"Failed to add _m5 to Python's inittab\n");
267 GOOGLE_PROTOBUF_VERIFY_VERSION;
271 #if PY_MAJOR_VERSION >= 3
272 typedef std::unique_ptr<
wchar_t[], decltype(&PyMem_RawFree)> WArgUPtr;
275 v_argv.reserve(argc);
276 vp_argv.reserve(argc);
277 for (
int i = 0;
i < argc;
i++) {
278 v_argv.emplace_back(Py_DecodeLocale(_argv[
i], NULL), &PyMem_RawFree);
279 vp_argv.emplace_back(v_argv.back().get());
282 wchar_t **argv = vp_argv.data();
287 PySys_SetArgv(argc, argv);
290 PyObject *module = PyImport_AddModule(
PyCC(
"__main__"));
292 panic(
"Could not import __main__");
293 PyObject *dict = PyModule_GetDict(module);
302 result = PyRun_String(*command, Py_file_input, dict, dict);
313 google::protobuf::ShutdownProtobufLibrary();