]>
Commit | Line | Data |
---|---|---|
7bf85405 RD |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: helpers.cpp | |
03e9bead | 3 | // Purpose: Helper functions/classes for the wxPython extension module |
7bf85405 RD |
4 | // |
5 | // Author: Robin Dunn | |
6 | // | |
7 | // Created: 7/1/97 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 1998 by Total Control Software | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
694759cf | 13 | #include <stdio.h> // get the correct definition of NULL |
08127323 | 14 | |
7bf85405 RD |
15 | #undef DEBUG |
16 | #include <Python.h> | |
17 | #include "helpers.h" | |
cbf60e09 | 18 | #include "pyistream.h" |
694759cf | 19 | |
af309447 RD |
20 | #ifdef __WXMSW__ |
21 | #include <wx/msw/private.h> | |
78b57918 | 22 | #include <wx/msw/winundef.h> |
4268f798 | 23 | #include <wx/msw/msvcrt.h> |
af309447 | 24 | #endif |
694759cf RD |
25 | |
26 | #ifdef __WXGTK__ | |
27 | #include <gtk/gtk.h> | |
54b96882 RD |
28 | #include <gdk/gdkprivate.h> |
29 | #include <wx/gtk/win_gtk.h> | |
694759cf | 30 | #endif |
7bf85405 | 31 | |
cf694132 | 32 | |
c8bc7bb8 RD |
33 | //---------------------------------------------------------------------- |
34 | ||
35 | #if PYTHON_API_VERSION <= 1007 && wxUSE_UNICODE | |
36 | #error Python must support Unicode to use wxWindows Unicode | |
37 | #endif | |
38 | ||
4268f798 RD |
39 | //---------------------------------------------------------------------- |
40 | ||
1893b029 RD |
41 | #ifdef __WXGTK__ |
42 | int WXDLLEXPORT wxEntryStart( int& argc, char** argv ); | |
43 | #else | |
4268f798 | 44 | int WXDLLEXPORT wxEntryStart( int argc, char** argv ); |
1893b029 | 45 | #endif |
4268f798 RD |
46 | int WXDLLEXPORT wxEntryInitGui(); |
47 | void WXDLLEXPORT wxEntryCleanup(); | |
48 | ||
49 | wxPyApp* wxPythonApp = NULL; // Global instance of application object | |
e3dbf593 | 50 | bool wxPyDoCleanup = FALSE; |
4268f798 RD |
51 | |
52 | ||
53 | #ifdef WXP_WITH_THREAD | |
54 | struct wxPyThreadState { | |
55 | unsigned long tid; | |
56 | PyThreadState* tstate; | |
57 | ||
58 | wxPyThreadState(unsigned long _tid=0, PyThreadState* _tstate=NULL) | |
59 | : tid(_tid), tstate(_tstate) {} | |
60 | }; | |
61 | ||
62 | #include <wx/dynarray.h> | |
63 | WX_DECLARE_OBJARRAY(wxPyThreadState, wxPyThreadStateArray); | |
64 | #include <wx/arrimpl.cpp> | |
65 | WX_DEFINE_OBJARRAY(wxPyThreadStateArray); | |
66 | ||
67 | wxPyThreadStateArray* wxPyTStates = NULL; | |
68 | wxMutex* wxPyTMutex = NULL; | |
69 | #endif | |
7bf85405 RD |
70 | |
71 | ||
21f4bf45 | 72 | #ifdef __WXMSW__ // If building for win32... |
21f4bf45 RD |
73 | //---------------------------------------------------------------------- |
74 | // This gets run when the DLL is loaded. We just need to save a handle. | |
75 | //---------------------------------------------------------------------- | |
9c039d08 | 76 | |
21f4bf45 RD |
77 | BOOL WINAPI DllMain( |
78 | HINSTANCE hinstDLL, // handle to DLL module | |
79 | DWORD fdwReason, // reason for calling function | |
80 | LPVOID lpvReserved // reserved | |
81 | ) | |
82 | { | |
a2426843 RD |
83 | // If wxPython is embedded in another wxWindows app then |
84 | // the inatance has already been set. | |
85 | if (! wxGetInstance()) | |
86 | wxSetInstance(hinstDLL); | |
87 | return TRUE; | |
21f4bf45 RD |
88 | } |
89 | #endif | |
90 | ||
7bf85405 | 91 | //---------------------------------------------------------------------- |
4268f798 | 92 | // Classes for implementing the wxp main application shell. |
7bf85405 RD |
93 | //---------------------------------------------------------------------- |
94 | ||
7bf85405 | 95 | |
cf694132 RD |
96 | wxPyApp::wxPyApp() { |
97 | // printf("**** ctor\n"); | |
98 | } | |
99 | ||
100 | wxPyApp::~wxPyApp() { | |
101 | // printf("**** dtor\n"); | |
102 | } | |
103 | ||
104 | ||
7bf85405 | 105 | // This one isn't acutally called... See __wxStart() |
4268f798 | 106 | bool wxPyApp::OnInit() { |
6999b0d8 | 107 | return FALSE; |
7bf85405 RD |
108 | } |
109 | ||
4268f798 RD |
110 | |
111 | int wxPyApp::MainLoop() { | |
7ff49f0c | 112 | int retval = 0; |
af309447 | 113 | |
7ff49f0c | 114 | DeletePendingObjects(); |
4268f798 | 115 | bool initialized = wxTopLevelWindows.GetCount() != 0; |
7ff49f0c | 116 | #ifdef __WXGTK__ |
4268f798 | 117 | m_initialized = initialized; |
7ff49f0c | 118 | #endif |
7bf85405 | 119 | |
4268f798 | 120 | if (initialized) { |
7ff49f0c | 121 | retval = wxApp::MainLoop(); |
4268f798 | 122 | OnExit(); |
7ff49f0c RD |
123 | } |
124 | return retval; | |
125 | } | |
7bf85405 RD |
126 | |
127 | ||
4268f798 | 128 | |
fb5e0af0 | 129 | //--------------------------------------------------------------------- |
7bf85405 RD |
130 | //---------------------------------------------------------------------- |
131 | ||
a541c325 RD |
132 | |
133 | static char* wxPyCopyCString(const wxChar* src) | |
134 | { | |
135 | wxWX2MBbuf buff = (wxWX2MBbuf)wxConvCurrent->cWX2MB(src); | |
136 | size_t len = strlen(buff); | |
137 | char* dest = new char[len+1]; | |
138 | strcpy(dest, buff); | |
139 | return dest; | |
140 | } | |
141 | ||
c8bc7bb8 | 142 | #if wxUSE_UNICODE |
a541c325 | 143 | static char* wxPyCopyCString(const char* src) // we need a char version too |
c8bc7bb8 | 144 | { |
a541c325 RD |
145 | size_t len = strlen(src); |
146 | char* dest = new char[len+1]; | |
147 | strcpy(dest, src); | |
148 | return dest; | |
c8bc7bb8 | 149 | } |
a541c325 | 150 | #endif |
c8bc7bb8 | 151 | |
a541c325 | 152 | static wxChar* wxPyCopyWString(const char *src) |
c8bc7bb8 | 153 | { |
a541c325 RD |
154 | //wxMB2WXbuf buff = wxConvCurrent->cMB2WX(src); |
155 | wxString str(src, *wxConvCurrent); | |
156 | return copystring(str); | |
c8bc7bb8 RD |
157 | } |
158 | ||
a541c325 RD |
159 | #if wxUSE_UNICODE |
160 | static wxChar* wxPyCopyWString(const wxChar *src) | |
c8bc7bb8 | 161 | { |
a541c325 | 162 | return copystring(src); |
c8bc7bb8 RD |
163 | } |
164 | #endif | |
f6bcfd97 | 165 | |
a541c325 RD |
166 | |
167 | //---------------------------------------------------------------------- | |
168 | ||
0d6f9504 | 169 | // This is where we pick up the first part of the wxEntry functionality... |
f6bcfd97 | 170 | // The rest is in __wxStart and __wxCleanup. This function is called when |
8bf5d46e | 171 | // wxcmodule is imported. (Before there is a wxApp object.) |
0d6f9504 | 172 | void __wxPreStart() |
7bf85405 | 173 | { |
de20db99 RD |
174 | |
175 | #ifdef __WXMSW__ | |
44f68505 | 176 | // wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF); |
de20db99 RD |
177 | #endif |
178 | ||
9d8bd15f | 179 | #ifdef WXP_WITH_THREAD |
1112b0c6 | 180 | PyEval_InitThreads(); |
4268f798 RD |
181 | wxPyTStates = new wxPyThreadStateArray; |
182 | wxPyTMutex = new wxMutex; | |
9d8bd15f RD |
183 | #endif |
184 | ||
0b85cc38 RD |
185 | wxApp::CheckBuildOptions(wxBuildOptions()); |
186 | ||
a2426843 | 187 | // Bail out if there is already a wxApp created. This means that the |
0d6f9504 | 188 | // toolkit has already been initialized, as in embedding wxPython in |
a2426843 RD |
189 | // a C++ wxWindows app, so we don't need to call wxEntryStart. |
190 | if (wxTheApp != NULL) { | |
0d6f9504 | 191 | return; |
a2426843 | 192 | } |
e3dbf593 | 193 | wxPyDoCleanup = TRUE; |
7ff49f0c | 194 | |
9416aa89 RD |
195 | int argc = 0; |
196 | char** argv = NULL; | |
7ff49f0c | 197 | PyObject* sysargv = PySys_GetObject("argv"); |
9416aa89 RD |
198 | if (sysargv != NULL) { |
199 | argc = PyList_Size(sysargv); | |
200 | argv = new char*[argc+1]; | |
201 | int x; | |
c8bc7bb8 RD |
202 | for(x=0; x<argc; x++) { |
203 | PyObject *item = PyList_GetItem(sysargv, x); | |
204 | #if wxUSE_UNICODE | |
205 | if (PyUnicode_Check(item)) | |
a541c325 RD |
206 | argv[x] = wxPyCopyCString(PyUnicode_AS_UNICODE(item)); |
207 | else | |
c8bc7bb8 | 208 | #endif |
a541c325 | 209 | argv[x] = wxPyCopyCString(PyString_AsString(item)); |
c8bc7bb8 | 210 | } |
9416aa89 RD |
211 | argv[argc] = NULL; |
212 | } | |
7bf85405 | 213 | |
7ff49f0c | 214 | wxEntryStart(argc, argv); |
f6bcfd97 | 215 | delete [] argv; |
0d6f9504 RD |
216 | } |
217 | ||
218 | ||
7ff49f0c | 219 | |
0d6f9504 RD |
220 | // Start the user application, user App's OnInit method is a parameter here |
221 | PyObject* __wxStart(PyObject* /* self */, PyObject* args) | |
222 | { | |
223 | PyObject* onInitFunc = NULL; | |
224 | PyObject* arglist; | |
225 | PyObject* result; | |
226 | long bResult; | |
227 | ||
0d6f9504 RD |
228 | if (!PyArg_ParseTuple(args, "O", &onInitFunc)) |
229 | return NULL; | |
230 | ||
83b18bab | 231 | #if 0 // Try it out without this check, see how it does... |
0d6f9504 RD |
232 | if (wxTopLevelWindows.Number() > 0) { |
233 | PyErr_SetString(PyExc_TypeError, "Only 1 wxApp per process!"); | |
234 | return NULL; | |
235 | } | |
de20db99 | 236 | #endif |
0d6f9504 RD |
237 | |
238 | // This is the next part of the wxEntry functionality... | |
9416aa89 | 239 | int argc = 0; |
c8bc7bb8 | 240 | wxChar** argv = NULL; |
f6bcfd97 | 241 | PyObject* sysargv = PySys_GetObject("argv"); |
9416aa89 RD |
242 | if (sysargv != NULL) { |
243 | argc = PyList_Size(sysargv); | |
c8bc7bb8 | 244 | argv = new wxChar*[argc+1]; |
9416aa89 | 245 | int x; |
c8bc7bb8 RD |
246 | for(x=0; x<argc; x++) { |
247 | PyObject *pyArg = PyList_GetItem(sysargv, x); | |
248 | #if wxUSE_UNICODE | |
a541c325 RD |
249 | if (PyUnicode_Check(pyArg)) |
250 | argv[x] = wxPyCopyWString(PyUnicode_AS_UNICODE(pyArg)); | |
251 | else | |
c8bc7bb8 | 252 | #endif |
a541c325 | 253 | argv[x] = wxPyCopyWString(PyString_AsString(pyArg)); |
c8bc7bb8 | 254 | } |
9416aa89 RD |
255 | argv[argc] = NULL; |
256 | } | |
c8bc7bb8 | 257 | |
f6bcfd97 BP |
258 | wxPythonApp->argc = argc; |
259 | wxPythonApp->argv = argv; | |
0d6f9504 | 260 | |
7ff49f0c | 261 | wxEntryInitGui(); |
7bf85405 RD |
262 | |
263 | // Call the Python App's OnInit function | |
264 | arglist = PyTuple_New(0); | |
265 | result = PyEval_CallObject(onInitFunc, arglist); | |
8bf5d46e RD |
266 | if (!result) { // an exception was raised. |
267 | return NULL; | |
7bf85405 RD |
268 | } |
269 | ||
270 | if (! PyInt_Check(result)) { | |
271 | PyErr_SetString(PyExc_TypeError, "OnInit should return a boolean value"); | |
272 | return NULL; | |
273 | } | |
274 | bResult = PyInt_AS_LONG(result); | |
275 | if (! bResult) { | |
194fa2ac | 276 | PyErr_SetString(PyExc_SystemExit, "OnInit returned FALSE, exiting..."); |
7bf85405 RD |
277 | return NULL; |
278 | } | |
279 | ||
13dfc243 | 280 | #ifdef __WXGTK__ |
7ff49f0c | 281 | wxTheApp->m_initialized = (wxTopLevelWindows.GetCount() > 0); |
13dfc243 | 282 | #endif |
fb5e0af0 | 283 | |
7bf85405 RD |
284 | Py_INCREF(Py_None); |
285 | return Py_None; | |
286 | } | |
287 | ||
4268f798 | 288 | |
7ff49f0c | 289 | void __wxCleanup() { |
e3dbf593 RD |
290 | if (wxPyDoCleanup) |
291 | wxEntryCleanup(); | |
7faa9591 | 292 | #ifdef WXP_WITH_THREAD |
4268f798 RD |
293 | delete wxPyTMutex; |
294 | wxPyTMutex = NULL; | |
295 | wxPyTStates->Empty(); | |
296 | delete wxPyTStates; | |
297 | wxPyTStates = NULL; | |
7faa9591 | 298 | #endif |
7ff49f0c | 299 | } |
7bf85405 RD |
300 | |
301 | ||
302 | ||
9416aa89 RD |
303 | static PyObject* wxPython_dict = NULL; |
304 | static PyObject* wxPyPtrTypeMap = NULL; | |
305 | ||
4acff284 | 306 | |
7bf85405 RD |
307 | PyObject* __wxSetDictionary(PyObject* /* self */, PyObject* args) |
308 | { | |
309 | ||
310 | if (!PyArg_ParseTuple(args, "O", &wxPython_dict)) | |
311 | return NULL; | |
312 | ||
313 | if (!PyDict_Check(wxPython_dict)) { | |
314 | PyErr_SetString(PyExc_TypeError, "_wxSetDictionary must have dictionary object!"); | |
315 | return NULL; | |
316 | } | |
9416aa89 RD |
317 | |
318 | if (! wxPyPtrTypeMap) | |
319 | wxPyPtrTypeMap = PyDict_New(); | |
320 | PyDict_SetItemString(wxPython_dict, "__wxPyPtrTypeMap", wxPyPtrTypeMap); | |
321 | ||
322 | ||
7bf85405 | 323 | #ifdef __WXMOTIF__ |
21f4bf45 RD |
324 | #define wxPlatform "__WXMOTIF__" |
325 | #endif | |
be43cc44 RD |
326 | #ifdef __WXX11__ |
327 | #define wxPlatform "__WXX11__" | |
7bf85405 RD |
328 | #endif |
329 | #ifdef __WXGTK__ | |
21f4bf45 | 330 | #define wxPlatform "__WXGTK__" |
7bf85405 RD |
331 | #endif |
332 | #if defined(__WIN32__) || defined(__WXMSW__) | |
fb5e0af0 | 333 | #define wxPlatform "__WXMSW__" |
7bf85405 RD |
334 | #endif |
335 | #ifdef __WXMAC__ | |
21f4bf45 | 336 | #define wxPlatform "__WXMAC__" |
7bf85405 RD |
337 | #endif |
338 | ||
339 | PyDict_SetItemString(wxPython_dict, "wxPlatform", PyString_FromString(wxPlatform)); | |
c8bc7bb8 RD |
340 | PyDict_SetItemString(wxPython_dict, "wxUSE_UNICODE", PyInt_FromLong(wxUSE_UNICODE)); |
341 | ||
7bf85405 RD |
342 | Py_INCREF(Py_None); |
343 | return Py_None; | |
344 | } | |
345 | ||
4acff284 RD |
346 | //--------------------------------------------------------------------------- |
347 | ||
348 | void wxPyClientData_dtor(wxPyClientData* self) { | |
349 | wxPyBeginBlockThreads(); | |
350 | Py_DECREF(self->m_obj); | |
351 | wxPyEndBlockThreads(); | |
352 | } | |
353 | ||
354 | void wxPyUserData_dtor(wxPyUserData* self) { | |
355 | wxPyBeginBlockThreads(); | |
356 | Py_DECREF(self->m_obj); | |
357 | wxPyEndBlockThreads(); | |
358 | } | |
359 | ||
360 | ||
361 | // This is called when an OOR controled object is being destroyed. Although | |
362 | // the C++ object is going away there is no way to force the Python object | |
363 | // (and all references to it) to die too. This causes problems (crashes) in | |
364 | // wxPython when a python shadow object attempts to call a C++ method using | |
365 | // the now bogus pointer... So to try and prevent this we'll do a little black | |
366 | // magic and change the class of the python instance to a class that will | |
367 | // raise an exception for any attempt to call methods with it. See | |
368 | // _wxPyDeadObject in _extras.py for the implementation of this class. | |
369 | void wxPyOORClientData_dtor(wxPyOORClientData* self) { | |
370 | ||
371 | static PyObject* deadObjectClass = NULL; | |
372 | ||
373 | wxPyBeginBlockThreads(); | |
374 | if (deadObjectClass == NULL) { | |
375 | deadObjectClass = PyDict_GetItemString(wxPython_dict, "_wxPyDeadObject"); | |
376 | wxASSERT_MSG(deadObjectClass != NULL, wxT("Can't get _wxPyDeadObject class!")); | |
377 | Py_INCREF(deadObjectClass); | |
378 | } | |
379 | ||
380 | // Clear the instance's dictionary, put the name of the old class into the | |
381 | // instance, and then reset the class to be the dead class. | |
382 | if (self->m_obj->ob_refcnt > 1) { // but only if there is more than one reference | |
383 | wxASSERT_MSG(PyInstance_Check(self->m_obj), wxT("m_obj not an instance!?!?!")); | |
384 | PyInstanceObject* inst = (PyInstanceObject*)self->m_obj; | |
385 | PyDict_Clear(inst->in_dict); | |
386 | PyDict_SetItemString(inst->in_dict, "_name", inst->in_class->cl_name); | |
387 | inst->in_class = (PyClassObject*)deadObjectClass; | |
388 | Py_INCREF(deadObjectClass); | |
389 | } | |
390 | wxPyEndBlockThreads(); | |
391 | } | |
7bf85405 | 392 | |
9416aa89 RD |
393 | //--------------------------------------------------------------------------- |
394 | // Stuff used by OOR to find the right wxPython class type to return and to | |
395 | // build it. | |
396 | ||
397 | ||
398 | // The pointer type map is used when the "pointer" type name generated by SWIG | |
399 | // is not the same as the shadow class name, for example wxPyTreeCtrl | |
400 | // vs. wxTreeCtrl. It needs to be referenced in Python as well as from C++, | |
401 | // so we'll just make it a Python dictionary in the wx module's namespace. | |
4acff284 | 402 | // (See __wxSetDictionary) |
9416aa89 RD |
403 | void wxPyPtrTypeMap_Add(const char* commonName, const char* ptrName) { |
404 | if (! wxPyPtrTypeMap) | |
405 | wxPyPtrTypeMap = PyDict_New(); | |
9416aa89 RD |
406 | PyDict_SetItemString(wxPyPtrTypeMap, |
407 | (char*)commonName, | |
408 | PyString_FromString((char*)ptrName)); | |
409 | } | |
410 | ||
411 | ||
412 | ||
a541c325 | 413 | PyObject* wxPyClassExists(const wxString& className) { |
9416aa89 RD |
414 | |
415 | if (!className) | |
416 | return NULL; | |
417 | ||
418 | char buff[64]; // should always be big enough... | |
419 | ||
a541c325 | 420 | sprintf(buff, "%sPtr", className.mbc_str()); |
9416aa89 RD |
421 | PyObject* classobj = PyDict_GetItemString(wxPython_dict, buff); |
422 | ||
423 | return classobj; // returns NULL if not found | |
424 | } | |
425 | ||
426 | ||
2f4e9287 | 427 | PyObject* wxPyMake_wxObject(wxObject* source, bool checkEvtHandler) { |
0122b7e3 RD |
428 | PyObject* target = NULL; |
429 | bool isEvtHandler = FALSE; | |
9416aa89 RD |
430 | |
431 | if (source) { | |
2aab8f16 | 432 | // If it's derived from wxEvtHandler then there may |
2f4e9287 RD |
433 | // already be a pointer to a Python object that we can use |
434 | // in the OOR data. | |
435 | if (checkEvtHandler && wxIsKindOf(source, wxEvtHandler)) { | |
436 | isEvtHandler = TRUE; | |
0122b7e3 | 437 | wxEvtHandler* eh = (wxEvtHandler*)source; |
4acff284 | 438 | wxPyOORClientData* data = (wxPyOORClientData*)eh->GetClientObject(); |
0122b7e3 RD |
439 | if (data) { |
440 | target = data->m_obj; | |
441 | Py_INCREF(target); | |
442 | } | |
9416aa89 | 443 | } |
0122b7e3 RD |
444 | |
445 | if (! target) { | |
2aab8f16 RD |
446 | // Otherwise make it the old fashioned way by making a |
447 | // new shadow object and putting this pointer in it. | |
0122b7e3 RD |
448 | wxClassInfo* info = source->GetClassInfo(); |
449 | wxChar* name = (wxChar*)info->GetClassName(); | |
450 | PyObject* klass = wxPyClassExists(name); | |
451 | while (info && !klass) { | |
452 | name = (wxChar*)info->GetBaseClassName1(); | |
453 | info = wxClassInfo::FindClass(name); | |
454 | klass = wxPyClassExists(name); | |
455 | } | |
456 | if (info) { | |
457 | target = wxPyConstructObject(source, name, klass, FALSE); | |
458 | if (target && isEvtHandler) | |
4acff284 | 459 | ((wxEvtHandler*)source)->SetClientObject(new wxPyOORClientData(target)); |
0122b7e3 | 460 | } else { |
4acff284 | 461 | wxString msg(wxT("wxPython class not found for ")); |
0122b7e3 | 462 | msg += source->GetClassInfo()->GetClassName(); |
a541c325 | 463 | PyErr_SetString(PyExc_NameError, msg.mbc_str()); |
0122b7e3 RD |
464 | target = NULL; |
465 | } | |
9416aa89 RD |
466 | } |
467 | } else { // source was NULL so return None. | |
468 | Py_INCREF(Py_None); target = Py_None; | |
469 | } | |
470 | return target; | |
471 | } | |
472 | ||
0122b7e3 | 473 | |
2f4e9287 RD |
474 | PyObject* wxPyMake_wxSizer(wxSizer* source) { |
475 | PyObject* target = NULL; | |
476 | ||
477 | if (source && wxIsKindOf(source, wxSizer)) { | |
478 | // If it's derived from wxSizer then there may | |
479 | // already be a pointer to a Python object that we can use | |
480 | // in the OOR data. | |
481 | wxSizer* sz = (wxSizer*)source; | |
4acff284 | 482 | wxPyOORClientData* data = (wxPyOORClientData*)sz->GetClientObject(); |
2f4e9287 RD |
483 | if (data) { |
484 | target = data->m_obj; | |
485 | Py_INCREF(target); | |
486 | } | |
487 | } | |
488 | if (! target) { | |
489 | target = wxPyMake_wxObject(source, FALSE); | |
490 | if (target != Py_None) | |
4acff284 | 491 | ((wxSizer*)source)->SetClientObject(new wxPyOORClientData(target)); |
2f4e9287 RD |
492 | } |
493 | return target; | |
494 | } | |
495 | ||
496 | ||
497 | ||
7bf85405 RD |
498 | //--------------------------------------------------------------------------- |
499 | ||
c368d904 | 500 | PyObject* wxPyConstructObject(void* ptr, |
a541c325 | 501 | const wxString& className, |
9416aa89 | 502 | PyObject* klass, |
1e7ecb7b | 503 | int setThisOwn) { |
9416aa89 | 504 | |
33510773 RD |
505 | PyObject* obj; |
506 | PyObject* arg; | |
9416aa89 | 507 | PyObject* item; |
a541c325 | 508 | wxString name(className); |
9416aa89 RD |
509 | char swigptr[64]; // should always be big enough... |
510 | char buff[64]; | |
511 | ||
a541c325 RD |
512 | if ((item = PyDict_GetItemString(wxPyPtrTypeMap, (char*)(const char*)name.mbc_str())) != NULL) { |
513 | name = wxString(PyString_AsString(item), *wxConvCurrent); | |
9416aa89 | 514 | } |
a541c325 | 515 | sprintf(buff, "_%s_p", (const char*)name.mbc_str()); |
9416aa89 RD |
516 | SWIG_MakePtr(swigptr, ptr, buff); |
517 | ||
518 | arg = Py_BuildValue("(s)", swigptr); | |
519 | obj = PyInstance_New(klass, arg, NULL); | |
520 | Py_DECREF(arg); | |
521 | ||
522 | if (setThisOwn) { | |
523 | PyObject* one = PyInt_FromLong(1); | |
524 | PyObject_SetAttrString(obj, "thisown", one); | |
525 | Py_DECREF(one); | |
526 | } | |
527 | ||
528 | return obj; | |
529 | } | |
530 | ||
531 | ||
532 | PyObject* wxPyConstructObject(void* ptr, | |
a541c325 | 533 | const wxString& className, |
9416aa89 | 534 | int setThisOwn) { |
33510773 RD |
535 | if (!ptr) { |
536 | Py_INCREF(Py_None); | |
537 | return Py_None; | |
538 | } | |
539 | ||
9c039d08 | 540 | char buff[64]; // should always be big enough... |
a541c325 | 541 | sprintf(buff, "%sPtr", (const char*)className.mbc_str()); |
c5943253 | 542 | |
a541c325 | 543 | wxASSERT_MSG(wxPython_dict, wxT("wxPython_dict is not set yet!!")); |
c5943253 | 544 | |
7bf85405 RD |
545 | PyObject* classobj = PyDict_GetItemString(wxPython_dict, buff); |
546 | if (! classobj) { | |
e3dbf593 RD |
547 | wxString msg(wxT("wxPython class not found for ")); |
548 | msg += className; | |
549 | PyErr_SetString(PyExc_NameError, msg.mbc_str()); | |
550 | return NULL; | |
7bf85405 RD |
551 | } |
552 | ||
9416aa89 | 553 | return wxPyConstructObject(ptr, className, classobj, setThisOwn); |
7bf85405 RD |
554 | } |
555 | ||
a541c325 | 556 | |
d559219f | 557 | //--------------------------------------------------------------------------- |
7bf85405 | 558 | |
4958ea8f | 559 | |
cf694132 | 560 | #ifdef WXP_WITH_THREAD |
4268f798 RD |
561 | inline |
562 | unsigned long wxPyGetCurrentThreadId() { | |
4958ea8f | 563 | return wxThread::GetCurrentId(); |
4268f798 RD |
564 | } |
565 | ||
be43cc44 | 566 | static PyThreadState* gs_shutdownTState; |
4268f798 RD |
567 | static |
568 | PyThreadState* wxPyGetThreadState() { | |
be43cc44 RD |
569 | if (wxPyTMutex == NULL) // Python is shutting down... |
570 | return gs_shutdownTState; | |
571 | ||
4268f798 RD |
572 | unsigned long ctid = wxPyGetCurrentThreadId(); |
573 | PyThreadState* tstate = NULL; | |
574 | ||
575 | wxPyTMutex->Lock(); | |
576 | for(size_t i=0; i < wxPyTStates->GetCount(); i++) { | |
577 | wxPyThreadState& info = wxPyTStates->Item(i); | |
578 | if (info.tid == ctid) { | |
579 | tstate = info.tstate; | |
580 | break; | |
581 | } | |
582 | } | |
583 | wxPyTMutex->Unlock(); | |
a541c325 | 584 | wxASSERT_MSG(tstate, wxT("PyThreadState should not be NULL!")); |
4268f798 RD |
585 | return tstate; |
586 | } | |
587 | ||
588 | static | |
589 | void wxPySaveThreadState(PyThreadState* tstate) { | |
be43cc44 RD |
590 | if (wxPyTMutex == NULL) { // Python is shutting down, assume a single thread... |
591 | gs_shutdownTState = tstate; | |
592 | return; | |
593 | } | |
4268f798 RD |
594 | unsigned long ctid = wxPyGetCurrentThreadId(); |
595 | wxPyTMutex->Lock(); | |
596 | for(size_t i=0; i < wxPyTStates->GetCount(); i++) { | |
597 | wxPyThreadState& info = wxPyTStates->Item(i); | |
598 | if (info.tid == ctid) { | |
599 | info.tstate = tstate; | |
600 | wxPyTMutex->Unlock(); | |
601 | return; | |
602 | } | |
1112b0c6 | 603 | } |
4268f798 RD |
604 | // not found, so add it... |
605 | wxPyTStates->Add(new wxPyThreadState(ctid, tstate)); | |
606 | wxPyTMutex->Unlock(); | |
607 | } | |
608 | ||
609 | #endif | |
610 | ||
611 | ||
612 | // Calls from Python to wxWindows code are wrapped in calls to these | |
613 | // functions: | |
614 | ||
615 | PyThreadState* wxPyBeginAllowThreads() { | |
616 | #ifdef WXP_WITH_THREAD | |
617 | PyThreadState* saved = PyEval_SaveThread(); // Py_BEGIN_ALLOW_THREADS; | |
618 | wxPySaveThreadState(saved); | |
619 | return saved; | |
620 | #else | |
621 | return NULL; | |
622 | #endif | |
623 | } | |
624 | ||
625 | void wxPyEndAllowThreads(PyThreadState* saved) { | |
626 | #ifdef WXP_WITH_THREAD | |
627 | PyEval_RestoreThread(saved); // Py_END_ALLOW_THREADS; | |
cf694132 | 628 | #endif |
d559219f | 629 | } |
cf694132 | 630 | |
cf694132 | 631 | |
4268f798 RD |
632 | |
633 | // Calls from wxWindows back to Python code, or even any PyObject | |
634 | // manipulations, PyDECREF's and etc. are wrapped in calls to these functions: | |
635 | ||
636 | void wxPyBeginBlockThreads() { | |
cf694132 | 637 | #ifdef WXP_WITH_THREAD |
4268f798 RD |
638 | PyThreadState* tstate = wxPyGetThreadState(); |
639 | PyEval_RestoreThread(tstate); | |
640 | #endif | |
641 | } | |
642 | ||
643 | ||
644 | void wxPyEndBlockThreads() { | |
645 | #ifdef WXP_WITH_THREAD | |
646 | PyThreadState* tstate = PyEval_SaveThread(); | |
647 | // Is there any need to save it again? | |
1112b0c6 | 648 | #endif |
cf694132 RD |
649 | } |
650 | ||
19a97bd6 | 651 | |
d559219f | 652 | //--------------------------------------------------------------------------- |
f74ff5ef RD |
653 | // wxPyInputStream and wxPyCBInputStream methods |
654 | ||
f74ff5ef RD |
655 | |
656 | void wxPyInputStream::close() { | |
a541c325 | 657 | /* do nothing for now */ |
f74ff5ef RD |
658 | } |
659 | ||
660 | void wxPyInputStream::flush() { | |
a541c325 | 661 | /* do nothing for now */ |
f74ff5ef RD |
662 | } |
663 | ||
664 | bool wxPyInputStream::eof() { | |
665 | if (m_wxis) | |
666 | return m_wxis->Eof(); | |
667 | else | |
668 | return TRUE; | |
669 | } | |
670 | ||
671 | wxPyInputStream::~wxPyInputStream() { | |
672 | /* do nothing */ | |
673 | } | |
674 | ||
a541c325 RD |
675 | |
676 | ||
677 | ||
678 | PyObject* wxPyInputStream::read(int size) { | |
679 | PyObject* obj = NULL; | |
680 | wxMemoryBuffer buf; | |
f74ff5ef RD |
681 | const int BUFSIZE = 1024; |
682 | ||
683 | // check if we have a real wxInputStream to work with | |
684 | if (!m_wxis) { | |
685 | PyErr_SetString(PyExc_IOError, "no valid C-wxInputStream"); | |
686 | return NULL; | |
687 | } | |
688 | ||
689 | if (size < 0) { | |
f74ff5ef RD |
690 | // read until EOF |
691 | while (! m_wxis->Eof()) { | |
a541c325 RD |
692 | m_wxis->Read(buf.GetAppendBuf(BUFSIZE), BUFSIZE); |
693 | buf.UngetAppendBuf(m_wxis->LastRead()); | |
f74ff5ef RD |
694 | } |
695 | ||
696 | } else { // Read only size number of characters | |
a541c325 RD |
697 | m_wxis->Read(buf.GetWriteBuf(size), size); |
698 | buf.UngetWriteBuf(m_wxis->LastRead()); | |
699 | } | |
f74ff5ef | 700 | |
a541c325 RD |
701 | // error check |
702 | if (m_wxis->LastError() == wxSTREAM_READ_ERROR) { | |
703 | PyErr_SetString(PyExc_IOError,"IOError in wxInputStream"); | |
704 | } | |
705 | else { | |
706 | // We use only strings for the streams, not unicode | |
707 | obj = PyString_FromStringAndSize(buf, buf.GetDataLen()); | |
f74ff5ef | 708 | } |
a541c325 | 709 | return obj; |
f74ff5ef RD |
710 | } |
711 | ||
712 | ||
a541c325 RD |
713 | PyObject* wxPyInputStream::readline(int size) { |
714 | PyObject* obj = NULL; | |
715 | wxMemoryBuffer buf; | |
716 | int i; | |
717 | char ch; | |
718 | ||
f74ff5ef RD |
719 | // check if we have a real wxInputStream to work with |
720 | if (!m_wxis) { | |
721 | PyErr_SetString(PyExc_IOError,"no valid C-wxInputStream"); | |
722 | return NULL; | |
723 | } | |
724 | ||
f74ff5ef RD |
725 | // read until \n or byte limit reached |
726 | for (i=ch=0; (ch != '\n') && (!m_wxis->Eof()) && ((size < 0) || (i < size)); i++) { | |
a541c325 RD |
727 | ch = m_wxis->GetC(); |
728 | buf.AppendByte(ch); | |
f74ff5ef RD |
729 | } |
730 | ||
731 | // errorcheck | |
732 | if (m_wxis->LastError() == wxSTREAM_READ_ERROR) { | |
f74ff5ef | 733 | PyErr_SetString(PyExc_IOError,"IOError in wxInputStream"); |
f74ff5ef | 734 | } |
a541c325 RD |
735 | else { |
736 | // We use only strings for the streams, not unicode | |
737 | obj = PyString_FromStringAndSize((char*)buf.GetData(), buf.GetDataLen()); | |
738 | } | |
739 | return obj; | |
f74ff5ef RD |
740 | } |
741 | ||
742 | ||
a541c325 RD |
743 | PyObject* wxPyInputStream::readlines(int sizehint) { |
744 | PyObject* pylist; | |
745 | ||
f74ff5ef RD |
746 | // check if we have a real wxInputStream to work with |
747 | if (!m_wxis) { | |
748 | PyErr_SetString(PyExc_IOError,"no valid C-wxInputStream below"); | |
749 | return NULL; | |
750 | } | |
751 | ||
752 | // init list | |
a541c325 RD |
753 | pylist = PyList_New(0); |
754 | if (!pylist) { | |
f74ff5ef RD |
755 | PyErr_NoMemory(); |
756 | return NULL; | |
757 | } | |
758 | ||
759 | // read sizehint bytes or until EOF | |
760 | int i; | |
761 | for (i=0; (!m_wxis->Eof()) && ((sizehint < 0) || (i < sizehint));) { | |
a541c325 | 762 | PyObject* s = this->readline(); |
f74ff5ef | 763 | if (s == NULL) { |
a541c325 | 764 | Py_DECREF(pylist); |
f74ff5ef RD |
765 | return NULL; |
766 | } | |
a541c325 RD |
767 | PyList_Append(pylist, s); |
768 | i += PyString_Size(s); | |
f74ff5ef RD |
769 | } |
770 | ||
771 | // error check | |
772 | if (m_wxis->LastError() == wxSTREAM_READ_ERROR) { | |
a541c325 | 773 | Py_DECREF(pylist); |
f74ff5ef RD |
774 | PyErr_SetString(PyExc_IOError,"IOError in wxInputStream"); |
775 | return NULL; | |
776 | } | |
a541c325 RD |
777 | |
778 | return pylist; | |
f74ff5ef RD |
779 | } |
780 | ||
781 | ||
782 | void wxPyInputStream::seek(int offset, int whence) { | |
783 | if (m_wxis) | |
784 | m_wxis->SeekI(offset, wxSeekMode(whence)); | |
785 | } | |
786 | ||
787 | int wxPyInputStream::tell(){ | |
788 | if (m_wxis) | |
789 | return m_wxis->TellI(); | |
790 | else return 0; | |
791 | } | |
792 | ||
793 | ||
794 | ||
795 | ||
796 | wxPyCBInputStream::wxPyCBInputStream(PyObject *r, PyObject *s, PyObject *t, bool block) | |
797 | : wxInputStream(), m_read(r), m_seek(s), m_tell(t), m_block(block) | |
798 | {} | |
799 | ||
800 | ||
801 | wxPyCBInputStream::~wxPyCBInputStream() { | |
802 | if (m_block) wxPyBeginBlockThreads(); | |
803 | Py_XDECREF(m_read); | |
804 | Py_XDECREF(m_seek); | |
805 | Py_XDECREF(m_tell); | |
806 | if (m_block) wxPyEndBlockThreads(); | |
807 | } | |
808 | ||
809 | ||
810 | wxPyCBInputStream* wxPyCBInputStream::create(PyObject *py, bool block) { | |
811 | if (block) wxPyBeginBlockThreads(); | |
812 | ||
813 | PyObject* read = getMethod(py, "read"); | |
814 | PyObject* seek = getMethod(py, "seek"); | |
815 | PyObject* tell = getMethod(py, "tell"); | |
816 | ||
817 | if (!read) { | |
818 | PyErr_SetString(PyExc_TypeError, "Not a file-like object"); | |
819 | Py_XDECREF(read); | |
820 | Py_XDECREF(seek); | |
821 | Py_XDECREF(tell); | |
822 | if (block) wxPyEndBlockThreads(); | |
823 | return NULL; | |
824 | } | |
825 | ||
826 | if (block) wxPyEndBlockThreads(); | |
827 | return new wxPyCBInputStream(read, seek, tell, block); | |
828 | } | |
829 | ||
830 | PyObject* wxPyCBInputStream::getMethod(PyObject* py, char* name) { | |
831 | if (!PyObject_HasAttrString(py, name)) | |
832 | return NULL; | |
833 | PyObject* o = PyObject_GetAttrString(py, name); | |
834 | if (!PyMethod_Check(o) && !PyCFunction_Check(o)) { | |
835 | Py_DECREF(o); | |
836 | return NULL; | |
837 | } | |
838 | return o; | |
839 | } | |
840 | ||
841 | ||
842 | size_t wxPyCBInputStream::GetSize() const { | |
843 | wxPyCBInputStream* self = (wxPyCBInputStream*)this; // cast off const | |
844 | if (m_seek && m_tell) { | |
845 | off_t temp = self->OnSysTell(); | |
846 | off_t ret = self->OnSysSeek(0, wxFromEnd); | |
847 | self->OnSysSeek(temp, wxFromStart); | |
848 | return ret; | |
849 | } | |
850 | else | |
851 | return 0; | |
852 | } | |
853 | ||
854 | ||
855 | size_t wxPyCBInputStream::OnSysRead(void *buffer, size_t bufsize) { | |
856 | if (bufsize == 0) | |
857 | return 0; | |
858 | ||
859 | wxPyBeginBlockThreads(); | |
860 | PyObject* arglist = Py_BuildValue("(i)", bufsize); | |
861 | PyObject* result = PyEval_CallObject(m_read, arglist); | |
862 | Py_DECREF(arglist); | |
863 | ||
864 | size_t o = 0; | |
a541c325 | 865 | if ((result != NULL) && PyString_Check(result)) { |
f74ff5ef RD |
866 | o = PyString_Size(result); |
867 | if (o == 0) | |
868 | m_lasterror = wxSTREAM_EOF; | |
869 | if (o > bufsize) | |
870 | o = bufsize; | |
a541c325 | 871 | memcpy((char*)buffer, PyString_AsString(result), o); // strings only, not unicode... |
f74ff5ef RD |
872 | Py_DECREF(result); |
873 | ||
874 | } | |
875 | else | |
876 | m_lasterror = wxSTREAM_READ_ERROR; | |
877 | wxPyEndBlockThreads(); | |
878 | m_lastcount = o; | |
879 | return o; | |
880 | } | |
881 | ||
882 | size_t wxPyCBInputStream::OnSysWrite(const void *buffer, size_t bufsize) { | |
883 | m_lasterror = wxSTREAM_WRITE_ERROR; | |
884 | return 0; | |
885 | } | |
886 | ||
887 | off_t wxPyCBInputStream::OnSysSeek(off_t off, wxSeekMode mode) { | |
888 | wxPyBeginBlockThreads(); | |
889 | PyObject* arglist = Py_BuildValue("(ii)", off, mode); | |
890 | PyObject* result = PyEval_CallObject(m_seek, arglist); | |
891 | Py_DECREF(arglist); | |
892 | Py_XDECREF(result); | |
893 | wxPyEndBlockThreads(); | |
894 | return OnSysTell(); | |
895 | } | |
896 | ||
897 | off_t wxPyCBInputStream::OnSysTell() const { | |
898 | wxPyBeginBlockThreads(); | |
899 | PyObject* arglist = Py_BuildValue("()"); | |
900 | PyObject* result = PyEval_CallObject(m_tell, arglist); | |
901 | Py_DECREF(arglist); | |
902 | off_t o = 0; | |
903 | if (result != NULL) { | |
904 | o = PyInt_AsLong(result); | |
905 | Py_DECREF(result); | |
906 | }; | |
907 | wxPyEndBlockThreads(); | |
908 | return o; | |
909 | } | |
910 | ||
911 | //---------------------------------------------------------------------- | |
d559219f | 912 | |
2f90df85 RD |
913 | IMPLEMENT_ABSTRACT_CLASS(wxPyCallback, wxObject); |
914 | ||
d559219f RD |
915 | wxPyCallback::wxPyCallback(PyObject* func) { |
916 | m_func = func; | |
917 | Py_INCREF(m_func); | |
918 | } | |
919 | ||
2f90df85 RD |
920 | wxPyCallback::wxPyCallback(const wxPyCallback& other) { |
921 | m_func = other.m_func; | |
922 | Py_INCREF(m_func); | |
923 | } | |
924 | ||
d559219f | 925 | wxPyCallback::~wxPyCallback() { |
4268f798 | 926 | wxPyBeginBlockThreads(); |
d559219f | 927 | Py_DECREF(m_func); |
4268f798 | 928 | wxPyEndBlockThreads(); |
d559219f RD |
929 | } |
930 | ||
cf694132 RD |
931 | |
932 | ||
7bf85405 RD |
933 | // This function is used for all events destined for Python event handlers. |
934 | void wxPyCallback::EventThunker(wxEvent& event) { | |
935 | wxPyCallback* cb = (wxPyCallback*)event.m_callbackUserData; | |
936 | PyObject* func = cb->m_func; | |
937 | PyObject* result; | |
938 | PyObject* arg; | |
939 | PyObject* tuple; | |
940 | ||
cf694132 | 941 | |
4268f798 | 942 | wxPyBeginBlockThreads(); |
65dd82cb RD |
943 | wxString className = event.GetClassInfo()->GetClassName(); |
944 | ||
945 | if (className == "wxPyEvent") | |
946 | arg = ((wxPyEvent*)&event)->GetSelf(); | |
947 | else if (className == "wxPyCommandEvent") | |
948 | arg = ((wxPyCommandEvent*)&event)->GetSelf(); | |
c8bc7bb8 | 949 | else { |
a541c325 | 950 | arg = wxPyConstructObject((void*)&event, className); |
c8bc7bb8 | 951 | } |
7bf85405 RD |
952 | |
953 | tuple = PyTuple_New(1); | |
954 | PyTuple_SET_ITEM(tuple, 0, arg); | |
955 | result = PyEval_CallObject(func, tuple); | |
7bf85405 RD |
956 | Py_DECREF(tuple); |
957 | if (result) { | |
958 | Py_DECREF(result); | |
ac346f50 | 959 | PyErr_Clear(); // Just in case... |
7bf85405 RD |
960 | } else { |
961 | PyErr_Print(); | |
962 | } | |
4268f798 | 963 | wxPyEndBlockThreads(); |
7bf85405 RD |
964 | } |
965 | ||
966 | ||
d559219f | 967 | //---------------------------------------------------------------------- |
7bf85405 | 968 | |
2f90df85 RD |
969 | wxPyCallbackHelper::wxPyCallbackHelper(const wxPyCallbackHelper& other) { |
970 | m_lastFound = NULL; | |
971 | m_self = other.m_self; | |
f6bcfd97 BP |
972 | m_class = other.m_class; |
973 | if (m_self) { | |
2f90df85 | 974 | Py_INCREF(m_self); |
f6bcfd97 BP |
975 | Py_INCREF(m_class); |
976 | } | |
2f90df85 RD |
977 | } |
978 | ||
979 | ||
33510773 | 980 | void wxPyCallbackHelper::setSelf(PyObject* self, PyObject* klass, int incref) { |
d559219f | 981 | m_self = self; |
33510773 | 982 | m_class = klass; |
b7312675 | 983 | m_incRef = incref; |
f6bcfd97 | 984 | if (incref) { |
2f90df85 | 985 | Py_INCREF(m_self); |
f6bcfd97 BP |
986 | Py_INCREF(m_class); |
987 | } | |
d559219f | 988 | } |
8bf5d46e | 989 | |
8bf5d46e | 990 | |
78b57918 RD |
991 | #if PYTHON_API_VERSION >= 1011 |
992 | ||
993 | // Prior to Python 2.2 PyMethod_GetClass returned the class object | |
994 | // in which the method was defined. Starting with 2.2 it returns | |
995 | // "class that asked for the method" which seems totally bogus to me | |
4152e8b9 | 996 | // but apprently it fixes some obscure problem waiting to happen in |
78b57918 RD |
997 | // Python. Since the API was not documented Guido and the gang felt |
998 | // safe in changing it. Needless to say that totally screwed up the | |
999 | // logic below in wxPyCallbackHelper::findCallback, hence this icky | |
4152e8b9 | 1000 | // code to find the class where the method is actually defined... |
78b57918 RD |
1001 | |
1002 | static | |
1003 | PyObject* PyFindClassWithAttr(PyObject *klass, PyObject *name) | |
1004 | { | |
1005 | int i, n; | |
1006 | ||
1007 | if (PyType_Check(klass)) { // new style classes | |
1008 | // This code is borrowed/adapted from _PyType_Lookup in typeobject.c | |
4a98c806 | 1009 | // (TODO: This part is not tested yet, so I'm not sure it is correct...) |
78b57918 RD |
1010 | PyTypeObject* type = (PyTypeObject*)klass; |
1011 | PyObject *mro, *res, *base, *dict; | |
1012 | /* Look in tp_dict of types in MRO */ | |
1013 | mro = type->tp_mro; | |
1014 | assert(PyTuple_Check(mro)); | |
1015 | n = PyTuple_GET_SIZE(mro); | |
1016 | for (i = 0; i < n; i++) { | |
1017 | base = PyTuple_GET_ITEM(mro, i); | |
1018 | if (PyClass_Check(base)) | |
1019 | dict = ((PyClassObject *)base)->cl_dict; | |
1020 | else { | |
1021 | assert(PyType_Check(base)); | |
1022 | dict = ((PyTypeObject *)base)->tp_dict; | |
1023 | } | |
1024 | assert(dict && PyDict_Check(dict)); | |
1025 | res = PyDict_GetItem(dict, name); | |
1026 | if (res != NULL) | |
4a98c806 | 1027 | return base; |
78b57918 RD |
1028 | } |
1029 | return NULL; | |
1030 | } | |
1031 | ||
1032 | else if (PyClass_Check(klass)) { // old style classes | |
1033 | // This code is borrowed/adapted from class_lookup in classobject.c | |
1034 | PyClassObject* cp = (PyClassObject*)klass; | |
1035 | PyObject *value = PyDict_GetItem(cp->cl_dict, name); | |
1036 | if (value != NULL) { | |
1037 | return (PyObject*)cp; | |
1038 | } | |
1039 | n = PyTuple_Size(cp->cl_bases); | |
1040 | for (i = 0; i < n; i++) { | |
1041 | PyObject* base = PyTuple_GetItem(cp->cl_bases, i); | |
1042 | PyObject *v = PyFindClassWithAttr(base, name); | |
1043 | if (v != NULL) | |
1044 | return v; | |
1045 | } | |
1046 | return NULL; | |
1047 | } | |
4152e8b9 | 1048 | return NULL; |
78b57918 RD |
1049 | } |
1050 | #endif | |
1051 | ||
1052 | ||
1053 | static | |
1054 | PyObject* PyMethod_GetDefiningClass(PyObject* method, const char* name) | |
1055 | { | |
1056 | PyObject* mgc = PyMethod_GET_CLASS(method); | |
1057 | ||
1058 | #if PYTHON_API_VERSION <= 1010 // prior to Python 2.2, the easy way | |
1059 | return mgc; | |
1060 | #else // 2.2 and after, the hard way... | |
1061 | ||
1062 | PyObject* nameo = PyString_FromString(name); | |
1063 | PyObject* klass = PyFindClassWithAttr(mgc, nameo); | |
1064 | Py_DECREF(nameo); | |
1065 | return klass; | |
1066 | #endif | |
1067 | } | |
1068 | ||
1069 | ||
1070 | ||
de20db99 | 1071 | bool wxPyCallbackHelper::findCallback(const char* name) const { |
f6bcfd97 BP |
1072 | wxPyCallbackHelper* self = (wxPyCallbackHelper*)this; // cast away const |
1073 | self->m_lastFound = NULL; | |
78b57918 RD |
1074 | |
1075 | // If the object (m_self) has an attibute of the given name... | |
de20db99 | 1076 | if (m_self && PyObject_HasAttrString(m_self, (char*)name)) { |
78b57918 | 1077 | PyObject *method, *klass; |
de20db99 | 1078 | method = PyObject_GetAttrString(m_self, (char*)name); |
f6bcfd97 | 1079 | |
78b57918 RD |
1080 | // ...and if that attribute is a method, and if that method's class is |
1081 | // not from a base class... | |
f6bcfd97 | 1082 | if (PyMethod_Check(method) && |
78b57918 RD |
1083 | (klass = PyMethod_GetDefiningClass(method, (char*)name)) != NULL && |
1084 | ((klass == m_class) || PyClass_IsSubclass(klass, m_class))) { | |
8bf5d46e | 1085 | |
78b57918 | 1086 | // ...then we'll save a pointer to the method so callCallback can call it. |
f6bcfd97 BP |
1087 | self->m_lastFound = method; |
1088 | } | |
de20db99 RD |
1089 | else { |
1090 | Py_DECREF(method); | |
1091 | } | |
f6bcfd97 | 1092 | } |
d559219f RD |
1093 | return m_lastFound != NULL; |
1094 | } | |
8bf5d46e | 1095 | |
d559219f | 1096 | |
f6bcfd97 | 1097 | int wxPyCallbackHelper::callCallback(PyObject* argTuple) const { |
d559219f RD |
1098 | PyObject* result; |
1099 | int retval = FALSE; | |
1100 | ||
1101 | result = callCallbackObj(argTuple); | |
1102 | if (result) { // Assumes an integer return type... | |
1103 | retval = PyInt_AsLong(result); | |
1104 | Py_DECREF(result); | |
1105 | PyErr_Clear(); // forget about it if it's not... | |
1106 | } | |
1107 | return retval; | |
1108 | } | |
1109 | ||
1110 | // Invoke the Python callable object, returning the raw PyObject return | |
1111 | // value. Caller should DECREF the return value and also call PyEval_SaveThread. | |
f6bcfd97 | 1112 | PyObject* wxPyCallbackHelper::callCallbackObj(PyObject* argTuple) const { |
de20db99 | 1113 | PyObject* result; |
d559219f | 1114 | |
de20db99 RD |
1115 | // Save a copy of the pointer in case the callback generates another |
1116 | // callback. In that case m_lastFound will have a different value when | |
1117 | // it gets back here... | |
1118 | PyObject* method = m_lastFound; | |
1119 | ||
1120 | result = PyEval_CallObject(method, argTuple); | |
d559219f | 1121 | Py_DECREF(argTuple); |
de20db99 | 1122 | Py_DECREF(method); |
d559219f RD |
1123 | if (!result) { |
1124 | PyErr_Print(); | |
1125 | } | |
1126 | return result; | |
1127 | } | |
714e6a9e | 1128 | |
7bf85405 | 1129 | |
0122b7e3 | 1130 | void wxPyCBH_setCallbackInfo(wxPyCallbackHelper& cbh, PyObject* self, PyObject* klass, int incref) { |
1e7ecb7b RD |
1131 | cbh.setSelf(self, klass, incref); |
1132 | } | |
1133 | ||
1134 | bool wxPyCBH_findCallback(const wxPyCallbackHelper& cbh, const char* name) { | |
1135 | return cbh.findCallback(name); | |
1136 | } | |
1137 | ||
1138 | int wxPyCBH_callCallback(const wxPyCallbackHelper& cbh, PyObject* argTuple) { | |
1139 | return cbh.callCallback(argTuple); | |
1140 | } | |
1141 | ||
1142 | PyObject* wxPyCBH_callCallbackObj(const wxPyCallbackHelper& cbh, PyObject* argTuple) { | |
1143 | return cbh.callCallbackObj(argTuple); | |
1144 | } | |
1145 | ||
1146 | ||
1147 | void wxPyCBH_delete(wxPyCallbackHelper* cbh) { | |
1e7ecb7b | 1148 | if (cbh->m_incRef) { |
4268f798 | 1149 | wxPyBeginBlockThreads(); |
1e7ecb7b RD |
1150 | Py_XDECREF(cbh->m_self); |
1151 | Py_XDECREF(cbh->m_class); | |
4268f798 | 1152 | wxPyEndBlockThreads(); |
1e7ecb7b | 1153 | } |
1e7ecb7b | 1154 | } |
d559219f | 1155 | |
65dd82cb RD |
1156 | //--------------------------------------------------------------------------- |
1157 | //--------------------------------------------------------------------------- | |
2aab8f16 | 1158 | // These event classes can be derived from in Python and passed through the event |
c368d904 | 1159 | // system without losing anything. They do this by keeping a reference to |
65dd82cb RD |
1160 | // themselves and some special case handling in wxPyCallback::EventThunker. |
1161 | ||
1162 | ||
e19b7164 | 1163 | wxPyEvtSelfRef::wxPyEvtSelfRef() { |
65dd82cb RD |
1164 | //m_self = Py_None; // **** We don't do normal ref counting to prevent |
1165 | //Py_INCREF(m_self); // circular loops... | |
194fa2ac | 1166 | m_cloned = FALSE; |
65dd82cb RD |
1167 | } |
1168 | ||
e19b7164 | 1169 | wxPyEvtSelfRef::~wxPyEvtSelfRef() { |
4268f798 | 1170 | wxPyBeginBlockThreads(); |
65dd82cb RD |
1171 | if (m_cloned) |
1172 | Py_DECREF(m_self); | |
4268f798 | 1173 | wxPyEndBlockThreads(); |
65dd82cb RD |
1174 | } |
1175 | ||
e19b7164 | 1176 | void wxPyEvtSelfRef::SetSelf(PyObject* self, bool clone) { |
4268f798 | 1177 | wxPyBeginBlockThreads(); |
65dd82cb RD |
1178 | if (m_cloned) |
1179 | Py_DECREF(m_self); | |
1180 | m_self = self; | |
1181 | if (clone) { | |
1182 | Py_INCREF(m_self); | |
1183 | m_cloned = TRUE; | |
1184 | } | |
4268f798 | 1185 | wxPyEndBlockThreads(); |
65dd82cb RD |
1186 | } |
1187 | ||
e19b7164 | 1188 | PyObject* wxPyEvtSelfRef::GetSelf() const { |
65dd82cb RD |
1189 | Py_INCREF(m_self); |
1190 | return m_self; | |
1191 | } | |
1192 | ||
1193 | ||
07b2e1cd RD |
1194 | IMPLEMENT_ABSTRACT_CLASS(wxPyEvent, wxEvent); |
1195 | IMPLEMENT_ABSTRACT_CLASS(wxPyCommandEvent, wxCommandEvent); | |
1196 | ||
1197 | ||
65dd82cb RD |
1198 | wxPyEvent::wxPyEvent(int id) |
1199 | : wxEvent(id) { | |
1200 | } | |
1201 | ||
65dd82cb | 1202 | |
07b2e1cd RD |
1203 | wxPyEvent::wxPyEvent(const wxPyEvent& evt) |
1204 | : wxEvent(evt) | |
1205 | { | |
1206 | SetSelf(evt.m_self, TRUE); | |
65dd82cb RD |
1207 | } |
1208 | ||
1209 | ||
07b2e1cd RD |
1210 | wxPyEvent::~wxPyEvent() { |
1211 | } | |
65dd82cb RD |
1212 | |
1213 | ||
1214 | wxPyCommandEvent::wxPyCommandEvent(wxEventType commandType, int id) | |
1215 | : wxCommandEvent(commandType, id) { | |
1216 | } | |
1217 | ||
65dd82cb | 1218 | |
07b2e1cd RD |
1219 | wxPyCommandEvent::wxPyCommandEvent(const wxPyCommandEvent& evt) |
1220 | : wxCommandEvent(evt) | |
1221 | { | |
1222 | SetSelf(evt.m_self, TRUE); | |
65dd82cb RD |
1223 | } |
1224 | ||
1225 | ||
07b2e1cd RD |
1226 | wxPyCommandEvent::~wxPyCommandEvent() { |
1227 | } | |
1228 | ||
65dd82cb RD |
1229 | |
1230 | ||
1231 | ||
d559219f | 1232 | //--------------------------------------------------------------------------- |
7bf85405 RD |
1233 | //--------------------------------------------------------------------------- |
1234 | ||
d559219f | 1235 | |
7bf85405 RD |
1236 | wxPyTimer::wxPyTimer(PyObject* callback) { |
1237 | func = callback; | |
1238 | Py_INCREF(func); | |
1239 | } | |
1240 | ||
1241 | wxPyTimer::~wxPyTimer() { | |
4268f798 | 1242 | wxPyBeginBlockThreads(); |
7bf85405 | 1243 | Py_DECREF(func); |
4268f798 | 1244 | wxPyEndBlockThreads(); |
7bf85405 RD |
1245 | } |
1246 | ||
1247 | void wxPyTimer::Notify() { | |
185d7c3e RD |
1248 | if (!func || func == Py_None) { |
1249 | wxTimer::Notify(); | |
1250 | } | |
1251 | else { | |
4268f798 | 1252 | wxPyBeginBlockThreads(); |
185d7c3e RD |
1253 | |
1254 | PyObject* result; | |
1255 | PyObject* args = Py_BuildValue("()"); | |
1256 | ||
1257 | result = PyEval_CallObject(func, args); | |
1258 | Py_DECREF(args); | |
1259 | if (result) { | |
1260 | Py_DECREF(result); | |
1261 | PyErr_Clear(); | |
1262 | } else { | |
1263 | PyErr_Print(); | |
1264 | } | |
7bf85405 | 1265 | |
4268f798 | 1266 | wxPyEndBlockThreads(); |
7bf85405 RD |
1267 | } |
1268 | } | |
1269 | ||
1270 | ||
cf694132 | 1271 | |
2f90df85 | 1272 | //--------------------------------------------------------------------------- |
389c5527 RD |
1273 | //--------------------------------------------------------------------------- |
1274 | // Convert a wxList to a Python List | |
1275 | ||
65dd82cb | 1276 | PyObject* wxPy_ConvertList(wxListBase* list, const char* className) { |
389c5527 RD |
1277 | PyObject* pyList; |
1278 | PyObject* pyObj; | |
1279 | wxObject* wxObj; | |
1280 | wxNode* node = list->First(); | |
1281 | ||
4268f798 | 1282 | wxPyBeginBlockThreads(); |
389c5527 RD |
1283 | pyList = PyList_New(0); |
1284 | while (node) { | |
1285 | wxObj = node->Data(); | |
9416aa89 | 1286 | pyObj = wxPyMake_wxObject(wxObj); //wxPyConstructObject(wxObj, className); |
389c5527 RD |
1287 | PyList_Append(pyList, pyObj); |
1288 | node = node->Next(); | |
1289 | } | |
4268f798 | 1290 | wxPyEndBlockThreads(); |
389c5527 RD |
1291 | return pyList; |
1292 | } | |
1293 | ||
54b96882 RD |
1294 | //---------------------------------------------------------------------- |
1295 | ||
1296 | long wxPyGetWinHandle(wxWindow* win) { | |
1297 | #ifdef __WXMSW__ | |
1298 | return (long)win->GetHandle(); | |
1299 | #endif | |
1300 | ||
1301 | // Find and return the actual X-Window. | |
1302 | #ifdef __WXGTK__ | |
1303 | if (win->m_wxwindow) { | |
1304 | GdkWindowPrivate* bwin = (GdkWindowPrivate*)GTK_PIZZA(win->m_wxwindow)->bin_window; | |
1305 | if (bwin) { | |
1306 | return (long)bwin->xwindow; | |
1307 | } | |
1308 | } | |
1309 | #endif | |
1310 | return 0; | |
1311 | } | |
1312 | ||
7bf85405 RD |
1313 | //---------------------------------------------------------------------- |
1314 | // Some helper functions for typemaps in my_typemaps.i, so they won't be | |
c8bc7bb8 RD |
1315 | // included in every file over and over again... |
1316 | ||
1317 | #if PYTHON_API_VERSION >= 1009 | |
1318 | static char* wxStringErrorMsg = "String or Unicode type required"; | |
1319 | #else | |
1320 | static char* wxStringErrorMsg = "String type required"; | |
1321 | #endif | |
1322 | ||
1323 | ||
1324 | wxString* wxString_in_helper(PyObject* source) { | |
1325 | wxString* target; | |
1326 | #if PYTHON_API_VERSION >= 1009 // Have Python unicode API | |
1327 | if (!PyString_Check(source) && !PyUnicode_Check(source)) { | |
1328 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1329 | return NULL; | |
1330 | } | |
1331 | #if wxUSE_UNICODE | |
1332 | if (PyUnicode_Check(source)) { | |
1333 | target = new wxString(PyUnicode_AS_UNICODE(source)); | |
1334 | } else { | |
a541c325 RD |
1335 | // It is a string, get pointers to it and transform to unicode |
1336 | char* tmpPtr; int tmpSize; | |
1337 | PyString_AsStringAndSize(source, &tmpPtr, &tmpSize); | |
1338 | target = new wxString(tmpPtr, *wxConvCurrent, tmpSize); | |
c8bc7bb8 RD |
1339 | } |
1340 | #else | |
1341 | char* tmpPtr; int tmpSize; | |
1342 | if (PyString_AsStringAndSize(source, &tmpPtr, &tmpSize) == -1) { | |
1343 | PyErr_SetString(PyExc_TypeError, "Unable to convert string"); | |
1344 | return NULL; | |
1345 | } | |
1346 | target = new wxString(tmpPtr, tmpSize); | |
1347 | #endif // wxUSE_UNICODE | |
1348 | ||
1349 | #else // No Python unicode API (1.5.2) | |
1350 | if (!PyString_Check(source)) { | |
1351 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
1352 | return NULL; | |
1353 | } | |
1354 | target = new wxString(PyString_AS_STRING(source), PyString_GET_SIZE(source)); | |
1355 | #endif | |
1356 | return target; | |
1357 | } | |
1358 | ||
7bf85405 | 1359 | |
a541c325 RD |
1360 | // Similar to above except doesn't use "new" and doesn't set an exception |
1361 | wxString Py2wxString(PyObject* source) | |
1362 | { | |
1363 | wxString target; | |
1364 | bool doDecRef = FALSE; | |
1365 | ||
1366 | #if PYTHON_API_VERSION >= 1009 // Have Python unicode API | |
1367 | if (!PyString_Check(source) && !PyUnicode_Check(source)) { | |
1368 | // Convert to String if not one already... (TODO: Unicode too?) | |
1369 | source = PyObject_Str(source); | |
1370 | doDecRef = TRUE; | |
1371 | } | |
1372 | ||
1373 | #if wxUSE_UNICODE | |
1374 | if (PyUnicode_Check(source)) { | |
1375 | target = PyUnicode_AS_UNICODE(source); | |
1376 | } else { | |
1377 | // It is a string, get pointers to it and transform to unicode | |
1378 | char* tmpPtr; int tmpSize; | |
1379 | PyString_AsStringAndSize(source, &tmpPtr, &tmpSize); | |
1380 | target = wxString(tmpPtr, *wxConvCurrent, tmpSize); | |
1381 | } | |
1382 | #else | |
1383 | char* tmpPtr; int tmpSize; | |
1384 | PyString_AsStringAndSize(source, &tmpPtr, &tmpSize); | |
1385 | target = wxString(tmpPtr, tmpSize); | |
1386 | #endif // wxUSE_UNICODE | |
1387 | ||
1388 | #else // No Python unicode API (1.5.2) | |
1389 | if (!PyString_Check(source)) { | |
1390 | // Convert to String if not one already... | |
1391 | source = PyObject_Str(source); | |
1392 | doDecRef = TRUE; | |
1393 | } | |
1394 | target = wxString(PyString_AS_STRING(source), PyString_GET_SIZE(source)); | |
1395 | #endif | |
1396 | ||
1397 | if (doDecRef) | |
1398 | Py_DECREF(source); | |
1399 | return target; | |
1400 | } | |
1401 | ||
1402 | ||
1403 | // Make either a Python String or Unicode object, depending on build mode | |
1404 | PyObject* wx2PyString(const wxString& src) | |
1405 | { | |
1406 | PyObject* str; | |
1407 | #if wxUSE_UNICODE | |
1408 | str = PyUnicode_FromUnicode(src.c_str(), src.Len()); | |
1409 | #else | |
1410 | str = PyString_FromStringAndSize(src.c_str(), src.Len()); | |
1411 | #endif | |
1412 | return str; | |
1413 | } | |
1414 | ||
1415 | ||
1416 | //---------------------------------------------------------------------- | |
1417 | ||
7bf85405 | 1418 | |
2f90df85 | 1419 | byte* byte_LIST_helper(PyObject* source) { |
b639c3c5 RD |
1420 | if (!PyList_Check(source)) { |
1421 | PyErr_SetString(PyExc_TypeError, "Expected a list object."); | |
1422 | return NULL; | |
1423 | } | |
1424 | int count = PyList_Size(source); | |
1425 | byte* temp = new byte[count]; | |
1426 | if (! temp) { | |
1427 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array"); | |
1428 | return NULL; | |
1429 | } | |
1430 | for (int x=0; x<count; x++) { | |
1431 | PyObject* o = PyList_GetItem(source, x); | |
1432 | if (! PyInt_Check(o)) { | |
1433 | PyErr_SetString(PyExc_TypeError, "Expected a list of integers."); | |
1434 | return NULL; | |
1435 | } | |
1436 | temp[x] = (byte)PyInt_AsLong(o); | |
1437 | } | |
1438 | return temp; | |
1439 | } | |
1440 | ||
1441 | ||
2f90df85 | 1442 | int* int_LIST_helper(PyObject* source) { |
7bf85405 RD |
1443 | if (!PyList_Check(source)) { |
1444 | PyErr_SetString(PyExc_TypeError, "Expected a list object."); | |
1445 | return NULL; | |
1446 | } | |
1447 | int count = PyList_Size(source); | |
1448 | int* temp = new int[count]; | |
1449 | if (! temp) { | |
1450 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array"); | |
1451 | return NULL; | |
1452 | } | |
1453 | for (int x=0; x<count; x++) { | |
1454 | PyObject* o = PyList_GetItem(source, x); | |
1455 | if (! PyInt_Check(o)) { | |
1456 | PyErr_SetString(PyExc_TypeError, "Expected a list of integers."); | |
1457 | return NULL; | |
1458 | } | |
1459 | temp[x] = PyInt_AsLong(o); | |
1460 | } | |
1461 | return temp; | |
1462 | } | |
1463 | ||
1464 | ||
2f90df85 | 1465 | long* long_LIST_helper(PyObject* source) { |
7bf85405 RD |
1466 | if (!PyList_Check(source)) { |
1467 | PyErr_SetString(PyExc_TypeError, "Expected a list object."); | |
1468 | return NULL; | |
1469 | } | |
1470 | int count = PyList_Size(source); | |
1471 | long* temp = new long[count]; | |
1472 | if (! temp) { | |
1473 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array"); | |
1474 | return NULL; | |
1475 | } | |
1476 | for (int x=0; x<count; x++) { | |
1477 | PyObject* o = PyList_GetItem(source, x); | |
1478 | if (! PyInt_Check(o)) { | |
1479 | PyErr_SetString(PyExc_TypeError, "Expected a list of integers."); | |
1480 | return NULL; | |
1481 | } | |
1482 | temp[x] = PyInt_AsLong(o); | |
1483 | } | |
1484 | return temp; | |
1485 | } | |
1486 | ||
1487 | ||
2f90df85 | 1488 | char** string_LIST_helper(PyObject* source) { |
7bf85405 RD |
1489 | if (!PyList_Check(source)) { |
1490 | PyErr_SetString(PyExc_TypeError, "Expected a list object."); | |
1491 | return NULL; | |
1492 | } | |
1493 | int count = PyList_Size(source); | |
1494 | char** temp = new char*[count]; | |
1495 | if (! temp) { | |
1496 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array"); | |
1497 | return NULL; | |
1498 | } | |
1499 | for (int x=0; x<count; x++) { | |
1500 | PyObject* o = PyList_GetItem(source, x); | |
1501 | if (! PyString_Check(o)) { | |
1502 | PyErr_SetString(PyExc_TypeError, "Expected a list of strings."); | |
1503 | return NULL; | |
1504 | } | |
1505 | temp[x] = PyString_AsString(o); | |
1506 | } | |
1507 | return temp; | |
1508 | } | |
1509 | ||
e0672e2f RD |
1510 | //-------------------------------- |
1511 | // Part of patch from Tim Hochberg | |
1512 | static inline bool wxPointFromObjects(PyObject* o1, PyObject* o2, wxPoint* point) { | |
1513 | if (PyInt_Check(o1) && PyInt_Check(o2)) { | |
1514 | point->x = PyInt_AS_LONG(o1); | |
1515 | point->y = PyInt_AS_LONG(o2); | |
1516 | return true; | |
1517 | } | |
1518 | if (PyFloat_Check(o1) && PyFloat_Check(o2)) { | |
1519 | point->x = (int)PyFloat_AS_DOUBLE(o1); | |
1520 | point->y = (int)PyFloat_AS_DOUBLE(o2); | |
1521 | return true; | |
1522 | } | |
1523 | if (PyInstance_Check(o1) || PyInstance_Check(o2)) { | |
1524 | // Disallow instances because they can cause havok | |
1525 | return false; | |
1526 | } | |
1527 | if (PyNumber_Check(o1) && PyNumber_Check(o2)) { | |
1528 | // I believe this excludes instances, so this should be safe without INCREFFing o1 and o2 | |
1529 | point->x = PyInt_AsLong(o1); | |
1530 | point->y = PyInt_AsLong(o2); | |
1531 | return true; | |
1532 | } | |
1533 | return false; | |
1534 | } | |
7bf85405 RD |
1535 | |
1536 | ||
e0672e2f RD |
1537 | wxPoint* wxPoint_LIST_helper(PyObject* source, int *count) { |
1538 | // Putting all of the declarations here allows | |
1539 | // us to put the error handling all in one place. | |
1540 | int x; | |
1541 | wxPoint* temp; | |
1542 | PyObject *o, *o1, *o2; | |
9d37f964 | 1543 | bool isFast = PyList_Check(source) || PyTuple_Check(source); |
e0672e2f | 1544 | |
e0672e2f RD |
1545 | if (!PySequence_Check(source)) { |
1546 | goto error0; | |
7bf85405 | 1547 | } |
9d37f964 RD |
1548 | |
1549 | // The length of the sequence is returned in count. | |
e0672e2f RD |
1550 | *count = PySequence_Length(source); |
1551 | if (*count < 0) { | |
1552 | goto error0; | |
1553 | } | |
1554 | ||
1555 | temp = new wxPoint[*count]; | |
1556 | if (!temp) { | |
7bf85405 RD |
1557 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array"); |
1558 | return NULL; | |
1559 | } | |
e0672e2f RD |
1560 | for (x=0; x<*count; x++) { |
1561 | // Get an item: try fast way first. | |
1562 | if (isFast) { | |
1563 | o = PySequence_Fast_GET_ITEM(source, x); | |
1564 | } | |
1565 | else { | |
1566 | o = PySequence_GetItem(source, x); | |
1567 | if (o == NULL) { | |
1568 | goto error1; | |
1569 | } | |
1570 | } | |
7bf85405 | 1571 | |
e0672e2f RD |
1572 | // Convert o to wxPoint. |
1573 | if ((PyTuple_Check(o) && PyTuple_GET_SIZE(o) == 2) || | |
1574 | (PyList_Check(o) && PyList_GET_SIZE(o) == 2)) { | |
1575 | o1 = PySequence_Fast_GET_ITEM(o, 0); | |
1576 | o2 = PySequence_Fast_GET_ITEM(o, 1); | |
1577 | if (!wxPointFromObjects(o1, o2, &temp[x])) { | |
1578 | goto error2; | |
1579 | } | |
7bf85405 | 1580 | } |
d559219f RD |
1581 | else if (PyInstance_Check(o)) { |
1582 | wxPoint* pt; | |
e0672e2f RD |
1583 | if (SWIG_GetPtrObj(o, (void **)&pt, "_wxPoint_p")) { |
1584 | goto error2; | |
d559219f RD |
1585 | } |
1586 | temp[x] = *pt; | |
1587 | } | |
e0672e2f RD |
1588 | else if (PySequence_Check(o) && PySequence_Length(o) == 2) { |
1589 | o1 = PySequence_GetItem(o, 0); | |
1590 | o2 = PySequence_GetItem(o, 1); | |
1591 | if (!wxPointFromObjects(o1, o2, &temp[x])) { | |
1592 | goto error3; | |
1593 | } | |
1594 | Py_DECREF(o1); | |
1595 | Py_DECREF(o2); | |
1596 | } | |
7bf85405 | 1597 | else { |
e0672e2f | 1598 | goto error2; |
7bf85405 | 1599 | } |
e0672e2f RD |
1600 | // Clean up. |
1601 | if (!isFast) | |
1602 | Py_DECREF(o); | |
7bf85405 RD |
1603 | } |
1604 | return temp; | |
e0672e2f RD |
1605 | |
1606 | error3: | |
1607 | Py_DECREF(o1); | |
1608 | Py_DECREF(o2); | |
1609 | error2: | |
1610 | if (!isFast) | |
1611 | Py_DECREF(o); | |
1612 | error1: | |
1613 | delete temp; | |
1614 | error0: | |
1615 | PyErr_SetString(PyExc_TypeError, "Expected a sequence of length-2 sequences or wxPoints."); | |
1616 | return NULL; | |
7bf85405 | 1617 | } |
e0672e2f RD |
1618 | // end of patch |
1619 | //------------------------------ | |
7bf85405 RD |
1620 | |
1621 | ||
2f90df85 | 1622 | wxBitmap** wxBitmap_LIST_helper(PyObject* source) { |
7bf85405 RD |
1623 | if (!PyList_Check(source)) { |
1624 | PyErr_SetString(PyExc_TypeError, "Expected a list object."); | |
1625 | return NULL; | |
1626 | } | |
1627 | int count = PyList_Size(source); | |
1628 | wxBitmap** temp = new wxBitmap*[count]; | |
1629 | if (! temp) { | |
1630 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array"); | |
1631 | return NULL; | |
1632 | } | |
1633 | for (int x=0; x<count; x++) { | |
1634 | PyObject* o = PyList_GetItem(source, x); | |
e166644c | 1635 | if (PyInstance_Check(o)) { |
7bf85405 | 1636 | wxBitmap* pt; |
e166644c | 1637 | if (SWIG_GetPtrObj(o, (void **) &pt,"_wxBitmap_p")) { |
7bf85405 RD |
1638 | PyErr_SetString(PyExc_TypeError,"Expected _wxBitmap_p."); |
1639 | return NULL; | |
1640 | } | |
1641 | temp[x] = pt; | |
1642 | } | |
1643 | else { | |
1644 | PyErr_SetString(PyExc_TypeError, "Expected a list of wxBitmaps."); | |
1645 | return NULL; | |
1646 | } | |
1647 | } | |
1648 | return temp; | |
1649 | } | |
1650 | ||
1651 | ||
1652 | ||
2f90df85 | 1653 | wxString* wxString_LIST_helper(PyObject* source) { |
7bf85405 RD |
1654 | if (!PyList_Check(source)) { |
1655 | PyErr_SetString(PyExc_TypeError, "Expected a list object."); | |
1656 | return NULL; | |
1657 | } | |
1658 | int count = PyList_Size(source); | |
1659 | wxString* temp = new wxString[count]; | |
1660 | if (! temp) { | |
1661 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array"); | |
1662 | return NULL; | |
1663 | } | |
1664 | for (int x=0; x<count; x++) { | |
1665 | PyObject* o = PyList_GetItem(source, x); | |
ecc08ead RD |
1666 | #if PYTHON_API_VERSION >= 1009 |
1667 | if (! PyString_Check(o) && ! PyUnicode_Check(o)) { | |
1668 | PyErr_SetString(PyExc_TypeError, "Expected a list of string or unicode objects."); | |
1669 | return NULL; | |
1670 | } | |
ecc08ead | 1671 | #else |
7bf85405 RD |
1672 | if (! PyString_Check(o)) { |
1673 | PyErr_SetString(PyExc_TypeError, "Expected a list of strings."); | |
1674 | return NULL; | |
1675 | } | |
ecc08ead | 1676 | #endif |
a541c325 RD |
1677 | |
1678 | wxString* pStr = wxString_in_helper(o); | |
1679 | temp[x] = *pStr; | |
1680 | delete pStr; | |
7bf85405 RD |
1681 | } |
1682 | return temp; | |
1683 | } | |
1684 | ||
1685 | ||
2f90df85 | 1686 | wxAcceleratorEntry* wxAcceleratorEntry_LIST_helper(PyObject* source) { |
7bf85405 RD |
1687 | if (!PyList_Check(source)) { |
1688 | PyErr_SetString(PyExc_TypeError, "Expected a list object."); | |
1689 | return NULL; | |
1690 | } | |
1691 | int count = PyList_Size(source); | |
1692 | wxAcceleratorEntry* temp = new wxAcceleratorEntry[count]; | |
1693 | if (! temp) { | |
1694 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array"); | |
1695 | return NULL; | |
1696 | } | |
1697 | for (int x=0; x<count; x++) { | |
1698 | PyObject* o = PyList_GetItem(source, x); | |
e166644c | 1699 | if (PyInstance_Check(o)) { |
7bf85405 | 1700 | wxAcceleratorEntry* ae; |
e166644c | 1701 | if (SWIG_GetPtrObj(o, (void **) &ae,"_wxAcceleratorEntry_p")) { |
7bf85405 RD |
1702 | PyErr_SetString(PyExc_TypeError,"Expected _wxAcceleratorEntry_p."); |
1703 | return NULL; | |
1704 | } | |
1705 | temp[x] = *ae; | |
1706 | } | |
1707 | else if (PyTuple_Check(o)) { | |
1708 | PyObject* o1 = PyTuple_GetItem(o, 0); | |
1709 | PyObject* o2 = PyTuple_GetItem(o, 1); | |
1710 | PyObject* o3 = PyTuple_GetItem(o, 2); | |
0adbc166 | 1711 | temp[x].Set(PyInt_AsLong(o1), PyInt_AsLong(o2), PyInt_AsLong(o3)); |
7bf85405 RD |
1712 | } |
1713 | else { | |
1714 | PyErr_SetString(PyExc_TypeError, "Expected a list of 3-tuples or wxAcceleratorEntry objects."); | |
1715 | return NULL; | |
1716 | } | |
1717 | } | |
1718 | return temp; | |
1719 | } | |
1720 | ||
bb0054cd | 1721 | |
9d37f964 RD |
1722 | wxPen** wxPen_LIST_helper(PyObject* source) { |
1723 | if (!PyList_Check(source)) { | |
1724 | PyErr_SetString(PyExc_TypeError, "Expected a list object."); | |
1725 | return NULL; | |
1726 | } | |
1727 | int count = PyList_Size(source); | |
1728 | wxPen** temp = new wxPen*[count]; | |
1729 | if (!temp) { | |
1730 | PyErr_SetString(PyExc_MemoryError, "Unable to allocate temporary array"); | |
1731 | return NULL; | |
1732 | } | |
1733 | for (int x=0; x<count; x++) { | |
1734 | PyObject* o = PyList_GetItem(source, x); | |
1735 | if (PyInstance_Check(o)) { | |
1736 | wxPen* pt; | |
1737 | if (SWIG_GetPtrObj(o, (void **) &pt,"_wxPen_p")) { | |
1738 | delete temp; | |
1739 | PyErr_SetString(PyExc_TypeError,"Expected _wxPen_p."); | |
1740 | return NULL; | |
1741 | } | |
1742 | temp[x] = pt; | |
1743 | } | |
1744 | else { | |
1745 | delete temp; | |
1746 | PyErr_SetString(PyExc_TypeError, "Expected a list of wxPens."); | |
1747 | return NULL; | |
1748 | } | |
1749 | } | |
1750 | return temp; | |
1751 | } | |
1752 | ||
1753 | ||
1754 | bool _2int_seq_helper(PyObject* source, int* i1, int* i2) { | |
1755 | bool isFast = PyList_Check(source) || PyTuple_Check(source); | |
1756 | PyObject *o1, *o2; | |
1757 | ||
1758 | if (!PySequence_Check(source) || PySequence_Length(source) != 2) | |
1759 | return FALSE; | |
1760 | ||
1761 | if (isFast) { | |
1762 | o1 = PySequence_Fast_GET_ITEM(source, 0); | |
1763 | o2 = PySequence_Fast_GET_ITEM(source, 1); | |
1764 | } | |
1765 | else { | |
1766 | o1 = PySequence_GetItem(source, 0); | |
1767 | o2 = PySequence_GetItem(source, 1); | |
1768 | } | |
1769 | ||
1770 | *i1 = PyInt_AsLong(o1); | |
1771 | *i2 = PyInt_AsLong(o2); | |
1772 | ||
1773 | if (! isFast) { | |
1774 | Py_DECREF(o1); | |
1775 | Py_DECREF(o2); | |
1776 | } | |
1777 | return TRUE; | |
1778 | } | |
1779 | ||
1780 | ||
1781 | bool _4int_seq_helper(PyObject* source, int* i1, int* i2, int* i3, int* i4) { | |
1782 | bool isFast = PyList_Check(source) || PyTuple_Check(source); | |
1783 | PyObject *o1, *o2, *o3, *o4; | |
1784 | ||
1785 | if (!PySequence_Check(source) || PySequence_Length(source) != 4) | |
1786 | return FALSE; | |
1787 | ||
1788 | if (isFast) { | |
1789 | o1 = PySequence_Fast_GET_ITEM(source, 0); | |
1790 | o2 = PySequence_Fast_GET_ITEM(source, 1); | |
1791 | o3 = PySequence_Fast_GET_ITEM(source, 2); | |
1792 | o4 = PySequence_Fast_GET_ITEM(source, 3); | |
1793 | } | |
1794 | else { | |
1795 | o1 = PySequence_GetItem(source, 0); | |
1796 | o2 = PySequence_GetItem(source, 1); | |
1797 | o3 = PySequence_GetItem(source, 2); | |
1798 | o4 = PySequence_GetItem(source, 3); | |
1799 | } | |
1800 | ||
1801 | *i1 = PyInt_AsLong(o1); | |
1802 | *i2 = PyInt_AsLong(o2); | |
1803 | *i3 = PyInt_AsLong(o3); | |
1804 | *i4 = PyInt_AsLong(o4); | |
1805 | ||
1806 | if (! isFast) { | |
1807 | Py_DECREF(o1); | |
1808 | Py_DECREF(o2); | |
1809 | Py_DECREF(o3); | |
1810 | Py_DECREF(o4); | |
1811 | } | |
1812 | return TRUE; | |
1813 | } | |
1814 | ||
bb0054cd RD |
1815 | |
1816 | //---------------------------------------------------------------------- | |
bb0054cd | 1817 | |
2f90df85 RD |
1818 | bool wxSize_helper(PyObject* source, wxSize** obj) { |
1819 | ||
1820 | // If source is an object instance then it may already be the right type | |
1821 | if (PyInstance_Check(source)) { | |
1822 | wxSize* ptr; | |
1823 | if (SWIG_GetPtrObj(source, (void **)&ptr, "_wxSize_p")) | |
1824 | goto error; | |
1825 | *obj = ptr; | |
1826 | return TRUE; | |
1827 | } | |
1828 | // otherwise a 2-tuple of integers is expected | |
1829 | else if (PySequence_Check(source) && PyObject_Length(source) == 2) { | |
1830 | PyObject* o1 = PySequence_GetItem(source, 0); | |
1831 | PyObject* o2 = PySequence_GetItem(source, 1); | |
db0ff83e RD |
1832 | if (!PyNumber_Check(o1) || !PyNumber_Check(o2)) { |
1833 | Py_DECREF(o1); | |
1834 | Py_DECREF(o2); | |
1835 | goto error; | |
1836 | } | |
2f90df85 | 1837 | **obj = wxSize(PyInt_AsLong(o1), PyInt_AsLong(o2)); |
db0ff83e RD |
1838 | Py_DECREF(o1); |
1839 | Py_DECREF(o2); | |
2f90df85 RD |
1840 | return TRUE; |
1841 | } | |
1842 | ||
1843 | error: | |
1844 | PyErr_SetString(PyExc_TypeError, "Expected a 2-tuple of integers or a wxSize object."); | |
1845 | return FALSE; | |
1846 | } | |
1847 | ||
1848 | bool wxPoint_helper(PyObject* source, wxPoint** obj) { | |
1849 | ||
1850 | // If source is an object instance then it may already be the right type | |
1851 | if (PyInstance_Check(source)) { | |
1852 | wxPoint* ptr; | |
1853 | if (SWIG_GetPtrObj(source, (void **)&ptr, "_wxPoint_p")) | |
1854 | goto error; | |
1855 | *obj = ptr; | |
1856 | return TRUE; | |
1857 | } | |
e0672e2f RD |
1858 | // otherwise a length-2 sequence of integers is expected |
1859 | if (PySequence_Check(source) && PySequence_Length(source) == 2) { | |
2f90df85 RD |
1860 | PyObject* o1 = PySequence_GetItem(source, 0); |
1861 | PyObject* o2 = PySequence_GetItem(source, 1); | |
db0ff83e RD |
1862 | // This should really check for integers, not numbers -- but that would break code. |
1863 | if (!PyNumber_Check(o1) || !PyNumber_Check(o2)) { | |
1864 | Py_DECREF(o1); | |
1865 | Py_DECREF(o2); | |
1866 | goto error; | |
1867 | } | |
1868 | **obj = wxPoint(PyInt_AsLong(o1), PyInt_AsLong(o2)); | |
1869 | Py_DECREF(o1); | |
1870 | Py_DECREF(o2); | |
2f90df85 RD |
1871 | return TRUE; |
1872 | } | |
2f90df85 RD |
1873 | error: |
1874 | PyErr_SetString(PyExc_TypeError, "Expected a 2-tuple of integers or a wxPoint object."); | |
1875 | return FALSE; | |
1876 | } | |
1877 | ||
1878 | ||
1879 | ||
1880 | bool wxRealPoint_helper(PyObject* source, wxRealPoint** obj) { | |
1881 | ||
1882 | // If source is an object instance then it may already be the right type | |
1883 | if (PyInstance_Check(source)) { | |
1884 | wxRealPoint* ptr; | |
1885 | if (SWIG_GetPtrObj(source, (void **)&ptr, "_wxRealPoint_p")) | |
1886 | goto error; | |
1887 | *obj = ptr; | |
1888 | return TRUE; | |
1889 | } | |
1890 | // otherwise a 2-tuple of floats is expected | |
1891 | else if (PySequence_Check(source) && PyObject_Length(source) == 2) { | |
1892 | PyObject* o1 = PySequence_GetItem(source, 0); | |
1893 | PyObject* o2 = PySequence_GetItem(source, 1); | |
db0ff83e RD |
1894 | if (!PyNumber_Check(o1) || !PyNumber_Check(o2)) { |
1895 | Py_DECREF(o1); | |
1896 | Py_DECREF(o2); | |
1897 | goto error; | |
1898 | } | |
2f90df85 | 1899 | **obj = wxRealPoint(PyFloat_AsDouble(o1), PyFloat_AsDouble(o2)); |
db0ff83e RD |
1900 | Py_DECREF(o1); |
1901 | Py_DECREF(o2); | |
2f90df85 RD |
1902 | return TRUE; |
1903 | } | |
1904 | ||
1905 | error: | |
1906 | PyErr_SetString(PyExc_TypeError, "Expected a 2-tuple of floats or a wxRealPoint object."); | |
1907 | return FALSE; | |
1908 | } | |
1909 | ||
1910 | ||
1911 | ||
1912 | ||
1913 | bool wxRect_helper(PyObject* source, wxRect** obj) { | |
1914 | ||
1915 | // If source is an object instance then it may already be the right type | |
1916 | if (PyInstance_Check(source)) { | |
1917 | wxRect* ptr; | |
1918 | if (SWIG_GetPtrObj(source, (void **)&ptr, "_wxRect_p")) | |
1919 | goto error; | |
1920 | *obj = ptr; | |
1921 | return TRUE; | |
1922 | } | |
1923 | // otherwise a 4-tuple of integers is expected | |
1924 | else if (PySequence_Check(source) && PyObject_Length(source) == 4) { | |
1925 | PyObject* o1 = PySequence_GetItem(source, 0); | |
1926 | PyObject* o2 = PySequence_GetItem(source, 1); | |
1927 | PyObject* o3 = PySequence_GetItem(source, 2); | |
1928 | PyObject* o4 = PySequence_GetItem(source, 3); | |
db0ff83e RD |
1929 | if (!PyNumber_Check(o1) || !PyNumber_Check(o2) || |
1930 | !PyNumber_Check(o3) || !PyNumber_Check(o4)) { | |
1931 | Py_DECREF(o1); | |
1932 | Py_DECREF(o2); | |
1933 | Py_DECREF(o3); | |
1934 | Py_DECREF(o4); | |
1935 | goto error; | |
1936 | } | |
2f90df85 | 1937 | **obj = wxRect(PyInt_AsLong(o1), PyInt_AsLong(o2), |
db0ff83e RD |
1938 | PyInt_AsLong(o3), PyInt_AsLong(o4)); |
1939 | Py_DECREF(o1); | |
1940 | Py_DECREF(o2); | |
1941 | Py_DECREF(o3); | |
1942 | Py_DECREF(o4); | |
2f90df85 RD |
1943 | return TRUE; |
1944 | } | |
1945 | ||
1946 | error: | |
1947 | PyErr_SetString(PyExc_TypeError, "Expected a 4-tuple of integers or a wxRect object."); | |
1948 | return FALSE; | |
1949 | } | |
1950 | ||
1951 | ||
1952 | ||
f6bcfd97 BP |
1953 | bool wxColour_helper(PyObject* source, wxColour** obj) { |
1954 | ||
1955 | // If source is an object instance then it may already be the right type | |
1956 | if (PyInstance_Check(source)) { | |
1957 | wxColour* ptr; | |
1958 | if (SWIG_GetPtrObj(source, (void **)&ptr, "_wxColour_p")) | |
1959 | goto error; | |
1960 | *obj = ptr; | |
1961 | return TRUE; | |
1962 | } | |
1963 | // otherwise a string is expected | |
1964 | else if (PyString_Check(source)) { | |
a541c325 RD |
1965 | wxString spec(PyString_AS_STRING(source), *wxConvCurrent); |
1966 | if (spec.GetChar(0) == '#' && spec.Length() == 7) { // It's #RRGGBB | |
1967 | long red, green, blue; | |
1968 | red = green = blue = 0; | |
a541c325 RD |
1969 | spec.Mid(1,2).ToLong(&red, 16); |
1970 | spec.Mid(3,2).ToLong(&green, 16); | |
1971 | spec.Mid(5,2).ToLong(&blue, 16); | |
1972 | ||
f6bcfd97 BP |
1973 | **obj = wxColour(red, green, blue); |
1974 | return TRUE; | |
1975 | } | |
1976 | else { // it's a colour name | |
1977 | **obj = wxColour(spec); | |
1978 | return TRUE; | |
1979 | } | |
1980 | } | |
1981 | ||
1982 | error: | |
a541c325 RD |
1983 | PyErr_SetString(PyExc_TypeError, |
1984 | "Expected a wxColour object or a string containing a colour " | |
1985 | "name or '#RRGGBB'."); | |
f6bcfd97 BP |
1986 | return FALSE; |
1987 | } | |
1988 | ||
1989 | ||
bb0054cd | 1990 | //---------------------------------------------------------------------- |
b37c7e1d RD |
1991 | |
1992 | PyObject* wxArrayString2PyList_helper(const wxArrayString& arr) { | |
1993 | ||
1994 | PyObject* list = PyList_New(0); | |
1995 | for (size_t i=0; i < arr.GetCount(); i++) { | |
c8bc7bb8 RD |
1996 | #if wxUSE_UNICODE |
1997 | PyObject* str = PyUnicode_FromUnicode(arr[i].c_str(), arr[i].Len()); | |
1998 | #else | |
1999 | PyObject* str = PyString_FromStringAndSize(arr[i].c_str(), arr[i].Len()); | |
2000 | #endif | |
b37c7e1d | 2001 | PyList_Append(list, str); |
8af26133 | 2002 | Py_DECREF(str); |
b37c7e1d RD |
2003 | } |
2004 | return list; | |
2005 | } | |
2006 | ||
2007 | ||
293a0a86 RD |
2008 | PyObject* wxArrayInt2PyList_helper(const wxArrayInt& arr) { |
2009 | ||
2010 | PyObject* list = PyList_New(0); | |
2011 | for (size_t i=0; i < arr.GetCount(); i++) { | |
2012 | PyObject* number = PyInt_FromLong(arr[i]); | |
2013 | PyList_Append(list, number); | |
2014 | Py_DECREF(number); | |
2015 | } | |
2016 | return list; | |
2017 | } | |
2018 | ||
2019 | ||
bb0054cd | 2020 | //---------------------------------------------------------------------- |
7bf85405 | 2021 | //---------------------------------------------------------------------- |
7bf85405 | 2022 | |
7bf85405 | 2023 | |
7bf85405 | 2024 | |
de20db99 | 2025 |