SWIGラッパーとのpythonレベル定義のコールバックを呼び出します。C++バックエンドは、私はPythonのAPIに++ <a href="https://github.com/gtkqq/libwebqq.git" rel="noreferrer">libwebqq</a></p> <p>をC言語で書かれたライブラリをラップしていますブースト機能で定義されているタイプがあり
typedef boost::function<void (std::string)> EventListener;
"EventListener"変数コールバックを定義できます。
C++レベルでは、アダプタクラスのevent_mapというマップ構造もあります。 event_mapのキータイプはQQEvent enumタイプで、event_mapの値タイプはEvenListenerをラップするクラス "Action"です。
class Action
{
EventListener _callback;
public:
Action(){
n_actions++;
}
Action(const EventListener & cb){
setCallback(cb);
}
virtual void operator()(std::string data) {
_callback(data);
}
void setCallback(const EventListener & cb){
_callback = cb;
}
virtual ~Action(){ std::cout<<"Destruct Action"<<std::endl; n_actions --; }
static int n_actions;
};
class Adapter{
std::map<QQEvent, Action > event_map;
public:
Adapter();
~Adapter();
void trigger(const QQEvent &event, const std::string data);
void register_event_handler(QQEvent event, EventListener callback);
bool is_event_registered(const QQEvent & event);
void delete_event_handler(QQEvent event);
};
「register_event_handler」は、関連するイベントにコールバック関数を登録するためのAPIです。 イベントが発生した場合、C++のバックエンドがそれを呼び出します。しかし、私たちはPythonレベルでコールバックを実装する必要があります。ルートを把握するために助けてください
Traceback (most recent call last):
File "testwrapper.py", line 44, in <module>
worker = Worker()
File "testwrapper.py", line 28, in __init__
a.setCallback(self.on_message)
File "/home/devil/linux/libwebqq/wrappers/python/libwebqqpython.py", line 95, in setCallback
def setCallback(self, *args): return _libwebqqpython.Action_setCallback(self, *args)
TypeError: in method 'Action_setCallback', argument 2 of type 'EventListener const &'
Destruct Action
:そして、私はこの問題は、私はテストのpython scriptにregister_eventを呼び出すとき、型エラーが常に発生し、ある「callback.i」に
をコールバックタイプを包んこのタイプのエラーの原因とこの問題の解決策です。
http://stackoverflow.com/questions/12392703/what-is-the-cleanest-way-to-call-a-python-function-from-c-with-a-swig-wraped – xmduhan