X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fpython.cc;h=08f8f506139cf2398f8ce25c511500789c0cb82f;hb=bb4990af2b94baa59fc704e58b911085e78bfc34;hp=5a4d1bcf2b68e57068f3ed88915551e705d29856;hpb=3cf5a8b6dd5b09a8550c9ecfc19f8e0e884778cc;p=chaz%2Fopenbox diff --git a/src/python.cc b/src/python.cc index 5a4d1bcf..08f8f506 100644 --- a/src/python.cc +++ b/src/python.cc @@ -1,44 +1,47 @@ // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- -#ifdef HAVE_CONFIG_H -# include "../config.h" -#endif - #include "python.hh" -#include "client.hh" #include "openbox.hh" - -namespace ob { +#include "actions.hh" +#include "python.hh" +#include "bindings.hh" +#include "otk/display.hh" +#include "otk/util.hh" extern "C" { - -static PyObject *shit(PyObject *self, PyObject *args) -{ - if (!PyArg_ParseTuple(args, ":shit")) - return NULL; - - printf("SHIT CALLED!@!\n"); - - Py_INCREF(Py_None); - return Py_None; +#include } - +namespace ob { -static PyMethodDef OBMethods[] = { - {"shit", shit, METH_VARARGS, - "Do some shit, yo!"}, - -/* {"get_client_dict", get_client_dict, METH_VARARGS, - "Get the list of all clients"},*/ - - {NULL, NULL, 0, NULL} -}; +void python_init(char *argv0) +{ + // start the python engine + Py_SetProgramName(argv0); + Py_Initialize(); + // prepend the openbox directories for python scripts to the sys path + PyRun_SimpleString("import sys"); + PyRun_SimpleString("sys.path.insert(0, '" SCRIPTDIR "')"); + PyRun_SimpleString(const_cast(("sys.path.insert(0, '" + + otk::expandTilde("~/.openbox/python") + + "')").c_str())); +} -void initopenbox() +void python_destroy() { - Py_InitModule("openbox", OBMethods); + Py_Finalize(); } + +bool python_exec(const std::string &path) +{ + FILE *rcpyfd = fopen(path.c_str(), "r"); + if (!rcpyfd) { + printf("Failed to load python file %s\n", path.c_str()); + return false; + } + PyRun_SimpleFile(rcpyfd, const_cast(path.c_str())); + fclose(rcpyfd); + return true; } }