/*++ Copyright (c) 1996 Microsoft Corporation Module Name: connect.cxx Abstract: IIS MetaBase connection point code. Author: Michael W. Thomas 02-Oct-96 Revision History: --*/ /*+========================================================================== File: CONNECT.CPP Summary: Implementation file for the connection points (and their connections) offered by the connectable objects in the STOSERVE server sample. COM objects are implemented for Connection Point Enumerators, Connection Points, and Connection Enumerators. For a comprehensive tutorial code tour of this module's contents and offerings see the accompanying STOSERVE.TXT file. For more specific technical details on the internal workings see the comments dispersed throughout the module's source code. Classes: COEnumConnectionPoints, COConnectionPoint, and COEnumConnections. Functions: none. Origin: 6-10-96: atrent - Editor inheritance from CONSERVE OLE Tutorial Code Sample. Very little change was required. ---------------------------------------------------------------------------- This file is part of the Microsoft OLE Tutorial Code Samples. Copyright (C) Microsoft Corporation, 1996. All rights reserved. This source code is intended only as a supplement to Microsoft Development Tools and/or on-line documentation. See these other materials for detailed information regarding Microsoft code samples. THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. ==========================================================================+*/ #include "precomp.hxx" /*--------------------------------------------------------------------------- COEnumConnectionPoints's implementation of its main COM object class including Constructor, Destructor, QueryInterface, AddRef, Release, Next, Skip, Reset, and Clone. ---------------------------------------------------------------------------*/ /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnectionPoints::COEnumConnectionPoints Summary: COEnumConnectionPoints Constructor. Args: IUnknown* pHostObj Pointer to the host object whose connection points are being enumerated. Modifies: m_cRefs, m_pHostObj, m_iEnumIndex, m_cConnPts, and m_paConnPts. Returns: void M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ COEnumConnectionPoints::COEnumConnectionPoints( IUnknown * pHostObj) { // Zero the COM object's reference count. m_cRefs = 0; // Assign the Host Object pointer. m_pHostObj = pHostObj; // Initialize the Connection Point enumerator variables. m_iEnumIndex = 0; m_cConnPts = 0; m_paConnPts = NULL; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnectionPoints::~COEnumConnectionPoints Summary: COEnumConnectionPoints Destructor. Args: void Modifies: m_paConnPts. Returns: void M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ COEnumConnectionPoints::~COEnumConnectionPoints(void) { if (NULL != m_paConnPts) { UINT i; // Release all the connection point interface pointers. for (i=0; iRelease(); // Delete the array of interface pointers. delete [] m_paConnPts; } } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnectionPoints::Init Summary: COEnumConnectionPoints Initialization method. Create any necessary arrays, structures, and objects. Args: ULONG cConnPts, Number of Connections Points. IConnectionPoint** paConnPts, Pointer to array of connection point interface pointers. ULONG iEnumIndex The initial Enumerator index value. Modifies: m_cConnPts, m_paConnPts, m_iEnumIndex. Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ HRESULT COEnumConnectionPoints::Init( ULONG cConnPts, IConnectionPoint ** paConnPts, ULONG iEnumIndex) { HRESULT hr = NOERROR; UINT i; // Remember the number of Connection points. m_cConnPts = cConnPts; // Remember the initial enumerator index. m_iEnumIndex = iEnumIndex; // Create a copy of the array of connection points and keep it inside // this enumerator COM object. m_paConnPts = new IConnectionPoint* [(UINT) cConnPts]; // Fill the array copy with the IConnectionPoint interface pointers from // the array passed. AddRef for each new Interface pointer copy made. if (NULL != m_paConnPts) { for (i=0; iAddRef(); } } else hr = E_OUTOFMEMORY; return (hr); } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnectionPoints::QueryInterface Summary: QueryInterface of the COEnumConnectionPoints non-delegating IUnknown implementation. Args: REFIID riid, [in] GUID of the Interface being requested. PPVOID ppv) [out] Address of the caller's pointer variable that will receive the requested interface pointer. Modifies: . Returns: HRESULT M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COEnumConnectionPoints::QueryInterface( REFIID riid, PPVOID ppv) { HRESULT hr = E_NOINTERFACE; *ppv = NULL; // The IEnumConnectionPoints interface is implemented directly in // this COM object rather than being a nested interface implementation. if (IID_IUnknown == riid || IID_IEnumConnectionPoints == riid) *ppv = (LPVOID)this; if (NULL != *ppv) { // We've handed out a pointer to the interface so obey the COM rules // and AddRef the reference count. ((LPUNKNOWN)*ppv)->AddRef(); hr = NOERROR; } return (hr); } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnectionPoints::AddRef Summary: AddRef of the COEnumConnectionPoints non-delegating IUnknown implementation. Args: void Modifies: m_cRefs. Returns: ULONG New value of m_cRefs (COM object's reference count). M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP_(ULONG) COEnumConnectionPoints::AddRef(void) { ULONG cRefs; cRefs = ++m_cRefs; // Also AddRef the host object to ensure it stays around as long as // this enumerator. m_pHostObj->AddRef(); return cRefs; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnectionPoints::Release Summary: Release of the COEnumConnectionPoints non-delegating IUnknown implementation. Args: void Modifies: m_cRefs. Returns: ULONG New value of m_cRefs (COM object's reference count). M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP_(ULONG) COEnumConnectionPoints::Release(void) { ULONG cRefs; // Pass this release along to the Host object being enumerated. m_pHostObj->Release(); cRefs = --m_cRefs; if (0 == cRefs) { // We artificially bump the main ref count to prevent reentrancy via // the main object destructor. m_cRefs++; delete this; } return cRefs; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnectionPoints::Next Summary: The Next member method of this IEnumConnectionPoints interface implementation. Called by outside clients of a COEnumConnectionPoints object to request that a number of next connection point interface pointers be deposited into an array supplied by the caller. Args: ULONG cReq Number of connection points requested for return (starting at the current Enumerator index). IConnectionPoint** paConnPts, Pointer to a caller's output array that will receive the enumerated IConnectionPoint interface pointers. ULONG* cEnumerated) Pointer to a ULONG variable that will contain the number of connection points actually enumerated by this call. Modifies: . Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COEnumConnectionPoints::Next( ULONG cReq, IConnectionPoint ** paConnPts, ULONG * pcEnumerated) { HRESULT hr = NOERROR; ULONG cRet = 0; // Make sure the argument values passed are valid. if (NULL != m_paConnPts) { if (NULL != paConnPts) { if (NULL != *paConnPts && m_iEnumIndex < m_cConnPts) { if (NULL != pcEnumerated) *pcEnumerated = 0L; else if (1L != cReq) hr = E_POINTER; } else hr = S_FALSE; } else hr = E_POINTER; } else hr = S_FALSE; if (SUCCEEDED(hr)) { // Starting at the current Enumerator index, loop to assign the // requested number of output connection point interface pointers. for (; m_iEnumIndex < m_cConnPts && cReq > 0; paConnPts++, cRet++, cReq--) { // Assign from the inside Enumerator array to the specified receiving // array. *paConnPts = m_paConnPts[m_iEnumIndex++]; // After assigning a copy of an IConnectionPoint pointer, AddRef it. if (NULL != *paConnPts) (*paConnPts)->AddRef(); } // Assign the output number of connection points enumerated. if (NULL != pcEnumerated) *pcEnumerated = cRet; } return hr; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnectionPoints::Skip Summary: The Skip member method of this IEnumConnectionPoints interface implementation. Starting at the current Enumerator index, skip the specified number of connection point items. Args: ULONG cSkip Number of Connection Point items to skip. Modifies: . Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COEnumConnectionPoints::Skip( ULONG cSkip) { HRESULT hr = NOERROR; // If there really is a connection point array and the requested // amount of skip does not exceed the number of connection points, // then bump the index by the requested skip amount. if (NULL != m_paConnPts && (m_iEnumIndex + cSkip) < m_cConnPts) m_iEnumIndex += cSkip; else hr = S_FALSE; return hr; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnectionPoints::Reset Summary: The Reset member method of the IEnumConnectionPoints interface implementation. Resets the Enumeration index to the first connection point item in the array. Args: void. Modifies: . Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COEnumConnectionPoints::Reset( void) { // Zero the main Enumerator index. m_iEnumIndex = 0; return NOERROR; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnectionPoints::Clone Summary: The Clone member method of this IEnumConnectionPoints interface implementation. Creates a new clone of this entire Connection Point enumerator COM object. Args: IEnumConnectionPoints** ppIEnum Address of the caller's output pointer variable that will receive the IEnumConnectionPoints interface pointer of the new enumerator clone. Modifies: ... Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COEnumConnectionPoints::Clone( IEnumConnectionPoints ** ppIEnum) { HRESULT hr; COEnumConnectionPoints * pCOEnum; // NULL the output variable first. *ppIEnum = NULL; // Create the Clone Enumerator COM object. pCOEnum = new COEnumConnectionPoints(m_pHostObj); if (NULL != pCOEnum) { // Initialize it with same values as in this existing enumerator. hr = pCOEnum->Init(m_cConnPts, m_paConnPts, m_iEnumIndex); if (SUCCEEDED(hr)) { // QueryInterface to return the requested interface pointer. // An AddRef will be conveniently done by the QI. hr = pCOEnum->QueryInterface( IID_IEnumConnectionPoints, (PPVOID)ppIEnum); } else { delete pCOEnum; } } else hr = E_OUTOFMEMORY; return hr; } /*--------------------------------------------------------------------------- COConnectionPoint's implementation of its main COM object class including Constructor, Destructor, QueryInterface, AddRef, Release, GetConnectionInterface, GetConnectionPointContainer, Advise, Unadvise, and EnumConnections. ---------------------------------------------------------------------------*/ /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COConnectionPoint::COConnectionPoint Summary: COConnectionPoint Constructor. Args: IUnknown* pHostObj Pointer to IUnknown of the connectable object offering this connection point. Modifies: ... Returns: void M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ COConnectionPoint::COConnectionPoint( IUnknown * pHostObj) { // Zero the COM object's reference count. m_cRefs = 0; // Remember an IUnknown pointer to the connectable object that offers // this connection point. Since this connection point object's lifetime // is geared to that of the connectable object there is no need to // AddRef the following copied pointer to the connectable object. m_pHostObj = pHostObj; // Initialize the Connection Point variables. m_dwNextCookie = COOKIE_START_VALUE; m_uiMaxIndex = 0; m_cConnections = 0; m_paConnections = NULL; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COConnectionPoint::~COConnectionPoint Summary: COConnectionPoint Destructor. Args: void Modifies: m_paConnections. Returns: void M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ COConnectionPoint::~COConnectionPoint(void) { UINT i; IUnknown * pUnk; if (NULL != m_paConnections) { // Release all the connection sink interface pointers. for (i=0; iRelease(); } // Delete the array of interface pointers. delete [] m_paConnections; } } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COConnectionPoint::Init Summary: COConnectionPoint Initialization method. Create any necessary arrays, structures, and subordinate objects. Args: REFIID riid Reference to the IID of the Sink interface associated with this connection point. Modifies: ... Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ HRESULT COConnectionPoint::Init( REFIID riid) { HRESULT hr = NOERROR; CONNECTDATA * paConns; // Keep a copy of the reference to the IID of the sink interface // associated with this connection point. Needed for later // use by the GetConnectionInterface method. m_iidSink = riid; // Build the initial dynamic array for connections. paConns = new CONNECTDATA[ALLOC_CONNECTIONS]; if (NULL != paConns) { // Zero the array. memset(paConns, 0, ALLOC_CONNECTIONS * sizeof(CONNECTDATA)); // Rig this connection point object so that it will use the // new internal array of connections. m_uiMaxIndex = ALLOC_CONNECTIONS; m_paConnections = paConns; } else hr = E_OUTOFMEMORY; return (hr); } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COConnectionPoint::QueryInterface Summary: QueryInterface of the COConnectionPoint non-delegating IUnknown implementation. Args: REFIID riid, [in] GUID of the Interface being requested. PPVOID ppv) [out] Address of the caller's pointer variable that will receive the requested interface pointer. Modifies: . Returns: HRESULT M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COConnectionPoint::QueryInterface( REFIID riid, PPVOID ppv) { HRESULT hr = E_NOINTERFACE; *ppv = NULL; // The IConnectionPoint interface is implemented directly in this // COM object rather than being a nested interface implementation. if (IID_IUnknown == riid || IID_IConnectionPoint == riid) *ppv = (LPVOID)this; if (NULL != *ppv) { // We've handed out a pointer to the interface so obey the COM rules // and AddRef the reference count. ((LPUNKNOWN)*ppv)->AddRef(); hr = NOERROR; } return (hr); } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COConnectionPoint::AddRef Summary: AddRef of the COConnectionPoint non-delegating IUnknown implementation. Args: void Modifies: m_cRefs. Returns: ULONG New value of m_cRefs (COM object's reference count). M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP_(ULONG) COConnectionPoint::AddRef(void) { ULONG cRefs; cRefs = InterlockedIncrement((long *)&m_cRefs); return cRefs; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COConnectionPoint::Release Summary: Release of the COConnectionPoint non-delegating IUnknown implementation. Args: void Modifies: m_cRefs. Returns: ULONG New value of m_cRefs (COM object's reference count). M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP_(ULONG) COConnectionPoint::Release(void) { ULONG cRefs; cRefs = InterlockedDecrement((long *)&m_cRefs); if (0 == cRefs) { // We artificially bump the main ref count to prevent reentrancy via // the main object destructor. We relinquish thread ownership of this // object prior to deleting it--a good practice. InterlockedIncrement((long *)&m_cRefs); delete this; } return cRefs; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COConnectionPoint::GetSlot Summary: An internal private utility member method to obtain a free slot in the dynamic connections array. GetSlot will expand the dynamic array for more entries if needed. To guarantee thread safety, this private method should always be called within the protection of a bracketed OwnThis, UnOwnThis pair. Args: UINT* puiFreeSlot Address of an output variable to receive the free slot index. Modifies: m_uiMaxIndex, m_paConnections. Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ HRESULT COConnectionPoint::GetSlot( UINT * puiFreeSlot) { HRESULT hr = NOERROR; BOOL bOpen = FALSE; UINT i; CONNECTDATA * paConns; // Zero the output variable. *puiFreeSlot = 0; // Loop to find an empty slot. for (i=0; iQueryInterface( IID_IConnectionPointContainer, (PPVOID) ppConnPtCon); return hr; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COConnectionPoint::Advise Summary: The Advise member method of this IConnectionPoint interface implementation. Called by clients to establish a connection of their sink to this connection point. Uses the CThreaded OwnThis mechanism to provide mutually exclusive access by multiple threads. Args: IUnknown* pUnkSink IUnknown interface pointer of the Sink object in the client. DWORD* pdwCookie Pointer to a DWORD in the client that will receive a unique key used by the client to refer to the connection established by this Advise call. Modifies: ... Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COConnectionPoint::Advise( IUnknown * pUnkSink, DWORD * pdwCookie) { HRESULT hr = NOERROR; UINT uiFreeSlot = 0; IUnknown * pISink = NULL; g_rSinkResource->Lock(TSRES_LOCK_WRITE); // Zero the output connection key. *pdwCookie = 0; // Get the specific associated client Sink interface that this // connection point expects to use for notifications. hr = pUnkSink->QueryInterface(m_iidSink, (PPVOID)&pISink); if (SUCCEEDED(hr)) { // Store the specific sink interface in this connection point's // array of live connections. First find a free slot (expand the // array if needed). hr = GetSlot(&uiFreeSlot); if (SUCCEEDED(hr)) { // Assign the new slot with the connection entry. m_paConnections[uiFreeSlot].pUnk = pISink; m_paConnections[uiFreeSlot].dwCookie = m_dwNextCookie; // Assign the output Cookie value. *pdwCookie = m_dwNextCookie; // Increment the Cookie counter. m_dwNextCookie++; // Increment the number of live connections. m_cConnections++; } } else hr = CONNECT_E_CANNOTCONNECT; g_rSinkResource->Unlock(); return hr; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COConnectionPoint::Unadvise Summary: The Unadvise member method of this IConnectionPoint interface implementation. Called by clients to disconnect a connection of their sink to this connection point. The connection is identified by the dwCookie argument (obtained by a previous Advise call). Uses the CThreaded OwnThis mechanism to provide mutually exclusive access by multiple threads. Args: DWORD dwCookie Connection key that was obtained by a previous Advise call. Modifies: . Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COConnectionPoint::Unadvise( DWORD dwCookie) { HRESULT hr = NOERROR; UINT uiSlot; if (0 != dwCookie) { g_rSinkResource->Lock(TSRES_LOCK_WRITE); hr = FindSlot(dwCookie, &uiSlot); if (SUCCEEDED(hr)) { // Release the sink interface. RELEASE_INTERFACE(m_paConnections[uiSlot].pUnk); // Mark the array entry as empty. m_paConnections[uiSlot].dwCookie = 0; // Decrement the number of live connections. m_cConnections--; } g_rSinkResource->Unlock(); } else hr = E_INVALIDARG; return hr; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COConnectionPoint::EnumConnections Summary: The EnumConnections member method of this IConnectionPoint interface implementation. Called to obtain an IEnumConnections enumerator interface that can be used to enumerate the connections of this connection point. Uses the CThreaded OwnThis mechanism to ensure mutually exclusive access by multiple threads. Args: IEnumConnections** ppIEnum Address of the caller's output pointer variable that will receive the enumerator IEnumConnections interface pointer. Modifies: ... Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COConnectionPoint::EnumConnections( IEnumConnections ** ppIEnum) { HRESULT hr = OLE_E_NOCONNECTION; CONNECTDATA * paConns; COEnumConnections * pCOEnum; UINT i,j; g_rSinkResource->Lock(TSRES_LOCK_READ); // Zero the output enumerator interface pointer. *ppIEnum = NULL; if (0 != m_cConnections) { // Create an array of CONNECTDATA structures. paConns = new CONNECTDATA[(UINT)m_cConnections]; if (NULL != paConns) { for (i=0, j=0; iInit(m_cConnections, paConns, 0); // QueryInterface to return the requested interface pointer. // An AddRef will be conveniently done by the QI. if (SUCCEEDED(hr)) { hr = pCOEnum->QueryInterface( IID_IEnumConnections, (PPVOID)ppIEnum); } } else { hr = E_OUTOFMEMORY; } // We're done with the locally constructed array copy--delete it. delete [] paConns; } else { hr = E_OUTOFMEMORY; } } g_rSinkResource->Unlock(); return hr; } STDMETHODIMP COConnectionPoint::InternalEnumSinks( CONNECTDATA **prgConnections, ULONG *pcConnections) { // Locals HRESULT hr = S_OK; BOOL fUnlock = FALSE; CONNECTDATA *pConns = NULL; ULONG cConns = 0; ULONG i; ULONG j; // Check args if ( ( prgConnections == NULL ) || ( pcConnections == NULL ) ) { hr = E_INVALIDARG; goto exit; } // Init *prgConnections = NULL; *pcConnections = 0; g_rSinkResource->Lock(TSRES_LOCK_READ); fUnlock = TRUE; cConns = m_cConnections; // Any listeners? if ( cConns == 0 ) { goto exit; } // Create an array of CONNECTDATA structures. pConns = new CONNECTDATA[cConns]; if ( pConns == NULL ) { hr = E_OUTOFMEMORY; goto exit; } // Set to 0. memset( pConns, 0, sizeof(CONNECTDATA)*cConns ); // Copy for ( i = 0, j = 0; ( iAddRef(); pConns[j].dwCookie = m_paConnections[i].dwCookie; j++; } // Return *prgConnections = pConns; *pcConnections = cConns; // Don't delete pConns = NULL; cConns = 0; exit: if ( fUnlock ) { g_rSinkResource->Unlock(); } if ( pConns != NULL ) { for ( j = 0; jRelease(); pConns[j].pUnk = NULL; } } delete [] pConns; pConns = NULL; } return hr; } /*--------------------------------------------------------------------------- COEnumConnections's implementation of its main COM object class including Constructor, Destructor, QueryInterface, AddRef, Release, Next, Skip, Reset, and Clone. ---------------------------------------------------------------------------*/ /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnections::COEnumConnections Summary: COEnumConnections Constructor. Args: IUnknown* pHostObj Pointer to IUnknown interface of the host Connection Point COM object whose connections are being enumerated. Modifies: m_cRefs, m_pHostObj, m_iEnumIndex, m_cConnections, and m_paConnections. Returns: void M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ COEnumConnections::COEnumConnections( IUnknown* pHostObj) { // Zero the COM object's reference count. m_cRefs = 0; // Assign the Host Object pointer. m_pHostObj = pHostObj; // Initialize the Connection Point enumerator variables. m_iEnumIndex = 0; m_cConnections = 0; m_paConnections = NULL; return; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnections::~COEnumConnections Summary: COEnumConnections Destructor. Args: void Modifies: m_paConnections. Returns: void M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ COEnumConnections::~COEnumConnections(void) { if (NULL != m_paConnections) { UINT i; // Release all the connected sink interface pointers. for (i=0; iRelease(); // Delete the array of connections. delete [] m_paConnections; } return; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnections::Init Summary: COEnumConnections Initialization method. Create any necessary arrays, structures, and objects. Args: ULONG cConnections Number of Connections. CONNECTDATA* paConnections, Pointer to array of connections. ULONG iEnumIndex The Enumerator index initial value. Modifies: m_cConnections, m_paConnections, m_pHostObj, m_iEnumIndex. Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ HRESULT COEnumConnections::Init( ULONG cConnections, CONNECTDATA* paConnections, ULONG iEnumIndex) { HRESULT hr = NOERROR; UINT i; // Remember the number of live Connections. m_cConnections = cConnections; // Remember the initial enumerator index. m_iEnumIndex = iEnumIndex; // Create a copy of the array of connections and keep it inside // this enumerator COM object. m_paConnections = new CONNECTDATA [(UINT) cConnections]; // Fill the array copy with the connection data from the connections // array passed. AddRef for each new sink Interface pointer copy made. if (NULL != m_paConnections) { for (i=0; iAddRef(); } } else hr = E_OUTOFMEMORY; return (hr); } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnections::QueryInterface Summary: QueryInterface of the COEnumConnections non-delegating IUnknown implementation. Args: REFIID riid, [in] GUID of the Interface being requested. PPVOID ppv) [out] Address of the caller's pointer variable that will receive the requested interface pointer. Modifies: . Returns: HRESULT M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COEnumConnections::QueryInterface( REFIID riid, PPVOID ppv) { HRESULT hr = E_NOINTERFACE; *ppv = NULL; // The IEnumConnections interface is implemented directly in // this COM object rather than being a nested interface implementation. if (IID_IUnknown == riid || IID_IEnumConnections == riid) *ppv = (LPVOID)this; if (NULL != *ppv) { // We've handed out a pointer to the interface so obey the COM rules // and AddRef the reference count. ((LPUNKNOWN)*ppv)->AddRef(); hr = NOERROR; } return (hr); } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnections::AddRef Summary: AddRef of the COEnumConnections non-delegating IUnknown implementation. Args: void Modifies: m_cRefs. Returns: ULONG New value of m_cRefs (COM object's reference count). M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP_(ULONG) COEnumConnections::AddRef(void) { ULONG cRefs; cRefs = InterlockedIncrement((long *)&m_cRefs); // Also AddRef the host object to ensure it stays around as long as // this enumerator. m_pHostObj->AddRef(); return cRefs; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnections::Release Summary: Release of the COEnumConnections non-delegating IUnknown implementation. Args: void Modifies: m_cRefs. Returns: ULONG New value of m_cRefs (COM object's reference count). M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP_(ULONG) COEnumConnections::Release(void) { ULONG cRefs; // Pass this release along to the Host object being enumerated. m_pHostObj->Release(); cRefs = InterlockedDecrement((long *)&m_cRefs); if (0 == cRefs) { // We artificially bump the main ref count to prevent reentrancy via // the main object destructor. InterlockedIncrement((long *)&m_cRefs); delete this; } return cRefs; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnections::Next Summary: The Next member method of this IEnumConnections interface implementation. Called by outside clients of a COEnumConnections object to request a number of next connections be returned in an array supplied by the caller. Args: ULONG cReq Number of connection points requested for return (starting at the current Enumerator index). CONNECTDATA* paConnections, Pointer to a caller's output array that will receive the enumerated connection data structures. ULONG* pcEnumerated) Pointer to a ULONG variable that will contain the number of connection points actually enumerated by this call. Modifies: . Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COEnumConnections::Next( ULONG cReq, CONNECTDATA* paConnections, ULONG* pcEnumerated) { HRESULT hr = NOERROR; ULONG cRet = 0; // Make sure the argument values passed are valid. if (NULL != m_paConnections) { if (NULL != paConnections) { if (m_iEnumIndex < m_cConnections) { if (NULL != pcEnumerated) *pcEnumerated = 0L; else if (1L != cReq) hr = E_POINTER; } else hr = S_FALSE; } else hr = E_POINTER; } else hr = S_FALSE; if (SUCCEEDED(hr)) { // Starting at the current Enumerator index, loop to assign the // requested number of output connection data structures. for (; m_iEnumIndex < m_cConnections && cReq > 0; paConnections++, m_iEnumIndex++, cRet++, cReq--) { // Because we are assigning a copy of a connection's data, AddRef // its sink interface pointer. if (NULL != m_paConnections[m_iEnumIndex].pUnk) m_paConnections[m_iEnumIndex].pUnk->AddRef(); // Assign a connection's data from the inside Enumerator array to // the specified output receiving array. *paConnections = m_paConnections[m_iEnumIndex]; } // Assign the output number of connections enumerated. if (NULL != pcEnumerated) *pcEnumerated = cRet; } return hr; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnections::Skip Summary: The Skip member method of this IEnumConnections interface implementation. Starting at the current Enumerator index, skip the specified number of connection items. Args: ULONG cSkip Number of Connection items to skip. Modifies: . Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COEnumConnections::Skip( ULONG cSkip) { HRESULT hr = NOERROR; // If there really is a connection array and the requested // amount of skip does not exceed the number of connections, // then bump the index by the requested skip amount. if (NULL != m_paConnections && (m_iEnumIndex + cSkip) < m_cConnections) m_iEnumIndex += cSkip; else hr = S_FALSE; return hr; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnections::Reset Summary: The Reset member method of the IEnumConnections interface implementation. Resets the Enumeration index to the first connection item in the array. Args: void. Modifies: . Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COEnumConnections::Reset( void) { // Zero the main Enumerator index. m_iEnumIndex = 0; return NOERROR; } /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M Method: COEnumConnections::Clone Summary: The Clone member method of this IEnumConnections interface implementation. Creates a new clone of this entire Connection enumerator COM object and returns a pointer to its IEnumConnections interface. Args: IEnumConnections** ppIEnum Address of the caller's output pointer variable that will receive the IEnumConnections interface pointer of the new enumerator clone. Modifies: ... Returns: HRESULT Standard OLE result code. NOERROR for success. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/ STDMETHODIMP COEnumConnections::Clone( IEnumConnections** ppIEnum) { HRESULT hr; COEnumConnections* pCOEnum; // NULL the output variable first. *ppIEnum = NULL; // Create the Clone Enumerator COM object. pCOEnum = new COEnumConnections(m_pHostObj); if (NULL != pCOEnum) { // Initialize it with same values as in this existing enumerator. hr = pCOEnum->Init(m_cConnections, m_paConnections, m_iEnumIndex); if (SUCCEEDED(hr)) { // QueryInterface to return the requested interface pointer. // An AddRef will be conveniently done by the QI. hr = pCOEnum->QueryInterface( IID_IEnumConnections, (PPVOID)ppIEnum); } else { delete pCOEnum; } } else hr = E_OUTOFMEMORY; return hr; }