我试图通过Python移植一些C dll(FANUC FOCAS Library - for CNC)代码,所以我编写了移植代码。(如下面所示),但是在加载DLL和调用函数时得到一个非常奇怪的结果。在我的例子中,我不理解在python中使用处理程序。
我想在python中应用下面的c代码。
声明( c)
#include "fwlib64.h"
FWLIBAPI short WINAPI cnc_allclibhndl3(const char *ipaddr,unsigned short port,
long timeout, unsigned short *FlibHndl);示例代码(c在focas库手册中)
#include "fwlib64.h"
void example( void )
{
unsigned short h;
short ret;
ODBST buf;
ret = cnc_allclibhndl3( "192.168.0.100", 8193, 1, &h ) ;
//
if ( !ret ) {
cnc_statinfo( h, &buf ) ;
cnc_freelibhndl( h ) ;
} else {
printf( "ERROR!(%d)\n", ret ) ;
}
}Testfocas.py
from ctypes import *
mylib = cdll.LoadLibrary('./Fwlib64.dll')
class ODBSYS(Structure):
pass
_fields_ =[
("dummy", c_ushort),
("max_axis", c_char*2),
("cnc_type", c_char*2),
("mt_type",c_char*2),
("series",c_char*4),
("version",c_char*4),
("axes",c_char*2),]
h=c_ushort()
pt=pointer(h)
ret=c_short()
buf=ODBSYS()
ret=mylib.cnc_allclibhndl3('192.168.0.100',8193,1,pt)
mylib.cnc_statinfo(h,buf)
mylib.cnc_freelibhndl(h)我希望函数返回0或-16,但是,在我的例子中,函数返回是
cnc_allclibhndl3 = 65520 (我猜是开放端口) cnc_statinfo = -8 cnc_freelibhndl -8
数据窗口函数的返回状态
EW_OK(0) Normal termination
EW_SOCKET(-16) Socket communication error Check the power supply of CNC, Ethernet I/F board, Ethernet connection cable.
EW_HANDLE(-8) Allocation of handle number is failed. 我不知道我有什么毛病。
发布于 2017-01-16 19:40:30
CDLL用于__cdecl调用约定。不建议使用cdll,因为它是跨模块的共享实例。
WINAPI被定义为__stdcall,所以使用WinDLL
mylib = WinDLL.LoadLibrary('./Fwlib64.dll')接下来,为您的参数和函数的结果类型定义argtypes和restype:
mylib.cnc_allclibhndl3.argtypes = c_char_p,c_ushort,c_long,POINTER(c_ushort)
mylib.cnc_allclibhndl3.restype = c_short最后,通过引用传递输出参数。它比创建一个pointer更有效。
h = c_ushort()
ret = mylib.cnc_allclibhndl3('192.168.0.100',8193,1,byref(h))没有提供cnc_statinfo和cnc_freelibhndl的原型。为它们定义argtypes和restype。
https://stackoverflow.com/questions/41675881
复制相似问题