⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmpnt2.cpp

📁 inside com的源代码
💻 CPP
字号:
//
// Cmpnt2.cpp - Component 2
//
#include <objbase.h>

#include "Iface.h"
#include "Util.h"
#include "CUnknown.h"
#include "Cmpnt2.h"

static inline void trace(char* msg)
	{ Util::Trace("Component 2", msg, S_OK) ;}
static inline void trace(char* msg, HRESULT hr)
	{ Util::Trace("Component 2", msg, hr) ;}

///////////////////////////////////////////////////////////
//
// Interface IY
//

HRESULT __stdcall CB::FyCount(long* sizeArray)
{
	*sizeArray = m_sizeArray ;
	return S_OK ;
}

HRESULT __stdcall CB::FyArrayIn(long sizeIn, long arrayIn[])
{
	// Display the array passed in.
	ostrstream sout ;
	sout << "FyArrayIn received " 
	     << sizeIn
	     << " elements: " ;
	for (int i = 0 ; i < sizeIn ; i++)
	{
		sout << " " << arrayIn[i] ;
	}
	sout << "." << ends ;
	trace(sout.str()) ;

	// Delete the internal array.
	delete [] m_array ;

	// Create a new array
	m_array = new long[sizeIn] ;
	m_sizeArray = sizeIn ;

	// Copy the array passed in into the internal array.
	for (i = 0 ; i < sizeIn ; i++)
	{
		m_array[i] = arrayIn[i];
	}

	return S_OK ;
}

HRESULT __stdcall CB::FyArrayOut(long* psizeInOut, long arrayOut[])
{
	if (*psizeInOut < m_sizeArray )
	{
		return E_OUTOFMEMORY ;
	}

	// Copy the array to the out parameter.
	for (int i = 0 ; i < m_sizeArray ; i++)
	{
		arrayOut[i] = m_array[i] ;
	}

	// Return the size of the array in the in/out parameter
	*psizeInOut = m_sizeArray ;

	return S_OK ;
}


//
// Constructor
//
CB::CB(IUnknown* pUnknownOuter)
: CUnknown(pUnknownOuter),
  m_pUnknownInner(NULL),
  m_pIZ(NULL)
{
	m_sizeArray = 0 ;
	m_array = NULL ;
}

//
// Destructor
//
CB::~CB()
{
	if ( m_array != NULL)
	{
		delete [] m_array ;
	}

	trace("Destroy self.") ;
}

//
// NondelegatingQueryInterface implementation
//
HRESULT __stdcall CB::NondelegatingQueryInterface(const IID& iid,
                                                  void** ppv)
{ 	
	if (iid == IID_IY)
	{
		return FinishQI(static_cast<IY*>(this), ppv) ;
	}
	else if (iid == IID_IZ)
	{
		return m_pUnknownInner->QueryInterface(iid, ppv) ;
	}
	else
	{
		return CUnknown::NondelegatingQueryInterface(iid, ppv) ;
	}
}


//
// Initialize the component by creating the contained component.
//
HRESULT CB::Init()
{
	trace("Create Component 3, which is aggregated.") ;
	HRESULT hr = CoCreateInstance(CLSID_Component3,
	                              GetOuterUnknown(),
	                              CLSCTX_INPROC_SERVER,
	                              //CLSCTX_ALL, //@Multi
	                              IID_IUnknown,
	                              (void**)&m_pUnknownInner) ;
	if (FAILED(hr))
	{
		trace("Could not create inner component.", hr) ;
		return E_FAIL ;
	}

	trace("Get pointer to interface IZ to cache.") ;
	hr = m_pUnknownInner->QueryInterface(IID_IZ, (void**)&m_pIZ) ;
	if (FAILED(hr))
	{
		trace("Inner component does not support IZ.", hr) ;
		m_pUnknownInner->Release() ;
		m_pUnknownInner = NULL ;
		return E_FAIL ;
	}

	// Decrement the reference count caused by the QI call.
	trace("Got IZ interface pointer. Release reference.") ;
	GetOuterUnknown()->Release() ;

	return S_OK ;
}

//
// FinalRelease - called by Release before it deletes the component
//
void CB::FinalRelease()
{
	// Call base class to incremement m_cRef to prevent recusion.
	CUnknown::FinalRelease() ;

	// Counter the GetOuterUnknown()->Release in the Init method.
	GetOuterUnknown()->AddRef() ;

	// Properly release the pointer; there may be per-interface
	// reference counts.
	m_pIZ->Release() ;

	// Release the aggregated component.
	if (m_pUnknownInner != NULL)
	{
		m_pUnknownInner->Release() ;
	}
}


///////////////////////////////////////////////////////////
//
// Creation function used by CFactory
//
HRESULT CB::CreateInstance(IUnknown* pUnknownOuter,
                           CUnknown** ppNewComponent)
{
	*ppNewComponent = new CB(pUnknownOuter) ;
	return S_OK ;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -