]> Dogcows Code - chaz/openbox/blob - src/python.cc
conflicts with python too :\
[chaz/openbox] / src / python.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #include "python.hh"
4
5 #include <vector>
6 #include <algorithm>
7
8 namespace ob {
9
10 typedef std::vector<PyObject*> FunctionList;
11
12 static FunctionList callbacks[OBActions::NUM_ACTIONS];
13
14 bool python_register(int action, PyObject *callback)
15 {
16 if (action < 0 || action >= OBActions::NUM_ACTIONS) {
17 PyErr_SetString(PyExc_AssertionError, "Invalid action type.");
18 return false;
19 }
20 if (!PyCallable_Check(callback)) {
21 PyErr_SetString(PyExc_AssertionError, "Invalid callback function.");
22 return false;
23 }
24
25 FunctionList::iterator it = std::find(callbacks[action].begin(),
26 callbacks[action].end(),
27 callback);
28 if (it == callbacks[action].end()) { // not already in there
29 Py_XINCREF(callback); // Add a reference to new callback
30 callbacks[action].push_back(callback);
31 }
32 return true;
33 }
34
35 bool python_unregister(int action, PyObject *callback)
36 {
37 if (action < 0 || action >= OBActions::NUM_ACTIONS) {
38 PyErr_SetString(PyExc_AssertionError, "Invalid action type.");
39 return false;
40 }
41 if (!PyCallable_Check(callback)) {
42 PyErr_SetString(PyExc_AssertionError, "Invalid callback function.");
43 return false;
44 }
45
46 FunctionList::iterator it = std::find(callbacks[action].begin(),
47 callbacks[action].end(),
48 callback);
49 if (it != callbacks[action].end()) { // its been registered before
50 Py_XDECREF(*it); // Dispose of previous callback
51 callbacks[action].erase(it);
52 }
53 return true;
54 }
55
56 void python_callback(OBActions::ActionType action, Window window,
57 OBWidget::WidgetType type, unsigned int state,
58 long d1, long d2, long d3, long d4)
59 {
60 PyObject *arglist;
61 PyObject *result;
62
63 assert(action >= 0 && action < OBActions::NUM_ACTIONS);
64
65 if (d4 != LONG_MIN)
66 arglist = Py_BuildValue("iliillll", action, window, type, state,
67 d1, d2, d3, d4);
68 else if (d3 != LONG_MIN)
69 arglist = Py_BuildValue("iliilll", action, window, type, state,
70 d1, d2, d3);
71 else if (d2 != LONG_MIN)
72 arglist = Py_BuildValue("iliill", action, window, type, state, d1, d2);
73 else if (d1 != LONG_MIN)
74 arglist = Py_BuildValue("iliil", action, window, type, state, d1);
75 else
76 arglist = Py_BuildValue("ilii", action, window, type, state);
77
78 FunctionList::iterator it, end = callbacks[action].end();
79 for (it = callbacks[action].begin(); it != end; ++it) {
80 // call the callback
81 result = PyEval_CallObject(*it, arglist);
82 if (result) {
83 Py_DECREF(result);
84 } else {
85 // an exception occured in the script, display it
86 PyErr_Print();
87 }
88 }
89
90 Py_DECREF(arglist);
91 }
92
93 }
This page took 0.040863 seconds and 4 git commands to generate.