windows-nt/Source/XPSP1/NT/com/mobile/sens/conn/senssink/classfac.cxx
2020-09-26 16:20:57 +08:00

242 lines
3.9 KiB
C++
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (C) Microsoft Corporation, 1997 - 1999
Module Name:
classfac.cxx
Abstract:
Implements the Class Factory for the SENS Subscriber.
Author:
Gopal Parupudi <GopalP>
[Notes:]
optional-notes
Revision History:
GopalP 11/17/1997 Start.
--*/
#include <common.hxx>
#include <ole2.h>
#include <sensevts.h>
#include "sinkcomn.hxx"
#include "classfac.hxx"
#include "cimpnet.hxx"
#include "cimplogn.hxx"
//
// Global counts for the number of objects in the server and the number of
// locks.
//
ULONG g_cObj = 0L;
ULONG g_cLock = 0L;
//
// Constructor and Destructor
//
CSensSinkCF::CSensSinkCF(
void
) : m_cRef(1L)
{
}
CSensSinkCF::~CSensSinkCF(
void
)
{
// Empty Destructor.
}
//
// QI
//
STDMETHODIMP
CSensSinkCF::QueryInterface(
REFIID riid,
LPVOID *ppv
)
{
HRESULT hr = S_OK;
*ppv = NULL; // To handle failure cases
// IUnknown or IClassFactory
if (IsEqualIID(riid, IID_IUnknown) ||
IsEqualIID(riid, IID_IClassFactory))
{
*ppv = (LPUNKNOWN) this;
}
else
{
hr = E_NOINTERFACE;
}
if (NULL != *ppv)
{
((LPUNKNOWN)*ppv)->AddRef();
}
return hr;
}
//
// AddRef
//
STDMETHODIMP_(ULONG)
CSensSinkCF::AddRef(
void
)
{
return InterlockedIncrement((PLONG) &m_cRef);
}
//
// Release
//
STDMETHODIMP_(ULONG)
CSensSinkCF::Release(
void
)
{
ULONG cRefT;
cRefT = InterlockedDecrement((PLONG) &m_cRef);
if (0 == m_cRef)
{
// Invoke the callback function.
ObjectDestroyed();
delete this;
}
return cRefT;
}
//
// CreateInstance
//
STDMETHODIMP
CSensSinkCF::CreateInstance(
LPUNKNOWN pUnkOuter,
REFIID riid,
LPVOID *ppvObj
)
{
LPCIMPISENSNETWORK pObjNet;
LPCIMPISENSLOGON pObjLogn;
HRESULT hr;
DebugTraceGuid("CSensSinkCF::CreateInstance()", riid);
hr = E_OUTOFMEMORY;
*ppvObj = NULL;
pObjNet = NULL;
pObjLogn = NULL;
//
// Return the appropriate interface pointer.
//
if (IsEqualIID(riid, IID_ISensNetwork) ||
IsEqualIID(riid, IID_IUnknown))
{
SensPrintA(SENS_INFO, ("\t| ClassFactory::CreateInstance(ISensNetwork)\n"));
pObjNet = new CImpISensNetwork(ObjectDestroyed);
if (NULL != pObjNet)
{
hr = pObjNet->QueryInterface(riid, ppvObj);
SensPrintA(SENS_INFO, ("\t| QI on CImpISensNetwork returned 0x%x\n", hr));
}
}
else
if (IsEqualIID(riid, IID_ISensLogon))
{
SensPrintA(SENS_INFO, ("\t| ClassFactory::CreateInstance(ISensLogon)\n"));
pObjLogn = new CImpISensLogon(ObjectDestroyed);
if (NULL != pObjLogn)
{
hr = pObjLogn->QueryInterface(riid, ppvObj);
SensPrintA(SENS_INFO, ("\t| QI on CImpISensLogon returned 0x%x\n", hr));
}
}
else
{
hr = E_NOINTERFACE;
}
if (NULL != *ppvObj)
{
InterlockedIncrement((PLONG) &g_cObj);
}
SensPrintA(SENS_INFO, ("\t| Returning 0x%x from CF:CreateInstance\n", hr));
return hr;
}
//
// LockServer
//
STDMETHODIMP
CSensSinkCF::LockServer(
BOOL fLock
)
{
if (fLock)
{
InterlockedIncrement((PLONG) &g_cLock);
}
else
{
InterlockedDecrement((PLONG) &g_cLock);
InterlockedIncrement((PLONG) &g_cObj);
ObjectDestroyed(); // this does a --g_cObj
}
return NOERROR;
}
//
// ObjectDestroyed
//
void FAR PASCAL
ObjectDestroyed(
void
)
{
if ((0 == InterlockedDecrement((PLONG) &g_cObj)) &&
(0 == g_cLock))
{
SensPrintA(SENS_INFO, ("\t| ObjectDestroyed: g_cObj = %d and g_cLock = %d\n", g_cObj, g_cLock));
SensPrintA(SENS_INFO, ("\t| Shutting down the app. Calling PostQuitMessage(0)\n"));
PostQuitMessage(0);
}
}