2

私はCでコードを持っています:

typedef result function_callback(struct mes_t* message, void* data) 
struct mes_t
{
uint32_t field1
uint32_t field2
void* data
};
function_one(&function_callback, data)

アプリケーションは、( function_oneで) ユーザー定義のコールバック関数function_callbackを呼び出します。コールバック関数では、field1、field2、およびデータ パラメータが渡されます (データは通常 0 です)。

この例の python のコードは正しく書かれているでしょうか?

class mes_t(ctypes.Structure):
    pass
mes_t._fields_ = [
    ('field1', ctypes.c_uint32),
    ('dfield2', ctypes.c_uint32),
    ('data', ctypes.POINTER(ctypes.c_void_p))]
data_t=ctypes.c_void_p
data=data_t()
CALLBACK=CFUNCTYPE(ccg_msg, data_t)
cb_func=CALLBACK()
result = function_one(ctypes.byref(cb_func), ctypes.byref(data))
4

1 に答える 1

1

ここで、コードを解釈する正しい方法を推測しました。調整されたサンプル スニペットは次のとおりです。

typedef int /* or whatever */ result;

struct mes_t
{
    uint32_t field1;
    uint32_t field2;
    void* data;
};
typedef result function_callback(struct mes_t* message, void* data);
result function_one(function_callback fcb, void* data);

そして、これを利用するための ctypes Python の例を次に示しますfunction_one()

class mes_t(ctypes.Structure):
    _fields_ = (
        ('field1', ctypes.c_uint32),
        ('field2', ctypes.c_uint32),
        ('data', ctypes.c_void_p))

result_t = ctypes.c_int; # or whatever

callback_type = ctypes.CFUNCTYPE(result_t, ctypes.POINTER(mes_t), ctypes.c_void_p)
function_one.argtypes = (callback_type, ctypes.c_void_p)
function_one.restype = result_t

data_p = ctypes.c_char_p('whatever')

def the_callback(mes_p, data_p):
    my_mes = mes_p[0]
    my_data_p = ctypes.cast(data_p, ctypes.c_char_p)  # or whatever
    my_data = my_data_p.value
    print "I got a mes_t object! mes.field1=%r, mes.field2=%r, mes.data=%r, data=%r" \
          % (my_mes.field1, my_mes.field2, my_mes.data, my_data)
    return my_mes.field1

result = function_one(callback_type(the_callback), ctypes.cast(data_p, ctypes.c_void_p))

これとあなたのコードの間には多くの違いがあることがわかります。おそらく、すべてを完全に説明するには多すぎるでしょう。ただし、特に紛らわしいと思われる部分がある場合は、いくつかの特定の部分について説明できます。ただし、一般的には、ctypes ポインターがどのように機能するかをよく理解しておくことが重要です (たとえば、void へのポインターへのポインターは必要ないかもしれませんが、それが Python コードで行われていることです)。

于 2012-05-24T16:00:43.773 に答える