windows-nt/Source/XPSP1/NT/admin/activec/samples/sdksamples/simple/compdata.cpp

259 lines
6.8 KiB
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
//==============================================================;
//
// This source code is only intended as a supplement to existing Microsoft documentation.
//
//
//
//
// 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.
//
// Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
//
//
//
//==============================================================;
#include "Comp.h"
#include "CompData.h"
#include "DataObj.h"
#include "resource.h"
#include <crtdbg.h>
CComponentData::CComponentData()
: m_cref(0), m_ipConsoleNameSpace(NULL), m_ipConsole(NULL)
{
OBJECT_CREATED
m_pStaticNode = new CStaticNode;
}
CComponentData::~CComponentData()
{
if (m_pStaticNode) {
delete m_pStaticNode;
}
OBJECT_DESTROYED
}
///////////////////////
// IUnknown implementation
///////////////////////
STDMETHODIMP CComponentData::QueryInterface(REFIID riid, LPVOID *ppv)
{
if (!ppv)
return E_FAIL;
*ppv = NULL;
if (IsEqualIID(riid, IID_IUnknown))
*ppv = static_cast<IComponentData *>(this);
else if (IsEqualIID(riid, IID_IComponentData))
*ppv = static_cast<IComponentData *>(this);
else if (IsEqualIID(riid, IID_IPersistStream))
*ppv = static_cast<IPersistStream *>(this);
if (*ppv)
{
reinterpret_cast<IUnknown *>(*ppv)->AddRef();
return S_OK;
}
return E_NOINTERFACE;
}
STDMETHODIMP_(ULONG) CComponentData::AddRef()
{
return InterlockedIncrement((LONG *)&m_cref);
}
STDMETHODIMP_(ULONG) CComponentData::Release()
{
if (InterlockedDecrement((LONG *)&m_cref) == 0)
{
// we need to decrement our object count in the DLL
delete this;
return 0;
}
return m_cref;
}
///////////////////////////////
// Interface IComponentData
///////////////////////////////
HRESULT CComponentData::Initialize(
/* [in] */ LPUNKNOWN pUnknown)
{
HRESULT hr = S_FALSE;
//
// Get pointer to namespace interface
// First try to get pointer to IConsoleNameSpace2. If that fails, we are in
// MMC1.0, so get pointer to IConsoleNameSpace instead
//
hr = pUnknown->QueryInterface(IID_IConsoleNameSpace2, (void **)&m_ipConsoleNameSpace);
if (S_OK == hr)
{
//We are in MMC 1.1 or higher. QI for IConsole2
hr = pUnknown->QueryInterface(IID_IConsole2, (void **)&m_ipConsole);
}
else //We are in MMC 1.0
{
hr = pUnknown->QueryInterface(IID_IConsoleNameSpace, (void **)&m_ipConsoleNameSpace);
if (FAILED(hr))
return hr;
hr = pUnknown->QueryInterface(IID_IConsole, (void **)&m_ipConsole);
}
return hr;
}
HRESULT CComponentData::CreateComponent(
/* [out] */ LPCOMPONENT __RPC_FAR *ppComponent)
{
*ppComponent = NULL;
CComponent *pComponent = new CComponent(this);
if (NULL == pComponent)
return E_OUTOFMEMORY;
return pComponent->QueryInterface(IID_IComponent, (void **)ppComponent);
}
HRESULT CComponentData::Notify(
/* [in] */ LPDATAOBJECT lpDataObject,
/* [in] */ MMC_NOTIFY_TYPE event,
/* [in] */ LPARAM arg,
/* [in] */ LPARAM param)
{
MMCN_Crack(TRUE, lpDataObject, this, NULL, event, arg, param);
//Notify doesn't handle any notifications from MMC, so return E_NOTIMPL
return E_NOTIMPL;
}
HRESULT CComponentData::Destroy( void)
{
// Free interfaces
if (m_ipConsoleNameSpace) {
m_ipConsoleNameSpace->Release();
m_ipConsoleNameSpace = NULL;
}
if (m_ipConsole) {
m_ipConsole->Release();
m_ipConsole = NULL;
}
return S_OK;
}
HRESULT CComponentData::QueryDataObject(
/* [in] */ MMC_COOKIE cookie,
/* [in] */ DATA_OBJECT_TYPES type,
/* [out] */ LPDATAOBJECT *ppDataObject)
{
CDataObject *pObj = NULL;
if (cookie == 0)
pObj = new CDataObject((MMC_COOKIE)m_pStaticNode, type);
else
pObj = new CDataObject(cookie, type);
if (!pObj)
return E_OUTOFMEMORY;
pObj->QueryInterface(IID_IDataObject, (void **)ppDataObject);
return S_OK;
}
HRESULT CComponentData::GetDisplayInfo(
/* [out][in] */ SCOPEDATAITEM *pScopeDataItem)
{
HRESULT hr = S_FALSE;
// if they are asking for the SDI_STR we have one of those to give
if (pScopeDataItem->lParam) {
CDelegationBase *base = (CDelegationBase *)pScopeDataItem->lParam;
if (pScopeDataItem->mask & SDI_STR) {
LPCTSTR pszT = base->GetDisplayName();
MAKE_WIDEPTR_FROMTSTR_ALLOC(pszW, pszT);
pScopeDataItem->displayname = pszW;
}
if (pScopeDataItem->mask & SDI_IMAGE) {
pScopeDataItem->nImage = base->GetBitmapIndex();
}
}
return hr;
}
HRESULT CComponentData::CompareObjects(
/* [in] */ LPDATAOBJECT lpDataObjectA,
/* [in] */ LPDATAOBJECT lpDataObjectB)
{
CDelegationBase *baseA = GetOurDataObject(lpDataObjectA)->GetBaseNodeObject();
CDelegationBase *baseB = GetOurDataObject(lpDataObjectB)->GetBaseNodeObject();
// compare the object pointers
if (baseA->GetCookie() == baseB->GetCookie())
return S_OK;
return S_FALSE;
}
///////////////////////////////
// Interface IPersistStream
///////////////////////////////
HRESULT CComponentData::GetClassID(
/* [out] */ CLSID __RPC_FAR *pClassID)
{
*pClassID = m_pStaticNode->getNodeType();
return S_OK;
}
HRESULT CComponentData::IsDirty( void)
{
return m_pStaticNode->isDirty() == true ? S_OK : S_FALSE;
}
HRESULT CComponentData::Load(
/* [unique][in] */ IStream __RPC_FAR *pStm)
{
void *snapInData = m_pStaticNode->getData();
ULONG dataSize = m_pStaticNode->getDataSize();
return pStm->Read(snapInData, dataSize, NULL);
}
HRESULT CComponentData::Save(
/* [unique][in] */ IStream __RPC_FAR *pStm,
/* [in] */ BOOL fClearDirty)
{
void *snapInData = m_pStaticNode->getData();
ULONG dataSize = m_pStaticNode->getDataSize();
if (fClearDirty)
m_pStaticNode->clearDirty();
return pStm->Write(snapInData, dataSize, NULL);
}
HRESULT CComponentData::GetSizeMax(
/* [out] */ ULARGE_INTEGER __RPC_FAR *pcbSize)
{
return m_pStaticNode->getDataSize();
}