Python ctypes: initializing c_char_p()

Mark picture Mark · Dec 9, 2009 · Viewed 12.6k times · Source

I wrote a simple C++ program to illustrate my problem:

extern "C"{
    int test(int, char*);
}

int test(int i, char* var){
    if (i == 1){
        strcpy(var,"hi");
    }
    return 1;
}

I compile this into an so. From python I call:

from ctypes import *

libso = CDLL("Debug/libctypesTest.so")
func = libso.test
func.res_type = c_int

for i in xrange(5):
    charP = c_char_p('bye')
    func(i,charP)
    print charP.value

When I run this, my output is:

bye
hi
hi
hi
hi

I expected:

bye
hi
bye
bye
bye

What am I missing?

Thanks.

Answer

Alex Martelli picture Alex Martelli · Dec 9, 2009

The string which you initialized with the characters "bye", and whose address you keep taking and assigning to charP, does not get re-initialized after the first time.

Follow the advice here:

You should be careful, however, not to pass them to functions expecting pointers to mutable memory. If you need mutable memory blocks, ctypes has a create_string_buffer function which creates these in various ways.

A "pointer to mutable memory" is exactly what your C function expects, and so you should use the create_string_buffer function to create that buffer, as the docs explain.