IDebugProgramProvider2 : : WatchForProviderEvents
Permet le processus de telle sorte qu'il soit notifié des événements de port.
HRESULT WatchForProviderEvents(
PROVIDER_FLAGS Flags,
IDebugDefaultPort2* pPort,
AD_PROCESS_ID processId,
CONST_GUID_ARRAY EngineFilter,
REFGUID guidLaunchingEngine,
IDebugPortNotify2* pEventCallback
);
int WatchForProviderEvents(
enum_PROVIDER_FLAGS Flags,
IDebugDefaultPort2 pPort,
AD_PROCESS_ID ProcessId,
CONST_GUID_ARRAY EngineFilter,
ref Guid guidLaunchingEngine,
IDebugPortNotify2 pEventCallback
);
Paramètres
Flags
[in] Une combinaison des indicateurs d'énumération de PROVIDER_FLAGS . Les balises suivantes sont courantes pour cet appel :Indicateur
Description
PFLAG_REMOTE_PORT
L'appelant s'exécute sur l'ordinateur distant.
PFLAG_DEBUGGEE
L'appelant est en cours de débogage (informations supplémentaires sur le marshaling sont retournées pour chaque nœud).
PFLAG_ATTACHED_TO_DEBUGGEE
L'appelant a été attaché mais pas lancé par le débogueur.
PFLAG_REASON_WATCH
L'appelant veut le surveiller les événements. Si cet indicateur n'est pas définie. l'événement de rappel est supprimé et l'appelant n'accepte plus des notifications.
pPort
[in] Le port que le processus d'appel s'exécute.processId
[in] Une structure d' AD_PROCESS_ID maintenant l'ID du processus qui contient le programme en question.EngineFilter
[in] Un tableau de GUID des moteurs de débogage associés au processus.guidLaunchingEngine
[in] GUID du moteur de débogage qui a lancé ce processus (le cas échéant).pEventCallback
[in] Un objet d' IDebugPortNotify2 qui reçoit des notifications d'événements.
Valeur de retour
En cas de réussite, retourne S_OK; sinon, retourne un code d'erreur.
Notes
Lorsqu'un appelant veut supprimer un gestionnaire d'événements qui a été généré avec un appel précédent à cette méthode, l'appelant passe les mêmes paramètres qu'elle avait la première fois mais les feuilles en dehors de la balise d' PFLAG_REASON_WATCH .
Exemple
L'exemple suivant indique comment appliquer cette méthode d'un objet de CDebugEngine qui expose l'interface d' IDebugProgramProvider2 .
STDMETHODIMP CDebugEngine::WatchForProviderEvents(
PROVIDER_FLAGS Flags,
IDebugDefaultPort2 *pPort,
AD_PROCESS_ID processId,
CONST_GUID_ARRAY EngineFilter,
REFGUID guidLaunchingEngine,
IDebugPortNotify2 *pPortNotify)
{
HRESULT hRes = E_FAIL;
if (EVAL(pPort != NULL) && EVAL(pPortNotify != NULL))
{
// We will only watch/send events about the process if the debugger
// is actually debugging the process, and only if this is an attach or a LoRIE launch
if (IsFlagSet(Flags, PFLAG_DEBUGGEE) &&
guidLaunchingEngine == GUID_NULL &&
processId.ProcessIdType == AD_PROCESS_ID_SYSTEM)
{
// We don't support WatchForProviderEvents when in interop mode
if (m_fInterop)
{
ASSERT(!"Shouldn't ever be called in interop mode");
hRes = E_FAIL;
}
else
{
if (IsFlagSet(Flags, PFLAG_REASON_WATCH))
{
// QI to get IDebugEventCallback2 which is required.
CComQIPtr<IDebugEventCallback2> pCallback(pPortNotify);
ASSERT(pCallback != NULL);
if ( pCallback != NULL )
{
// Register the callback
hRes = this->InitDebugSession(pCallback);
if ( S_OK == hRes )
{
// Get the IDebugProcess2 from the port and call AttachImpl
CComPtr<IDebugProcess2> spProcess;
hRes = pPort->GetProcess(processId, &spProcess);
if (HREVAL(S_OK, hRes))
{
hRes = AttachImpl(spProcess, NULL, NULL, processId.ProcessId.dwProcessId, ATTACH_REASON_USER, NULL);
if ( FAILED(hRes) && (!m_pPidList || 0 == m_pPidList->GetCount()) )
this->Cleanup();
}
}
else
this->Cleanup();
}
else
hRes = E_FAIL;
}
else
{
// Detach will be done by SDM calling on programs directly if there are managed programs.
// This handling is the case where no managed code ever ran.
if ( this->IsProcessBeingDebugged(processId.ProcessId.dwProcessId) )
{
ProgramList *pProgList = this->GetProgramListCopy();
if ( EVAL(pProgList) )
{
if ( pProgList->GetCount() == 0)
{
CComPtr<ICorDebugProcess> pCorProcess;
hRes = this->GetCorProcess(processId.ProcessId.dwProcessId, &pCorProcess);
if (HREVAL(S_OK, hRes) )
{
hRes = pCorProcess->Stop(INFINITE);
if ( HREVAL(S_OK, hRes) )
hRes = pCorProcess->Detach();
}
// Tell the engine that it should unregister this process from com+
this->UnregisterProcess(processId.ProcessId.dwProcessId);
// If there are no more pids left then cleanup everything.
if ( 0 == m_pPidList->GetCount() )
this->Cleanup();
}
// This is needed for cases where the SDM has not yet recieved program create
// by the time that we need to detach (example: the managed attach succeeds,
// but some other attach step fails).
else
{
PROGNODE *pProgNode = NULL;
while ( pProgNode = pProgList->Next(pProgNode) )
{
CDebugProgram * pProgram = ((CDebugProgram *)pProgNode->data);
hRes = pProgram->Detach();
}
}
delete pProgList;
}
}
else
hRes = S_OK;
}
}
}
else
{
hRes = S_FALSE;
}
}
else
{
hRes = E_INVALIDARG;
}
return hRes;
}