Ctypesを含むC/C++ライブラリからPythonに文字列を取得したいと思います。私のコードは次のようになります:
libのコード:
const char* get(struct something *x)
{
[...]
// buf is a stringstream
return strdup(buf.str().c_str());
}
void freeme(char *ptr)
{
free(ptr);
}
Pythonコード:
fillprototype(lib.get, c_char_p, POINTER(some_model)])
fillprototype(lib.freeme, None, [c_char_p])
// what i want to do here: get a string into python so that i can work
// with it and release the memory in the lib.
c_str = lib.get(some_model)
y = ''.join(c_str)
lib.freeme(c_str)
print()c_strの場合、すべてがそこにあります。問題はPythonの最後の行にあります(またはそうであるようです)。メモリを解放できません-ライブラリが間違ったポインタを取得しています。私がここで間違っていることは何ですか?(そして、boost :: pythonなどを提案しないでください)。
*** glibc detected *** python2: munmap_chunk(): invalid pointer: 0x00000000026443fc ***