some python import cleanups
[vuplus_dvbapp] / lib / actions / action.cpp
1 #include <lib/actions/action.h>
2 #include <lib/base/init.h>
3 #include <lib/base/init_num.h>
4 #include <lib/actions/actionids.h>
5
6 /*
7
8   THIS CODE SUCKS.
9
10 we need:
11  - contexts that aren't compared as strings,
12  - maybe a lookup "device,key,flags" -> actions? (lazy validation, on bindAction)
13  - devices as ids
14  - seperate native from python keys? (currently, if an action wasn't found, it's ignored.)
15  
16 Sorry. I spent 3 days on thinking how this could be made better, and it just DID NOT WORKED OUT.
17
18 If you have a better idea, please tell me.
19
20  */
21
22 DEFINE_REF(eActionMap);
23
24 eActionMap *eActionMap::instance;
25
26 eActionMap::eActionMap()
27 {
28         instance = this;
29 }
30
31 eActionMap::~eActionMap()
32 {
33         instance = 0;
34 }
35
36 RESULT eActionMap::getInstance(ePtr<eActionMap> &ptr)
37 {
38         ptr = instance;
39         if (!ptr)
40                 return -1;
41         return 0;
42 }
43
44 void eActionMap::bindAction(const std::string &context, int priority, int id, eWidget *widget)
45 {
46         eActionBinding bnd;
47         
48         bnd.m_context = context;
49         bnd.m_widget = widget;
50         bnd.m_id = id;
51         m_bindings.insert(std::pair<int,eActionBinding>(priority, bnd));
52 }
53
54 void eActionMap::bindAction(const std::string &context, int priority, ePyObject function)
55 {
56         eActionBinding bnd;
57         
58         bnd.m_context = context;
59         bnd.m_widget = 0;
60         Py_INCREF(function);
61         bnd.m_fnc = function;
62         m_bindings.insert(std::pair<int,eActionBinding>(priority, bnd));
63 }
64
65 void eActionMap::unbindAction(eWidget *widget, int id)
66 {
67         for (std::multimap<int, eActionBinding>::iterator i(m_bindings.begin()); i != m_bindings.end(); ++i)
68                 if ((i->second.m_widget == widget) && (i->second.m_id == id))
69                 {
70                         m_bindings.erase(i);
71                         return;
72                 }
73 }
74
75 void eActionMap::unbindAction(const std::string &context, ePyObject function)
76 {
77         for (std::multimap<int, eActionBinding>::iterator i(m_bindings.begin()); i != m_bindings.end(); ++i)
78         {
79                 if (i->second.m_fnc && (PyObject_Compare(i->second.m_fnc, function) == 0))
80                 {
81                         Py_DECREF(i->second.m_fnc);
82                         m_bindings.erase(i);
83                         return;
84                 }
85         }
86         eFatal("unbindAction with illegal python reference");
87 }
88
89
90 void eActionMap::bindKey(const std::string &device, int key, int flags, const std::string &context, const std::string &action)
91 {
92                 // first, search the actionlist table
93         unsigned int i;
94         for (i=0; i<sizeof(actions)/sizeof(*actions); ++i)
95         {
96                 if ((actions[i].m_context == context) && (actions[i].m_action == action))
97                 {
98                                 // we found a native action.
99                         eNativeKeyBinding bind;
100                         bind.m_device = device;
101                         bind.m_key = key;
102                         bind.m_flags = flags;
103                         bind.m_action = actions[i].m_id;
104                         m_native_keys.insert(std::pair<std::string,eNativeKeyBinding>(context, bind));
105                         return;
106                 }
107         }
108         
109                 // we didn't find the action, so it must be a pythonAction
110         ePythonKeyBinding bind;
111
112         bind.m_device = device;
113         bind.m_key = key;
114         bind.m_flags = flags;
115         bind.m_action = action;
116         m_python_keys.insert(std::pair<std::string,ePythonKeyBinding>(context, bind));
117 }
118
119 struct call_entry
120 {
121         ePyObject m_fnc, m_arg;
122         eWidget *m_widget;
123         void *m_widget_arg, *m_widget_arg2;
124         call_entry(ePyObject fnc, ePyObject arg): m_fnc(fnc), m_arg(arg), m_widget(0), m_widget_arg(0) { }
125         call_entry(eWidget *widget, void *arg, void *arg2): m_widget(widget), m_widget_arg(arg), m_widget_arg2(arg2) { }
126 };
127
128 void eActionMap::keyPressed(const std::string &device, int key, int flags)
129 {
130         std::list<call_entry> call_list;
131         
132                 /* iterate active contexts. */
133         for (std::multimap<int,eActionBinding>::const_iterator c(m_bindings.begin()); c != m_bindings.end();)
134         {
135                 std::multimap<int,eActionBinding>::const_iterator i = c;
136                 ++c;
137                         /* is this a native context? */
138                 if (i->second.m_widget)
139                 {
140                                 /* is this a named context, i.e. not the wildcard? */
141                         if (i->second.m_context.size())
142                         {
143                                 std::multimap<std::string,eNativeKeyBinding>::const_iterator
144                                         k = m_native_keys.lower_bound(i->second.m_context),
145                                         e = m_native_keys.upper_bound(i->second.m_context);
146                                 
147                                 for (; k != e; ++k)
148                                 {
149                                         if (
150                                                         (k->second.m_key == key) &&
151                                                         (k->second.m_flags & (1<<flags)) &&
152                                                   ((k->second.m_device == device) || (k->second.m_device == "generic"))
153                                                   )
154                                                 call_list.push_back(call_entry(i->second.m_widget, (void*)i->second.m_id, (void*)k->second.m_action));
155                                 }
156                         } else
157                         {
158                                         /* wildcard - get any keys. */
159                                 if (i->second.m_widget->event(eWidget::evtKey, (void*)key, (void*)flags))
160                                         return;
161                         }
162                 } else if (i->second.m_fnc)
163                 {
164                         if (i->second.m_context.size())
165                         {
166                                 std::multimap<std::string,ePythonKeyBinding>::const_iterator
167                                         k = m_python_keys.lower_bound(i->second.m_context),
168                                         e = m_python_keys.upper_bound(i->second.m_context);
169                                 
170                                 for (; k != e;)
171                                 {
172                                         if (
173                                                 (k->second.m_key == key) &&
174                                                 (k->second.m_flags & (1<<flags)) &&
175                                                 ((k->second.m_device == device) || (k->second.m_device == "generic"))
176                                                 )
177                                         {
178                                                 ePyObject pArgs = PyTuple_New(2);
179                                                 PyTuple_SET_ITEM(pArgs, 0, PyString_FromString(k->first.c_str()));
180                                                 PyTuple_SET_ITEM(pArgs, 1, PyString_FromString(k->second.m_action.c_str()));
181                                                 ++k;
182                                                 Py_INCREF(i->second.m_fnc);
183                                                 call_list.push_back(call_entry(i->second.m_fnc, pArgs));
184                                         } else
185                                                 ++k;
186                                 }
187                         } else
188                         {
189                                 eDebug("wildcard.");
190                                 ePyObject pArgs = PyTuple_New(2);
191                                 PyTuple_SET_ITEM(pArgs, 0, PyInt_FromLong(key));
192                                 PyTuple_SET_ITEM(pArgs, 1, PyInt_FromLong(flags));
193                                 Py_INCREF(i->second.m_fnc);
194                                 call_list.push_back(call_entry(i->second.m_fnc, pArgs));
195                         }
196                 }
197         }
198
199         int res = 0;
200                         /* we need to iterate over all to not loose a reference */
201         for (std::list<call_entry>::iterator i(call_list.begin()); i != call_list.end(); ++i)
202         {
203                 if (i->m_fnc)
204                 {
205                         if (!res)
206                                 res = ePython::call(i->m_fnc, i->m_arg);
207                         Py_DECREF(i->m_fnc);
208                         Py_DECREF(i->m_arg);
209                 } else if (i->m_widget)
210                 {
211                         if (!res)
212                                 res = i->m_widget->event(eWidget::evtAction, (void*)i->m_widget_arg, (void*)i->m_widget_arg2 );
213                 }
214         }
215 }
216
217 ePtr<eActionMap> NewActionMapPtr(void)
218 {
219         ePtr<eActionMap> ptr;
220         eActionMap::getInstance(ptr);
221         return ptr;
222 }
223
224 eAutoInitPtr<eActionMap> init_eActionMap(eAutoInitNumbers::actions, "eActionMap");