component.cpp
上传用户:bjlvip
上传日期:2010-02-08
资源大小:744k
文件大小:7k
- // component.cpp
- #include <iostream.h>
- #include <stdio.h>
- #include "Componentcomponent.h" // Generated by MIDL
- #include "registry.h" // Need this
- HINSTANCE g_hInstance;
- long g_cComponents = 0;
- long g_cServerLocks = 0;
- class CInsideCOM : public ISum
- {
- public:
- // IUnknown
- ULONG __stdcall AddRef();
- ULONG __stdcall Release();
- HRESULT __stdcall QueryInterface(REFIID iid, void** ppv);
- // IDispatch
- HRESULT __stdcall GetTypeInfoCount(UINT* pCountTypeInfo);
- HRESULT __stdcall GetTypeInfo(UINT iTypeInfo, LCID lcid, ITypeInfo** ppITypeInfo);
- HRESULT __stdcall GetIDsOfNames(REFIID riid, LPOLESTR* rgszNames, UINT cNames, LCID lcid, DISPID* rgDispId);
- HRESULT __stdcall Invoke(DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS* pDispParams, VARIANT* pVarResult, EXCEPINFO* pExcepInfo, UINT* puArgErr);
- // ISum
- HRESULT __stdcall Sum(int x, int y, int* retval);
- HRESULT __stdcall SumNoParameters(int* retval);
- HRESULT __stdcall CreateNewSum(BSTR name);
- HRESULT __stdcall get_x(int* retvalue);
- HRESULT __stdcall put_x(int newvalue);
- HRESULT __stdcall get_y(int* retvalue);
- HRESULT __stdcall put_y(int newvalue);
- CInsideCOM() : m_cRef(1) { g_cComponents++; }
- ~CInsideCOM() { cout << "Component: CInsideCOM::~CInsideCOM()" << endl, g_cComponents--; }
- HRESULT Init(void);
- private:
- ULONG m_cRef;
- ITypeInfo* m_pTypeInfo;
- IUnknown* m_pUnknownStdDisp;
- int m_x;
- int m_y;
- };
- HRESULT CInsideCOM::get_x(int* retvalue)
- {
- *retvalue = m_x;
- return S_OK;
- }
- HRESULT CInsideCOM::put_x(int newvalue)
- {
- m_x = newvalue;
- return S_OK;
- }
- HRESULT CInsideCOM::get_y(int* retvalue)
- {
- *retvalue = m_y;
- return S_OK;
- }
- HRESULT CInsideCOM::put_y(int newvalue)
- {
- m_y = newvalue;
- return S_OK;
- }
- /*
- HRESULT CInsideCOM::GetTypeInfoCount(UINT* pCountTypeInfo)
- {
- *pCountTypeInfo = 1;
- return S_OK;
- }
- HRESULT CInsideCOM::GetTypeInfo(UINT iTypeInfo, LCID lcid, ITypeInfo** ppITypeInfo)
- {
- *ppITypeInfo = NULL;
- if(iTypeInfo != 0)
- return DISP_E_BADINDEX;
- m_pTypeInfo->AddRef();
- *ppITypeInfo = m_pTypeInfo;
- return S_OK;
- }
- HRESULT CInsideCOM::GetIDsOfNames(REFIID riid, LPOLESTR* rgszNames, UINT cNames, LCID lcid, DISPID* rgDispId)
- {
- if(riid != IID_NULL)
- return DISP_E_UNKNOWNINTERFACE;
- return DispGetIDsOfNames(m_pTypeInfo, rgszNames, cNames, rgDispId);
- }
- HRESULT CInsideCOM::Invoke(DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS* pDispParams, VARIANT* pVarResult, EXCEPINFO* pExcepInfo, UINT* puArgErr)
- {
- if(riid != IID_NULL)
- return DISP_E_UNKNOWNINTERFACE;
- return DispInvoke(this, m_pTypeInfo, dispIdMember, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
- }
- */
- HRESULT CInsideCOM::Init(void)
- {
- ITypeLib* pTypeLib;
- if(FAILED(LoadRegTypeLib(LIBID_Component, 1, 0, LANG_NEUTRAL, &pTypeLib)))
- return E_FAIL;
- HRESULT hr = pTypeLib->GetTypeInfoOfGuid(IID_ISum, &m_pTypeInfo);
- pTypeLib->Release();
- if(FAILED(hr))
- return hr;
- return CreateStdDispatch(this, this, m_pTypeInfo, &m_pUnknownStdDisp);
- }
- ULONG CInsideCOM::AddRef()
- {
- cout << "Component: CInsideCOM::AddRef() m_cRef = " << m_cRef + 1 << endl;
- return ++m_cRef;
- }
- ULONG CInsideCOM::Release()
- {
- cout << "Component: CInsideCOM::Release() m_cRef = " << m_cRef - 1 << endl;
- if(--m_cRef != 0)
- return m_cRef;
- m_pTypeInfo->Release();
- m_pUnknownStdDisp->Release();
- delete this;
- return 0;
- }
- HRESULT CInsideCOM::QueryInterface(REFIID riid, void** ppv)
- {
- if(riid == IID_IUnknown)
- *ppv = (IUnknown*)this;
- else if(riid == IID_ISum)
- *ppv = (ISum*)this;
- else if(riid == IID_IDispatch)
- return m_pUnknownStdDisp->QueryInterface(IID_IDispatch, ppv);
- else
- {
- *ppv = NULL;
- return E_NOINTERFACE;
- }
- AddRef();
- return S_OK;
- }
- HRESULT CInsideCOM::Sum(int x, int y, int* retval)
- {
- if(x == -1 && y == -1)
- *retval = m_x + m_y;
- else
- *retval = x + y;
- return S_OK;
- }
- class CFactory : public IClassFactory
- {
- public:
- // IUnknown
- ULONG __stdcall AddRef();
- ULONG __stdcall Release();
- HRESULT __stdcall QueryInterface(REFIID iid, void** ppv);
- // IClassFactory
- HRESULT __stdcall CreateInstance(IUnknown *pUnknownOuter, REFIID iid, void** ppv);
- HRESULT __stdcall LockServer(BOOL bLock);
- CFactory() : m_cRef(1) { }
- ~CFactory() { }
- private:
- long m_cRef;
- };
- ULONG CFactory::AddRef()
- {
- cout << "Component: CFactory::AddRef() m_cRef = " << m_cRef + 1 << endl;
- return ++m_cRef;
- }
- ULONG CFactory::Release()
- {
- cout << "Component: CFactory::Release() m_cRef = " << m_cRef - 1 << endl;
- if(--m_cRef != 0)
- return m_cRef;
- delete this;
- return 0;
- }
- HRESULT CFactory::QueryInterface(REFIID iid, void** ppv)
- {
- if((iid == IID_IUnknown) || (iid == IID_IClassFactory))
- {
- cout << "Component: CFactory::QueryInteface() for IUnknown or IClassFactory " << this << endl;
- *ppv = (IClassFactory *)this;
- }
- else
- {
- *ppv = NULL;
- return E_NOINTERFACE;
- }
- AddRef();
- return S_OK;
- }
- HRESULT CFactory::CreateInstance(IUnknown *pUnknownOuter, REFIID iid, void** ppv)
- {
- if(pUnknownOuter != NULL)
- return CLASS_E_NOAGGREGATION;
- CInsideCOM *pInsideCOM = new CInsideCOM;
- cout << "Component: CFactory::CreateInstance() " << pInsideCOM << endl;
- if(pInsideCOM == NULL)
- return E_OUTOFMEMORY;
- // Call the Init method to load the type information
- pInsideCOM->Init();
- HRESULT hr = pInsideCOM->QueryInterface(iid, ppv);
- pInsideCOM->Release();
- return hr;
- }
- HRESULT CFactory::LockServer(BOOL bLock)
- {
- if(bLock)
- g_cServerLocks++;
- else
- g_cServerLocks--;
- return S_OK;
- }
- HRESULT __stdcall DllCanUnloadNow()
- {
- cout << "Component: DllCanUnloadNow() " << (g_cServerLocks == 0 && g_cComponents == 0 ? "Yes" : "No") << endl;
- if(g_cServerLocks == 0 && g_cComponents == 0)
- return S_OK;
- else
- return S_FALSE;
- }
- HRESULT __stdcall DllGetClassObject(REFCLSID clsid, REFIID iid, void** ppv)
- {
- cout << "Component: DllGetClassObject" << endl;
-
- if(clsid != CLSID_InsideCOM)
- return CLASS_E_CLASSNOTAVAILABLE;
- CFactory* pFactory = new CFactory;
- if(pFactory == NULL)
- return E_OUTOFMEMORY;
- // QueryInterface probably for IClassFactory
- HRESULT hr = pFactory->QueryInterface(iid, ppv);
- pFactory->Release();
- return hr;
- }
- HRESULT __stdcall DllRegisterServer()
- {
- char DllPath[256];
- OLECHAR wDllPath[256];
- GetModuleFileName(g_hInstance, DllPath, 256);
- mbstowcs(wDllPath, DllPath, 256);
- ITypeLib* pTypeLib;
- HRESULT hr = LoadTypeLibEx(wDllPath, REGKIND_REGISTER, &pTypeLib);
- if(FAILED(hr))
- return hr;
- pTypeLib->Release();
- return RegisterServer("component.dll", CLSID_InsideCOM, "Inside COM+ Sample", "Component.InsideCOM", "Component.InsideCOM.1", NULL);
- }
- HRESULT __stdcall DllUnregisterServer()
- {
- UnRegisterTypeLib(LIBID_Component, 1, 0, LANG_NEUTRAL, SYS_WIN32);
- return UnregisterServer(CLSID_InsideCOM, "Component.InsideCOM", "Component.InsideCOM.1");
- }
- BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, void* pv)
- {
- g_hInstance = hInstance;
- return TRUE;
- }