From 5140c348cd21772ed417053fa5068b66220e7017 Mon Sep 17 00:00:00 2001 From: Miguel Angel Ajo Date: Wed, 1 Aug 2012 14:50:21 +0200 Subject: [PATCH] pcbnew: wxPyBeginBlockThreads before every python call --- include/appl_wxstruct.h | 2 +- pcbnew/scripting/pcbnew_footprint_wizards.cpp | 41 +++++++++++++++---- 2 files changed, 34 insertions(+), 9 deletions(-) diff --git a/include/appl_wxstruct.h b/include/appl_wxstruct.h index a97852a437..06823b5c68 100644 --- a/include/appl_wxstruct.h +++ b/include/appl_wxstruct.h @@ -37,7 +37,7 @@ #include #include #ifdef KICAD_SCRIPTING_EXPERIMENT -#include +#include #include #endif diff --git a/pcbnew/scripting/pcbnew_footprint_wizards.cpp b/pcbnew/scripting/pcbnew_footprint_wizards.cpp index 3dd77c0305..c14b8c20c7 100644 --- a/pcbnew/scripting/pcbnew_footprint_wizards.cpp +++ b/pcbnew/scripting/pcbnew_footprint_wizards.cpp @@ -4,6 +4,7 @@ */ #include "pcbnew_footprint_wizards.h" +#include #include PYTHON_FOOTPRINT_WIZARD::PYTHON_FOOTPRINT_WIZARD(PyObject *aWizard) @@ -27,7 +28,9 @@ PyObject* PYTHON_FOOTPRINT_WIZARD::CallMethod(const char* aMethod, PyObject *aAr if ( pFunc && PyCallable_Check( pFunc ) ) { PyObject *result; - + + wxPyBlock_t blocked = wxPyBeginBlockThreads(); + result = PyObject_CallObject( pFunc, aArglist ); if ( PyErr_Occurred() ) @@ -38,6 +41,8 @@ PyObject* PYTHON_FOOTPRINT_WIZARD::CallMethod(const char* aMethod, PyObject *aAr printf ( "Exception: %s\n", PyString_AsString( PyObject_Str(v) ) ); printf ( " : %s\n", PyString_AsString( PyObject_Str(b) ) ); } + + wxPyEndBlockThreads( blocked ); if ( result ) { @@ -65,9 +70,12 @@ wxString PYTHON_FOOTPRINT_WIZARD::CallRetStrMethod( const char* aMethod, PyObjec PyObject *result = CallMethod( aMethod, aArglist ); if ( result ) { + wxPyBlock_t blocked = wxPyBeginBlockThreads(); const char *str_res = PyString_AsString( result ); ret = wxString::FromUTF8( str_res ); Py_DECREF( result ); + + wxPyEndBlockThreads( blocked ); } return ret; } @@ -90,6 +98,8 @@ wxArrayString PYTHON_FOOTPRINT_WIZARD::CallRetArrayStrMethod "result is not a list"),1 ); return ret; } + + wxPyBlock_t blocked = wxPyBeginBlockThreads(); int list_size = PyList_Size( result ); for ( int n=0; nGetName().mb_str() - ); + + //printf( "Registered python footprint wizard '%s'\n", + // (const char*)fw->GetName().mb_str() + // ); // this get the wizard registered in the common // FOOTPRINT_WIZARDS class