我有一个Python脚本,它将打开并解析一些DAT文件,这些文件包含压缩的其他内容(QFS压缩,因此没有构建的函数来处理它)十六进制数据。我在Github的C中找到了一个执行解压缩和重新压缩的脚本,并且打算从Python调用。
Canopy的Python 2.7与我的用于编译C代码的Win8.1 64位机器不相称。它确实编译有错误,但它在调用时崩溃内核,然后我必须重新编译或者我得到一个DLL错误(它找到了dll但不能使用它)。
所以我通过Anaconda安装了Python 3.4。它在我的机器上运行良好,但在编译过程中出现错误。
这里似乎是最后的相关C代码。丢失的代码是使用的实际算法。 代码本身可以在 https://github.com/wouanagaine/SC4Mapper-2013/blob/master/Modules/qfs.c 如果你需要更多它。如果您希望查看,setup.py代码位于相同的“Modules”文件夹中。
static PyObject *QFSEncode( PyObject *self, PyObject *args )
{
char* buffer;
unsigned char* bufferIn;
int len;
unsigned char* out;
PyObject *pRet ;
if (!PyArg_ParseTuple(args, "s#", &buffer, &len))
return NULL;
out = (unsigned char*)malloc( len*2 );
bufferIn = (unsigned char*)malloc( len + 2000 );
memcpy( bufferIn, buffer, len );
compress_data( (unsigned char*)bufferIn, &len, out);
pRet = Py_BuildValue( "s#", out, len );
free( out );
free( bufferIn );
return pRet;
}
static PyObject *QFSDecode( PyObject *self, PyObject *args )
{
char* buffer;
int len;
unsigned char* out;
PyObject *pRet ;
if (!PyArg_ParseTuple(args, "s#", &buffer, &len))
return NULL;
out = uncompress_data( (unsigned char*)buffer, &len);
pRet = Py_BuildValue( "s#", out, len );
free( out );
return pRet;
}
static PyMethodDef QFSMethods[] =
{
{"decode", QFSDecode, METH_VARARGS, "decode a buffer" },
{"encode", QFSEncode, METH_VARARGS, "encode a buffer" },
{NULL, NULL, 0, NULL} /* Sentinel */
};
PyMODINIT_FUNC initQFS(void)
{
(void) Py_InitModule("QFS", QFSMethods);
}
当我尝试编译它时,我得到了这个回报
C:\Users\John\Desktop\DAT>python setup.py install
running install
running build
running build_ext
building 'QFS' extension
C:\strawberry\c\bin\gcc.exe -mdll -O -Wall -IC:\Anaconda3\include -IC:\Ana
\include -c qfs.c -o build\temp.win-amd64-3.4\Release\qfs.o
qfs.c: In function 'QFSEncode':
qfs.c:259:11: warning: pointer targets in assignment differ in signedness
nter-sign]
qfs.c: In function 'initQFS':
qfs.c:293:5: warning: implicit declaration of function 'Py_InitModule' [-W
it-function-declaration]
qfs.c:294:1: warning: control reaches end of non-void function [-Wreturn-t
qfs.c: In function 'compress_data':
qfs.c:184:32: warning: 'bestoffs' may be used uninitialized in this functi
maybe-uninitialized]
writing build\temp.win-amd64-3.4\Release\QFS.def
C:\strawberry\c\bin\gcc.exe -shared -s build\temp.win-amd64-3.4\Release\qf
ild\temp.win-amd64-3.4\Release\QFS.def -LC:\Anaconda3\libs -LC:\Anaconda3\
d\amd64 -lpython34 -lmsvcr100 -o build\lib.win-amd64-3.4\QFS.pyd
Cannot export PyInit_QFS: symbol not defined
build\temp.win-amd64-3.4\Release\qfs.o:qfs.c:(.text+0x98b): undefined refe
to `Py_InitModule'
collect2.exe: error: ld returned 1 exit status
error: command 'C:\\strawberry\\c\\bin\\gcc.exe' failed with exit status 1
这是第259行
bufferIn = (unsigned char*)malloc( len + 2000 );
我试着搞乱指针,但我对此没有信心。我确实设法让第一个错误消失,但我很确定我打破了代码功能。 我仍然得到第二个错误。
我不是Python的新手,但这是我第一次涉足更高级别的Python编程。 我不知道任何C,如果它不太复杂,我几乎不能遵循一些代码。
答案 0 :(得分:0)
Py_InitModule()
,它或多或少被PyModule_Create()
取代。请参阅Porting Extension Modules to Python 3。