//*************************************************************************** // // MINISERV.CPP // // Module: OLE MS SNMP Property Provider // // Purpose: Implementation for the SnmpSetEventObject class. // // Copyright (c) 1996-2001 Microsoft Corporation, All Rights Reserved // //*************************************************************************** #include #include #include #include #include #include #include #include #include #include #include #include "classfac.h" #include "guids.h" #include #include #include #include #include #include #include #include #include #include "wndtime.h" #include "rmon.h" #include "trrtprov.h" #include "trrt.h" BOOL PutClassAsyncEventObject :: Update ( WbemSnmpErrorObject &a_ErrorObject ) { BOOL t_Status = FALSE ; if ( t_Status ) { ProcessComplete () ; } else { t_Status = FALSE ; a_ErrorObject.SetStatus ( WBEM_SNMP_E_INVALID_CLASS ) ; a_ErrorObject.SetWbemStatus ( WBEM_E_FAILED ) ; a_ErrorObject.SetMessage ( L"Unknown Class" ) ; } return t_Status ; } PutClassAsyncEventObject :: PutClassAsyncEventObject ( CImpTraceRouteProv *a_Provider , IWbemClassObject *a_Object , ULONG a_OperationFlag , IWbemObjectSink *a_NotificationHandler , IWbemContext *a_Context ) : WbemTaskObject ( a_Provider , a_NotificationHandler , a_OperationFlag ) , m_Class ( NULL ) , m_Object ( a_Object ) { m_Object->AddRef () ; } PutClassAsyncEventObject :: ~PutClassAsyncEventObject () { // Get Status object delete [] m_Class ; m_Object->Release () ; IWbemClassObject *t_NotifyStatus = NULL ; BOOL t_Status = GetExtendedNotifyStatusObject ( &t_NotifyStatus ) ; if ( t_Status ) { HRESULT t_Result = m_NotificationHandler->Indicate ( 1 , & t_NotifyStatus ) ; t_NotifyStatus->Release () ; } } void PutClassAsyncEventObject :: ProcessComplete () { if ( SUCCEEDED ( m_ErrorObject.GetWbemStatus () ) ) { } else { } /* * Remove worker object from worker thread container */ if ( CImpTraceRouteProv:: s_DefaultThreadObject->GetActive () ) { CImpTraceRouteProv:: s_BackupThreadObject->ReapTask ( *this ) ; } else { CImpTraceRouteProv:: s_DefaultThreadObject->ReapTask ( *this ) ; } delete this ; } void PutClassAsyncEventObject :: Process () { switch ( m_State ) { case 0: { Complete () ; BOOL t_Status = Update ( m_ErrorObject ) ; if ( t_Status ) { } else { ProcessComplete () ; } } break ; default: { } break ; } }