home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
com
/
tutsamp
/
pertext
/
connect.cpp
next >
Wrap
C/C++ Source or Header
|
1997-08-05
|
44KB
|
1,428 lines
/*+==========================================================================
File: CONNECT.CPP
Summary: Implementation file for the connection points (and their
connections) offered by the connectable objects in the
PERTEXT 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 tutorial PERTEXT.HTM
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: 5-12-97: atrent - Editor inheritance from STOSERVE
Tutorial Code Sample. Very little change was required.
----------------------------------------------------------------------------
This file is part of the Microsoft COM Tutorial Code Samples.
Copyright (C) Microsoft Corporation, 1997. 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.
==========================================================================+*/
/*---------------------------------------------------------------------------
We include WINDOWS.H for all Win32 applications.
We include OLE2.H because we will be calling the COM/OLE Libraries.
We include OLECTL.H because it has definitions for connectable objects.
We include APPUTIL.H because we will be building this application using
the convenient Virtual Window and Dialog classes and other
utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
We include IPAGES.H and PAGEGUID.H for the common page-related
Interface class, GUID, and CLSID specifications.
We include SERVER.H because it has internal class declarations
for the server housing for the components in this DLL.
We include CONNECT.H for object class declarations for the various
connection point and connection COM objects used in PERTEXT.
We include TEXTPAGE.H because it has the class COEnumConnectionPoints
declarations as well as the COTextPage class declaration.
---------------------------------------------------------------------------*/
#include <windows.h>
#include <ole2.h>
#include <olectl.h>
#include <apputil.h>
#include <ipages.h>
#include <pageguid.h>
#include "server.h"
#include "connect.h"
#include "textpage.h"
/*---------------------------------------------------------------------------
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;
return;
}
/*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; i<m_cConnPts; i++)
if (NULL != m_paConnPts[i])
m_paConnPts[i]->Release();
// Delete the array of interface pointers.
delete [] m_paConnPts;
}
return;
}
/*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 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; i<cConnPts; i++)
{
m_paConnPts[i] = paConnPts[i];
m_paConnPts[i]->AddRef();
}
}
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.
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.
Returns: HRESULT
Standard 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.
Returns: HRESULT
Standard 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.
Returns: HRESULT
Standard 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.
Returns: HRESULT
Standard 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.
if (SUCCEEDED(hr))
hr = pCOEnum->QueryInterface(
IID_IEnumConnectionPoints,
(PPVOID)ppIEnum);
}
}
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.
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;
return;
}
/*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; i<m_uiMaxIndex; i++)
{
pUnk = m_paConnections[i].pUnk;
if (NULL != pUnk)
pUnk->Release();
}
// Delete the array of interface pointers.
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: 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.
Returns: HRESULT
Standard 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.
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 = ++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 = --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.
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.
Args: UINT* puiFreeSlot
Address of an output variable to receive the free slot index.
Modifies: m_uiMaxIndex, m_paConnections.
Returns: HRESULT
Standard 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; i<m_uiMaxIndex; i++)
{
if (m_paConnections[i].dwCookie == 0)
{
// We found an open empty slot.
*puiFreeSlot = i;
bOpen = TRUE;
break;
}
}
if (!bOpen)
{
// We didn't find an existing open slot in the array--it's full.
// Expand the array by ALLOC_CONNECTIONS entries and assign the
// appropriate output index.
paConns = new CONNECTDATA[m_uiMaxIndex + ALLOC_CONNECTIONS];
if (NULL != paConns)
{
// Copy the content of the old full array to the new larger array.
for (i=0; i<m_uiMaxIndex; i++)
{
paConns[i].pUnk = m_paConnections[i].pUnk;
paConns[i].dwCookie = m_paConnections[i].dwCookie;
}
// Zero (ie mark as empty) the expanded portion of the new array.
for (i=m_uiMaxIndex; i<m_uiMaxIndex+ALLOC_CONNECTIONS; i++)
{
paConns[i].pUnk = NULL;
paConns[i].dwCookie = 0;
}
// New larger array is ready--delete the old array.
delete [] m_paConnections;
// Rig the connection point to use the new larger array.
m_paConnections = paConns;
// Assign the output free slot as first entry in new expanded area.
*puiFreeSlot = m_uiMaxIndex;
// Calculate the new max index.
m_uiMaxIndex += ALLOC_CONNECTIONS;
}
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::FindSlot
Summary: An internal private utility member method to find an existing
slot (identified by the specified dwCookie value) in the
dynamic connections array.
Args: DWORD dwCookie,
The connection key (cookie) to find.
UINT* puiSlot)
Address of an output variable to receive the slot index.
Returns: HRESULT
Standard 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::FindSlot(
DWORD dwCookie,
UINT* puiSlot)
{
HRESULT hr = CONNECT_E_NOCONNECTION;
UINT i;
// Loop to find the Cookie.
for (i=0; i<m_uiMaxIndex; i++)
{
if (dwCookie == m_paConnections[i].dwCookie)
{
// If a cookie match is found, assign the output slot index.
*puiSlot = i;
hr = NOERROR;
break;
}
}
return hr;
}
/*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
Method: COConnectionPoint::GetConnectionInterface
Summary: The GetConnectionInterface member method of this
IConnectionPoint interface implementation. Called to get the
IID of the Sink interface associated with this connection
point.
Args: IID* piidSink
Pointer to the IID of the associated sink interface.
Returns: HRESULT
Standard 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::GetConnectionInterface(
IID* piidSink)
{
HRESULT hr = NOERROR;
if (NULL != piidSink)
*piidSink = m_iidSink;
else
hr = E_POINTER;
return hr;
}
/*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
Method: COConnectionPoint::GetConnectionPointContainer
Summary: The GetConnectionPointContainer member method of this
IConnectionPoint interface implementation. Called to get the
connection point container that contains this connection
point.
Args: IConnectionPointContainer** ppConnPtCon
Address of the pointer variable that will recieve the
IConnectionPointContainer interface pointer.
Returns: HRESULT
Standard 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::GetConnectionPointContainer(
IConnectionPointContainer** ppConnPtCon)
{
HRESULT hr;
// Use QueryInterface to get the interface pointer and to perform the
// needed AddRef on the returned pointer.
hr = m_pHostObj->QueryInterface(
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.
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.
Returns: HRESULT
Standard 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;
// 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 if (hr == E_NOINTERFACE)
{
// The sink does not support m_iidSink.
hr = CONNECT_E_CANNOTCONNECT;
}
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).
Args: DWORD dwCookie
Connection key that was obtained by a previous Advise call.
Returns: HRESULT
Standard 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)
{
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--;
}
}
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.
Args: IEnumConnections** ppIEnum
Address of the caller's output pointer variable that will
receive the enumerator IEnumConnections interface pointer.
Returns: HRESULT
Standard 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;
// 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; i<m_uiMaxIndex && j<m_cConnections; i++)
{
// Copy non-empty entries only.
if (0 != m_paConnections[i].dwCookie)
{
// Assign the occupied entry.
paConns[j].pUnk = (IUnknown*)m_paConnections[i].pUnk;
paConns[j].dwCookie = m_paConnections[i].dwCookie;
j++;
}
}
// Create a new COM object for enumerating connections. Pass
// 'this' as a pHostObj pointer used later to ensure the host
// connection point object stays alive as long as the enumerator
// that enumerates connections to that connection point.
pCOEnum = new COEnumConnections(this);
if (NULL != pCOEnum)
{
// Use the previously constructed (paConns) array of connections
// to init the new COEnumConnections COM object. The Init will
// build yet another internal copy of this array. Set the
// initial enumerator index to 0.
hr = pCOEnum->Init(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;
}
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; i<m_cConnections; i++)
m_paConnections[i].pUnk->Release();
// 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 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; i<cConnections; i++)
{
m_paConnections[i] = paConnections[i];
m_paConnections[i].pUnk->AddRef();
}
}
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.
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 = ++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 = --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: 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.
Returns: HRESULT
Standard 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.
Returns: HRESULT
Standard 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.
Returns: HRESULT
Standard 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.
Returns: HRESULT
Standard 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.
if (SUCCEEDED(hr))
hr = pCOEnum->QueryInterface(
IID_IEnumConnections,
(PPVOID)ppIEnum);
}
}
else
hr = E_OUTOFMEMORY;
return hr;
}