3#define CPYCPPYY_INTERNAL 1
5#undef CPYCPPYY_INTERNAL
43 static bool isInitialized =
false;
47 if (!Py_IsInitialized()) {
49#if PY_VERSION_HEX < 0x03020000
52#if PY_VERSION_HEX < 0x03080000
56 PyConfig_InitPythonConfig(&config);
57 PyConfig_SetString(&config, &config.program_name, L
"cppyy");
58 Py_InitializeFromConfig(&config);
60#if PY_VERSION_HEX >= 0x03020000
61#if PY_VERSION_HEX < 0x03090000
67 if (!Py_IsInitialized()) {
69 std::cerr <<
"Error: python has not been intialized; returning." << std::endl;
74#if PY_VERSION_HEX < 0x03000000
75 char* argv[] = {
const_cast<char*
>(
"cppyy")};
76#elif PY_VERSION_HEX < 0x03080000
77 wchar_t* argv[] = {
const_cast<wchar_t*
>(
L"cppyy")};
79#if PY_VERSION_HEX < 0x03080000
80 PySys_SetArgv(
sizeof(argv)/
sizeof(argv[0]), argv);
83 PyRun_SimpleString(
const_cast<char*
>(
"import cppyy"));
89 PyImport_AddModule(
const_cast<char*
>(
"__main__")));
118 void* addr,
const std::string& classname,
bool python_owns)
186 if (pyobject->ob_refcnt <= 1 && (((
CPPInstance*)pyobject)->fFlags & CPPInstance::kIsOwner))
222 PyObject* mod = PyImport_ImportModule(mod_name.c_str());
230 PyModule_AddObject(
gThisModule, mod_name.c_str(), mod);
236 PyObject* dct = PyModule_GetDict(mod);
239 PyObject* values = PyDict_Values(dct);
240 for (
int i = 0; i < PyList_GET_SIZE(values); ++i) {
245 if (PyClass_Check(
value) || PyObject_HasAttr(
value, PyStrings::gBases)) {
247 PyObject* pyClName = PyObject_GetAttr(
value, PyStrings::gName);
248 if (PyErr_Occurred())
252 std::string fullname = mod_name;
260 Py_XDECREF(pyClName);
269 if (PyErr_Occurred())
287 std::cerr <<
"Error: no file name specified." << std::endl;
291 FILE* fp = fopen(
name.c_str(),
"r");
293 std::cerr <<
"Error: could not open file \"" <<
name <<
"\"." << std::endl;
298 PyObject* oldargv = PySys_GetObject(
const_cast<char*
>(
"argv"));
302 PyObject*
l = PyList_New(PyList_GET_SIZE(oldargv));
303 for (
int i = 0; i < PyList_GET_SIZE(oldargv); ++i) {
304 PyObject* item = PyList_GET_ITEM(oldargv, i);
306 PyList_SET_ITEM(
l, i, item);
312#if PY_VERSION_HEX < 0x03000000
313 int argc = args.size() + 1;
314 const char** argv =
new const char*[argc];
315 for (
int i = 1; i < argc; ++i) argv[i] = args[i-1].c_str();
316 argv[0] = Py_GetProgramName();
317 PySys_SetArgv(argc,
const_cast<char**
>(argv));
327 PyRun_FileEx(fp,
const_cast<char*
>(
name.c_str()), Py_file_input, gbl, gbl, 1);
335 PySys_SetObject(
const_cast<char*
>(
"argv"), oldargv);
392 PyObject*
name = PyObject_GetAttr(pyclass, PyStrings::gName);
393 PyObject* module = PyObject_GetAttr(pyclass, PyStrings::gModule);
405 void* klass =
nullptr;
424 PyRun_InteractiveLoop(stdin,
const_cast<char*
>(
"\0"));
static PyObject * gMainDict
#define CPyCppyy_PyText_AsString
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
Set of helper functions that are invoked from the pythonizors, on the Python side.
CPYCPPYY_EXTERN bool Instance_CheckExact(PyObject *pyobject)
CPYCPPYY_EXTERN void Prompt()
CPYCPPYY_EXTERN bool Overload_Check(PyObject *pyobject)
CPYCPPYY_EXTERN bool Overload_CheckExact(PyObject *pyobject)
CPYCPPYY_EXTERN bool Import(const std::string &name)
CPYCPPYY_EXTERN void ExecScript(const std::string &name, const std::vector< std::string > &args)
CPYCPPYY_EXTERN bool Instance_IsLively(PyObject *pyobject)
PyObject * BindCppObjectNoCast(Cppyy::TCppObject_t object, Cppyy::TCppType_t klass, const unsigned flags=0)
bool CPPOverload_Check(T *object)
bool CPPScope_Check(T *object)
CPYCPPYY_EXTERN bool Instance_Check(PyObject *pyobject)
CPYCPPYY_EXTERN PyObject * Instance_FromVoidPtr(void *addr, const std::string &classname, bool python_owns=false)
CPYCPPYY_EXTERN bool Scope_CheckExact(PyObject *pyobject)
bool CPPInstance_Check(T *object)
bool CPPInstance_CheckExact(T *object)
R__EXTERN PyObject * gThisModule
bool CPPScope_CheckExact(T *object)
CPYCPPYY_EXTERN void * Instance_AsVoidPtr(PyObject *pyobject)
CPYCPPYY_EXTERN bool Scope_Check(PyObject *pyobject)
CPYCPPYY_EXTERN bool Exec(const std::string &cmd)
bool CPPOverload_CheckExact(T *object)
CPYCPPYY_EXTERN const PyResult Eval(const std::string &expr)
RPY_EXPORTED TCppScope_t GetScope(const std::string &scope_name)
RooArgList L(Args_t &&... args)
void Initialize(Bool_t useTMVAStyle=kTRUE)