我通过C ++ / CLI界面使用MS UIA(COM),而我的C#应用程序正在使用该C ++ / CLI界面(让我们将此接口/ dll称为uiacpp)
我在uiacpp中创建了事件处理机制,主要是遵循https://msdn.microsoft.com/en-us/library/windows/desktop/ff625914(v=vs.85).aspx
中的示例我面临的问题是,我注册到UIA的事件处理程序仅在我取消注册相同的事件(每次/每次/不同的事件/事件类型和测试)之后才被调用。当我注册事件时,我可以看到我的事件类的QueryInterface方法被调用了两次,显然来自UIA,因此UIA对它做了一些事情。然后我在测试中解雇了这个事件,但没有任何反应。当我取消注册事件时,QueryInterface被调用了几次,然后调用事件处理程序,然后调用release方法以获取由UIA制作的剩余引用(此时大约6个以上)来清理事物。
以下是代码:
C ++ / CLI类:
class CppUIAutomationEventHandler :
public ::IUIAutomationEventHandler
{
private:
LONG _refCount;
public:
int _eventCount;
gcroot<UIAMan::IUIAutomationEventHandler^> myHandler;
static std::list<IUIAutomationEventHandler*> *EventRegister;
// Constructor.
CppUIAutomationEventHandler() : _refCount(1), _eventCount(0)
{
}
// Constructor.
CppUIAutomationEventHandler(
UIAMan::IUIAutomationEventHandler^ aHandler)
: _refCount(1)
, _eventCount(0)
, myHandler(aHandler)
{
}
// IUnknown methods.
ULONG STDMETHODCALLTYPE AddRef()
{
ULONG ret = InterlockedIncrement(&_refCount);
return ret;
}
ULONG STDMETHODCALLTYPE Release()
{
ULONG ret = InterlockedDecrement(&_refCount);
if (ret == 0)
{
delete this;
return 0;
}
return ret;
}
HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppInterface)
{
if (riid == __uuidof(IUnknown) || riid == __uuidof(IUIAutomationEventHandler))
*ppInterface = static_cast<IUIAutomationEventHandler*>(this);
else
{
*ppInterface = NULL;
return E_NOINTERFACE;
}
this->AddRef();
return S_OK;
}
// IUIAutomationEventHandler methods
HRESULT STDMETHODCALLTYPE HandleAutomationEvent(::IUIAutomationElement * pSender, EVENTID eventID)
{
_eventCount++;
myHandler->HandleAutomationEvent(gcnew CUIAutomationElement(pSender, false), eventID);
return S_OK;
}
};
这是一个ref(托管c ++)类方法,C#调用它来注册事件(通过使用末尾的最后一个代码):
void CUIAutomation::AddAutomationEventHandler(
int eventId
, IUIAutomationElement^ element
, TreeScope scope
, IUIAutomationCacheRequest^ cacheRequest
, IUIAutomationEventHandler^ handler)
{
::IUIAutomationElement* el = safe_cast<CUIAutomationElement^>(element)->getElement();
::IUIAutomationEventHandler* _handler = new CppUIAutomationEventHandler(handler);
LastHResult = puia->AddAutomationEventHandler(
eventId
, el
, (::TreeScope)(int)scope
, (cacheRequest != nullptr) ? ((CUIAutomationCacheRequest^)cacheRequest)->getElement() : NULL
, _handler);
CppUIAutomationEventHandler::EventRegister->push_back(_handler);
};
我正在使用取消注册时使用的处理程序列表。 puia也是一个由以下内容创建的COM指针:
CUIAutomation::CUIAutomation()
{
CoInitializeEx(NULL, COINIT_MULTITHREADED);
::IUIAutomation* _puia;
HRESULT hr = CoCreateInstance(CLSID_CUIAutomation, NULL,
CLSCTX_INPROC_SERVER, IID_IUIAutomation,
(void**)&_puia);
if (SUCCEEDED(hr))
puia = _puia;
}
最后,这是C#调用:
使用uiacpp实现automationhandler类:
class AutomationHandler : IUIAutomationEventHandler
{
public AutomationHandler()
{
}
public void HandleAutomationEvent(IUIAutomationElement sender, int eventId)
{
Console.WriteLine("IUIAutomationEventHandler called");
}
}
和C#注册/取消注册行:
var aHandler = new AutomationHandler();
uia.AddAutomationEventHandler(UIA_EventIds.UIA_Window_WindowOpenedEventId, uia.GetRootElement(), TreeScope.TreeScope_Subtree, null, aHandler);
// for debugging
bool loop = true;
while(loop)
{
Thread.Sleep(500);
}
uia.RemoveAutomationEventHandler(UIA_EventIds.UIA_Window_WindowOpenedEventId, uia.GetRootElement(), aHandler);
答案 0 :(得分:1)
通过Windows消息循环调度这些COM事件。
这与您在注册和取消注册之间不提取消息这一事实相结合,导致事件被延迟,直到您取消注册并返回主消息循环。
一种解决方案是使用await Task.Delay
而不是阻止睡眠。