首先,我发现了以下两个类似的问题:
在python ctypes 中向Windows API传递结构
ctypes并通过引用函数传递
第一个没有公认的答案,我不认为我在单独的过程中做任何事情。第二个简单地指出了pointer()和byref(),这两个我都尝试过使用,但都没有用。
现在,我的问题是:
我正试图用我自己的pReportInformation(它是指向第一个数据值为其自身大小的结构的指针)调用函数WERReportCreate。这会以各种方式失败,这取决于我如何进行,但我不确定如何正确地进行。这一点很复杂,因为其中一个要求是结构知道自己的大小,我不知道如何用程序来确定(尽管如果这是唯一的问题,我想我现在已经猜到了正确的值)。WER API的相关信息如下所示:
HRESULT WINAPI WerReportCreate(
__in PCWSTR pwzEventType,
__in WER_REPORT_TYPE repType,
__in_opt PWER_REPORT_INFORMATION pReportInformation,
__out HREPORT *phReportHandle
);
(完整信息请访问http://msdn.microsoft.com/en-us/library/windows/desktop/bb513625%28v=vs.85%29.aspx)
typedef struct _WER_REPORT_INFORMATION {
DWORD dwSize;
HANDLE hProcess;
WCHAR wzConsentKey[64];
WCHAR wzFriendlyEventName[128];
WCHAR wzApplicationName[128];
WCHAR wzApplicationPath[MAX_PATH];
WCHAR wzDescription[512];
HWND hwndParent;
} WER_REPORT_INFORMATION, *PWER_REPORT_INFORMATION;
(完整信息请访问http://msdn.microsoft.com/en-us/library/windows/desktop/bb513637%28v=vs.85%29.aspx)
这是我尝试过的代码:
import ctypes
import ctypes.wintypes
class ReportInfo( ctypes.Structure):
_fields_ = [ ("dwSize", ctypes.wintypes.DWORD),
("hProcess", ctypes.wintypes.HANDLE),
("wzConsentKey", ctypes.wintypes.WCHAR * 64),
("wzFriendlyEventName", ctypes.wintypes.WCHAR * 128),
("wzApplicationName", ctypes.wintypes.WCHAR * 128),
("wzApplicationPath", ctypes.wintypes.WCHAR * ctypes.wintypes.MAX_PATH),
("wzDescription", ctypes.wintypes.WCHAR * 512),
("hwndParent", ctypes.wintypes.HWND) ]
def genReportInfo():
import os
size = 32 #Complete SWAG, have tried many values
process = os.getpid()
parentwindow = ctypes.windll.user32.GetParent(process)
werreportinfopointer = ctypes.POINTER(ReportInfo)
p_werinfo = werreportinfopointer()
p_werinfo = ReportInfo(size, process, "consentkey", "friendlyeventname", "appname", "apppath", "desc", parentwindow)
return p_werinfo
if __name__ == '__main__':
reporthandle = ctypes.wintypes.HANDLE()
res = ctypes.wintypes.HRESULT()
### First pass NULL in as optional parameter to get default behavior ###
p_werinfo = None
res = ctypes.windll.wer.WerReportCreate(u'pwzEventType', 2, p_werinfo, ctypes.byref(reporthandle))
print "Return Code",res,"nHandle",reporthandle #Return Code 0, reporthandle is correct (verified by submitting report in a different test)
p_werinfo = genReportInfo() # Create our own struct
### Try Again Using Our Own Struct (via 'byref') ###
res = ctypes.windll.wer.WerReportCreate(u'pwzEventType', 2, ctypes.byref(p_werinfo), ctypes.byref(reporthandle))
print "Return Code",res,"nHandle",reporthandle #Return Code Nonzero, reporthandle is None
### Try Again Using Our Own Struct (directly) ###
res = ctypes.windll.wer.WerReportCreate(u'pwzEventType', 2, p_werinfo, ctypes.byref(reporthandle))
print "Return Code",res,"nHandle",reporthandle #Exception Occurs, Execution halts
这是我得到的输出:
Return Code 0
Handle c_void_p(26085328)
Return Code -2147024809
Handle c_void_p(None)
Traceback (most recent call last):
File "test.py", line 40, in <module>
res = ctypes.windll.wer.WerReportCreate(u'pwzEventType', s.byref(reporthandle))
WindowsError: exception: access violation writing 0x0000087C
事实上,当我传递null时,它是有效的,但当我真正传递我的(对我的?的引用)结构时却不起作用,这表明我有三个问题之一:我没有正确创建结构(我不确定wzConsentKey是否正确定义),或者我没有正确计算出结构的大小(我实际上使用struct.calcsize和各种选项来获得初始猜测,并随机加减1),或者我没有准确地传递(对?的引用)结构。
这就是我陷入困境的地方。任何帮助都将不胜感激(以及如何提高问题的清晰度、格式或质量的建议;这是我的第一篇文章)。
对发布的问题的一般简短回答是:确保将正确的信息放入结构中,除此之外,所提供的代码是创建和传递结构的一个很好的例子。以下是具体解决我问题的方法:
提供的代码有两个问题:首先,正如Mark Tolonen所指出的,我传递了一个不正确的大小。使用ctypes.sizeof(ReportInfo)解决了这个问题。第二个问题是,我使用了一个需要进程句柄的进程ID。使用OpenProcess获得一个有效的进程句柄来代替我的"进程"参数解决了第二个问题。
对于将来调试类似问题的任何人来说,将HRESULTS打印为十六进制数字而不是整数,以更好地理解返回代码:
print "Return Code %08x" % (res & 0xffffffff)
就我而言,这产生了以下结果:
Return Code 80070057
对于我最初的错误,以及
Return Code 80070006
对于第二个错误。使用上的信息http://msdn.microsoft.com/en-us/library/bb446131.aspx,我看到前半部分是元数据,后半部分是我实际的错误代码。在将十六进制数字的错误代码部分转换回十进制后,我使用http://msdn.microsoft.com/en-us/library/bb202810.aspx以确定
错误代码87(57,十六进制)表示"参数不正确"(大小错误)和
错误代码6(十六进制为6)表示"句柄无效"(我传入了进程ID)。
您可以使用ctypes.sizeof(ReportInfo)
来获取结构的字节大小。
只需使用genReportInfo
创建ReportInfo
实例。此时您不需要指针:
def genReportInfo():
import os
size = ctypes.sizeof(ReportInfo)
process = os.getpid()
parentwindow = ctypes.windll.user32.GetParent(process)
return ReportInfo(size, process, "consentkey", "friendlyeventname", "appname", "apppath", "desc", parentwindow)
这样调用WerReportCreate
。byref
将指针传递给ReportInfo
实例。
werinfo = genReportInfo()
res = ctypes.windll.wer.WerReportCreate(u'pwzEventType', 2, ctypes.byref(werinfo), ctypes.byref(reporthandle))
我认为这对你有用。我没有wer.dll
,所以我不能测试它。