X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2Fpython.cpp;h=119bff1c0bdd006c61c1a98755f0f7227dde9938;hb=f987ec20499668c324c17aa7a747e76909f61fe4;hp=642d70ba9f3072f26e4773dbc8151453abb7b7f0;hpb=1a6dec0e15983b83e4de2859624ae36d8d619271;p=vuplus_dvbapp diff --git a/lib/python/python.cpp b/lib/python/python.cpp index 642d70b..119bff1 100644 --- a/lib/python/python.cpp +++ b/lib/python/python.cpp @@ -1,8 +1,24 @@ #include #include + /* avoid warnigs :) */ +#undef _POSIX_C_SOURCE +#define _POSIX_C_SOURCE 200112L #include extern "C" void init_enigma(); +extern void bsodFatal(); + +DEFINE_REF(TestObj); + +TestObj::TestObj() +{ + eDebug("create %p", this); +} + +TestObj::~TestObj() +{ + eDebug("destroy %p", this); +} #if 0 ePyObject::ePyObject(void *ptr): m_object(ptr) @@ -44,6 +60,10 @@ ePyObject &ePyObject::operator=(void *object) ePython::ePython() { +// Py_VerboseFlag = 1; + +// Py_OptimizeFlag = 1; + Py_Initialize(); init_enigma(); @@ -57,9 +77,8 @@ ePython::~ePython() int ePython::execute(const std::string &pythonfile, const std::string &funcname) { PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pValue; - pName = PyString_FromString(pythonfile.c_str()); - + pModule = PyImport_Import(pName); Py_DECREF(pName); @@ -112,6 +131,7 @@ int ePython::call(PyObject *pFunc, PyObject *pArgs) } else { PyErr_Print(); + bsodFatal(); } } return res;