Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

341 lines
7.6 KiB

//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000-2001 Microsoft Corporation
//
// Module Name:
// CClusCfgCallback.cpp
//
// Description:
// This file contains the implementation of the CClusCfgCallback
// class.
//
// Documentation:
// TODO: fill in pointer to external documentation
//
// Header File:
// CClusCfgCallback.h
//
// Maintained By:
// David Potter (DavidP) 14-JUN-2001
// Vij Vasu (VVasu) 07-MAR-2000
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// Include Files
//////////////////////////////////////////////////////////////////////////////
// The precompiled header for this library
#include "Pch.h"
#include "CClusCfgCallback.h"
//////////////////////////////////////////////////////////////////////////////
//++
//
// CClusCfgCallback::CClusCfgCallback()
//
// Description:
// Constructor of the CClusCfgCallback class. This initializes
// the m_cRef variable to 1 instead of 0 to account of possible
// QueryInterface failure in DllGetClassObject.
//
// Arguments:
// None.
//
// Return Value:
// None.
//
// Remarks:
// None.
//
//--
//////////////////////////////////////////////////////////////////////////////
CClusCfgCallback::CClusCfgCallback( void )
: m_cRef( 1 )
{
} //*** CClusCfgCallback::CClusCfgCallback
//////////////////////////////////////////////////////////////////////////////
//++
//
// CClusCfgCallback::~CClusCfgCallback()
//
// Description:
// Destructor of the CClusCfgCallback class.
//
// Arguments:
// None.
//
// Return Value:
// None.
//
// Remarks:
// None.
//
//--
//////////////////////////////////////////////////////////////////////////////
CClusCfgCallback::~CClusCfgCallback( void )
{
} //*** CClusCfgCallback::~CClusCfgCallback
//////////////////////////////////////////////////////////////////////////////
//++
//
// HRESULT
// CClusCfgCallback::S_HrCreateInstance(
// IUnknown ** ppunkOut
// )
//
// Description:
// Creates a CClusCfgCallback instance.
//
// Arguments:
// ppunkOut
// The IUnknown interface to the newly create object.
//
// Return Values:
// S_OK
// Success.
//
// E_OUTOFMEMORY
// Not enough memory to create the object.
//
// other HRESULTs
// Object initialization failed.
//
//--
//////////////////////////////////////////////////////////////////////////////
HRESULT
CClusCfgCallback::S_HrCreateInstance(
IUnknown ** ppunkOut
)
{
CClusCfgCallback * pccb;
HRESULT hr;
pccb = new CClusCfgCallback();
if ( pccb != NULL )
{
hr = pccb->QueryInterface( IID_IUnknown, reinterpret_cast< void ** >( ppunkOut ) );
pccb->Release( );
} // if: error allocating object
else
{
hr = THR( E_OUTOFMEMORY );
} // else: out of memory
return hr;
} //*** CClusCfgCallback::S_HrCreateInstance()
//////////////////////////////////////////////////////////////////////////////
//++
//
// CClusCfgCallback::AddRef
//
// Description:
// Increment the reference count of this object by one.
//
// Arguments:
// None.
//
// Return Value:
// The new reference count.
//
// Remarks:
// None.
//
//--
//////////////////////////////////////////////////////////////////////////////
STDMETHODIMP_( ULONG )
CClusCfgCallback::AddRef( void )
{
InterlockedIncrement( &m_cRef );
return m_cRef;
} //*** CClusCfgCallback::AddRef
//////////////////////////////////////////////////////////////////////////////
//++
//
// CClusCfgCallback::Release
//
// Description:
// Decrement the reference count of this object by one.
//
// Arguments:
// None.
//
// Return Value:
// The new reference count.
//
// Remarks:
// None.
//
//--
//////////////////////////////////////////////////////////////////////////////
STDMETHODIMP_( ULONG )
CClusCfgCallback::Release( void )
{
LONG cRef;
cRef = InterlockedDecrement( &m_cRef );
if ( cRef == 0 )
{
delete this;
} // if: reference count decremented to zero
return cRef;
} //*** CClusCfgCallback::Release
//////////////////////////////////////////////////////////////////////////////
//++
//
// CClusCfgCallback::QueryInterface
//
// Description:
// Query this object for the passed in interface.
//
// Arguments:
// riidIn
// Id of interface requested.
//
// ppvOut
// Pointer to the requested interface.
//
// Return Value:
// S_OK
// If the interface is available on this object.
//
// E_NOINTERFACE
// If the interface is not available.
//
// E_POINTER
// If ppvOut is NULL.
//
// Remarks:
// None.
//
//--
//////////////////////////////////////////////////////////////////////////////
STDMETHODIMP
CClusCfgCallback::QueryInterface(
REFIID riidIn
, void ** ppvOut
)
{
HRESULT hr = S_OK;
//
// Validate arguments.
//
Assert( ppvOut != NULL );
if ( ppvOut == NULL )
{
hr = THR( E_POINTER );
goto Cleanup;
}
//
// Handle known interfaces.
//
if ( IsEqualIID( riidIn, IID_IUnknown ) )
{
*ppvOut = static_cast< IClusCfgCallback * >( this );
} // if: IUnknown
else if ( IsEqualIID( riidIn, IID_IClusCfgCallback ) )
{
*ppvOut = static_cast< IClusCfgCallback * >( this );
} // else if: IClusCfgCallback
else
{
*ppvOut = NULL;
hr = E_NOINTERFACE;
} // else
//
// Add a reference to the interface if successful.
//
if ( SUCCEEDED( hr ) )
{
((IUnknown *) *ppvOut)->AddRef();
} // if: success
Cleanup:
return hr;
} //*** CClusCfgCallback::QueryInterface
//////////////////////////////////////////////////////////////////////////////
//++
//
// CClusCfgCallback::SendStatusReport
//
// Description:
// Handle a progress notification
//
// Arguments:
// bstrNodeNameIn
// Name of the node that sent the status report.
//
// clsidTaskMajorIn
// clsidTaskMinorIn
// GUID identifying the notification.
//
// ulMinIn
// ulMaxIn
// ulCurrentIn
// Values that indicate the percentage of this task that is
// completed.
//
// hrStatusIn
// Error code.
//
// bstrDescriptionIn
// String describing the notification.
//
// pftTimeIn
// bstrReferenceIn
//
// Return Value:
// Always
//
// Exceptions Thrown:
// None.
//
//--
//////////////////////////////////////////////////////////////////////////////
HRESULT
CClusCfgCallback::SendStatusReport(
BSTR bstrNodeNameIn
, CLSID clsidTaskMajorIn
, CLSID clsidTaskMinorIn
, ULONG ulMinIn
, ULONG ulMaxIn
, ULONG ulCurrentIn
, HRESULT hrStatusIn
, BSTR bstrDescriptionIn
, FILETIME * pftTimeIn
, BSTR bstrReferenceIn
) throw()
{
wprintf( L"Notification ( %d, %d, %d ) =>\n '%s' ( Error Code %#08x )\n", ulMinIn, ulMaxIn, ulCurrentIn, bstrDescriptionIn, hrStatusIn );
return S_OK;
} //*** CClusCfgCallback::SendStatusReport