FACTORY.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:15k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      FACTORY.CPP
  3.   Summary:   Implementation file for the class factories of the FRESERVE
  4.              server.  This server provides the Ball COM component. For
  5.              this component, IClassFactory is implemented in an
  6.              appropriate class factory COM object: CFBall. The COM
  7.              component that can be manufactured by this server is known
  8.              outside the server by its CLSID: CLSID_DllBall.
  9.              For a comprehensive tutorial code tour of this module's
  10.              contents and offerings see the accompanying FRESERVE.TXT
  11.              file. For more specific technical details on the internal
  12.              workings see the comments dispersed throughout the module's
  13.              source code.
  14.   Classes:   CFBall.
  15.   Functions: .
  16.   Origin:    4-6-96: atrent - Editor-inheritance from CAR.CPP in
  17.                the DLLSERVE OLE Tutorial Code Sample.
  18. ----------------------------------------------------------------------------
  19.   This file is part of the Microsoft OLE Tutorial Code Samples.
  20.   Copyright (C) Microsoft Corporation, 1996.  All rights reserved.
  21.   This source code is intended only as a supplement to Microsoft
  22.   Development Tools and/or on-line documentation.  See these other
  23.   materials for detailed information regarding Microsoft code samples.
  24.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  25.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  26.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  27.   PARTICULAR PURPOSE.
  28. ==========================================================================+*/
  29. /*---------------------------------------------------------------------------
  30.   We include WINDOWS.H for all Win32 applications.
  31.   We include OLE2.H because we will be making calls to the OLE Libraries.
  32.   We include APPUTIL.H because we will be building this DLL using
  33.     the convenient Virtual Window and Dialog classes and other
  34.     utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
  35.   We include IBALL.H and BALLGUID.H for the common ball-related Interface
  36.     class, GUID, and CLSID specifications.
  37.   We include SERVER.H because it has the necessary internal class and
  38.     resource definitions for this DLL.
  39.   We include FACTORY.H because it has the necessary internal class factory
  40.     declarations for this DLL component server.  Those factories we will be
  41.     implementing in this module.
  42.   We include BALL.H, for the object class declarations for the COBall
  43.     COM object.
  44. ---------------------------------------------------------------------------*/
  45. #include "preserve.h"
  46. #include "factory.h"
  47. #include "ball.h"
  48. /*---------------------------------------------------------------------------
  49.   Implementation the CFBall Class Factory.  CFBall is the COM
  50.   object class for the Class Factory that can manufacture COBall
  51.   COM Components.
  52. ---------------------------------------------------------------------------*/
  53. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  54.   Method:   CFBall::CFBall
  55.   Summary:  CFBall Constructor. Note the member initializer:
  56.             "m_ImpIClassFactory(this, pUnkOuter, pServer)" which is used
  57.             to pass the 'this', pUnkOuter, and pServer pointers of this
  58.             constructor function to the constructor executed in the
  59.             instantiation of the CImpIClassFactory interface whose
  60.             implementation is nested inside this present object class.
  61.   Args:     IUnknown* pUnkOuter,
  62.               Pointer to the the outer Unknown.  NULL means this COM Object
  63.               is not being Aggregated.  Non NULL means it is being created
  64.               on behalf of an outside COM object that is reusing it via
  65.               aggregation.
  66.             CServer* pServer)
  67.               Pointer to the server's control object.
  68.   Modifies: m_cRefs, m_pUnkOuter.
  69.   Returns:  void
  70. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  71. CFBall::CFBall(
  72.   IUnknown* pUnkOuter,
  73.   CServer* pServer) :
  74.   m_ImpIClassFactory(this, pUnkOuter, pServer)
  75. {
  76.   // Zero the COM object's reference count.
  77.   m_cRefs = 0;
  78.   // No AddRef necessary if non-NULL, as we're nested.
  79.   m_pUnkOuter = pUnkOuter;
  80.   // Init the pointer to the server control object.
  81.   m_pServer = pServer;
  82.   return;
  83. }
  84. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  85.   Method:   CFBall::~CFBall
  86.   Summary:  CFBall Destructor.
  87.   Args:     void
  88.   Modifies: .
  89.   Returns:  void
  90. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  91. CFBall::~CFBall(void)
  92. {
  93.   return;
  94. }
  95. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  96.   Method:   CFBall::QueryInterface
  97.   Summary:  QueryInterface of the CFBall non-delegating
  98.             IUnknown implementation.
  99.   Args:     REFIID riid,
  100.               [in] GUID of the Interface being requested.
  101.             PPVOID ppv)
  102.               [out] Address of the caller's pointer variable that will
  103.               receive the requested interface pointer.
  104.   Modifies: .
  105.   Returns:  HRESULT
  106. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  107. STDMETHODIMP CFBall::QueryInterface(
  108.                REFIID riid,
  109.                PPVOID ppv)
  110. {
  111.   HRESULT hr = E_NOINTERFACE;
  112.   if (OwnThis())
  113.   {
  114.     *ppv = NULL;
  115.     if (IID_IUnknown == riid)
  116.       *ppv = this;
  117.     else if (IID_IClassFactory == riid)
  118.       *ppv = &m_ImpIClassFactory;
  119.     if (NULL != *ppv)
  120.     {
  121.       // We've handed out a pointer to the interface so obey the COM rules
  122.       // and AddRef the reference count.
  123.       ((LPUNKNOWN)*ppv)->AddRef();
  124.       hr = NOERROR;
  125.     }
  126.     UnOwnThis();
  127.   }
  128.   return (hr);
  129. }
  130. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  131.   Method:   CFBall::AddRef
  132.   Summary:  AddRef of the CFBall non-delegating IUnknown implementation.
  133.   Args:     void
  134.   Modifies: m_cRefs.
  135.   Returns:  ULONG
  136.               New value of m_cRefs (COM object's reference count).
  137. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  138. STDMETHODIMP_(ULONG) CFBall::AddRef(void)
  139. {
  140.   ULONG cRefs;
  141.   if (OwnThis())
  142.   {
  143.     cRefs = ++m_cRefs;
  144.     UnOwnThis();
  145.   }
  146.   return cRefs;
  147. }
  148. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  149.   Method:   CFBall::Release
  150.   Summary:  Release of the CFBall non-delegating IUnknown implementation.
  151.   Args:     void
  152.   Modifies: m_cRefs.
  153.   Returns:  ULONG
  154.               New value of m_cRefs (COM object's reference count).
  155. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  156. STDMETHODIMP_(ULONG) CFBall::Release(void)
  157. {
  158.   ULONG cRefs;
  159.   if (OwnThis())
  160.   {
  161.     cRefs = --m_cRefs;
  162.     if (0 == cRefs)
  163.     {
  164.       // We've reached a zero reference count for this COM object.
  165.       // So we tell the server housing to decrement its global object
  166.       // count so that the server will be unloaded if appropriate.
  167.       if (NULL != m_pServer)
  168.         m_pServer->ObjectsDown();
  169.       // We artificially bump the main ref count to prevent reentrancy
  170.       // via the main object destructor.  Not really needed in this
  171.       // CFBall but a good practice because we are aggregatable and
  172.       // may at some point in the future add something entertaining like
  173.       // some Releases to the CFBall destructor.
  174.       m_cRefs++;
  175.       UnOwnThis();
  176.       delete this;
  177.     }
  178.     else
  179.       UnOwnThis();
  180.   }
  181.   return cRefs;
  182. }
  183. /*---------------------------------------------------------------------------
  184.   CFBall's nested implementation of the IClassFactory interface
  185.   including Constructor, Destructor, QueryInterface, AddRef, Release,
  186.   CreateInstance, and LockServer methods.
  187. ---------------------------------------------------------------------------*/
  188. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  189.   Method:   CFBall::CImpIClassFactory::CImpIClassFactory
  190.   Summary:  Constructor for the CImpIClassFactory interface instantiation.
  191.   Args:     CFBall* pBackObj,
  192.               Back pointer to the parent outer object.
  193.             IUnknown* pUnkOuter,
  194.               Pointer to the outer Unknown.  For delegation.
  195.             CServer* pServer)
  196.               Pointer to the server's control object.
  197.   Modifies: m_pBackObj, m_pUnkOuter, m_pServer.
  198.   Returns:  void
  199. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  200. CFBall::CImpIClassFactory::CImpIClassFactory(
  201.   CFBall* pBackObj,
  202.   IUnknown* pUnkOuter,
  203.   CServer* pServer)
  204. {
  205.   // Init the Back Object Pointer to point to the parent object.
  206.   m_pBackObj = pBackObj;
  207.   // Init the pointer to the server control object.
  208.   m_pServer = pServer;
  209.   // Init the CImpIClassFactory interface's delegating Unknown pointer.
  210.   // We use the Back Object pointer for IUnknown delegation here if we are
  211.   // not being aggregated.  If we are being aggregated we use the supplied
  212.   // pUnkOuter for IUnknown delegation.  In either case the pointer
  213.   // assignment requires no AddRef because the CImpIClassFactory lifetime is
  214.   // quaranteed by the lifetime of the parent object in which
  215.   // CImpIClassFactory is nested.
  216.   if (NULL == pUnkOuter)
  217.     m_pUnkOuter = pBackObj;
  218.   else
  219.     m_pUnkOuter = pUnkOuter;
  220.   return;
  221. }
  222. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  223.   Method:   CFBall::CImpIClassFactory::~CImpIClassFactory
  224.   Summary:  Destructor for the CImpIClassFactory interface instantiation.
  225.   Args:     void
  226.   Modifies: .
  227.   Returns:  void
  228. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  229. CFBall::CImpIClassFactory::~CImpIClassFactory(void)
  230. {
  231.   return;
  232. }
  233. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  234.   Method:   CFBall::CImpIClassFactory::QueryInterface
  235.   Summary:  The QueryInterface IUnknown member of this IClassFactory
  236.             interface implementation that delegates to m_pUnkOuter,
  237.             whatever it is.
  238.   Args:     REFIID riid,
  239.               [in] GUID of the Interface being requested.
  240.             PPVOID ppv)
  241.               [out] Address of the caller's pointer variable that will
  242.               receive the requested interface pointer.
  243.   Modifies: .
  244.   Returns:  HRESULT
  245.               Returned by the delegated outer QueryInterface call.
  246. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  247. STDMETHODIMP CFBall::CImpIClassFactory::QueryInterface(
  248.                REFIID riid,
  249.                PPVOID ppv)
  250. {
  251.   // Delegate this call to the outer object's QueryInterface.
  252.   return m_pUnkOuter->QueryInterface(riid, ppv);
  253. }
  254. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  255.   Method:   CFBall::CImpIClassFactory::AddRef
  256.   Summary:  The AddRef IUnknown member of this IClassFactory interface
  257.             implementation that delegates to m_pUnkOuter, whatever it is.
  258.   Args:     void
  259.   Modifies: .
  260.   Returns:  ULONG
  261.               Returned by the delegated outer AddRef call.
  262. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  263. STDMETHODIMP_(ULONG) CFBall::CImpIClassFactory::AddRef(void)
  264. {
  265.   // Delegate this call to the outer object's AddRef.
  266.   return m_pUnkOuter->AddRef();
  267. }
  268. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  269.   Method:   CFBall::CImpIClassFactory::Release
  270.   Summary:  The Release IUnknown member of this IClassFactory interface
  271.             implementation that delegates to m_pUnkOuter, whatever it is.
  272.   Args:     void
  273.   Modifies: .
  274.   Returns:  ULONG
  275.               Returned by the delegated outer Release call.
  276. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  277. STDMETHODIMP_(ULONG) CFBall::CImpIClassFactory::Release(void)
  278. {
  279.   // Delegate this call to the outer object's Release.
  280.   return m_pUnkOuter->Release();
  281. }
  282. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  283.   Method:   CFBall::CImpIClassFactory::CreateInstance
  284.   Summary:  The CreateInstance member method of this IClassFactory
  285.             interface implementation.  Creates an instance of the COBall
  286.             COM component.
  287.   Args:     IUnknown* pUnkOuter,
  288.               [in] Pointer to the controlling IUnknown.
  289.             REFIID riid,
  290.               [in] GUID of the Interface being requested.
  291.             PPVOID ppvCob)
  292.               [out] Address of the caller's pointer variable that will
  293.               receive the requested interface pointer.
  294.   Modifies: .
  295.   Returns:  HRESULT
  296.               Standard OLE result code.
  297. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  298. STDMETHODIMP CFBall::CImpIClassFactory::CreateInstance(
  299.                IUnknown* pUnkOuter,
  300.                REFIID riid,
  301.                PPVOID ppv)
  302. {
  303.   HRESULT hr = E_FAIL;
  304.   COBall* pCob = NULL;
  305.   // NULL the output pointer.
  306.   *ppv = NULL;
  307.   // If the creation call is requesting aggregation (pUnkOuter != NULL),
  308.   // the COM rules state the IUnknown interface MUST also be concomitantly
  309.   // be requested.  If it is not so requested (riid != IID_IUnknown) then
  310.   // an error must be returned indicating that no aggregate creation of
  311.   // the CFBall COM Object can be performed.
  312.   if (NULL != pUnkOuter && riid != IID_IUnknown)
  313.     hr = CLASS_E_NOAGGREGATION;
  314.   else
  315.   {
  316.     // Instantiate a COBall COM Object.
  317.     pCob = new COBall(pUnkOuter, m_pServer);
  318.     if (NULL != pCob)
  319.     {
  320.       // We initially created the new COM object so tell the server
  321.       // to increment its global server object count to help ensure
  322.       // that the server remains loaded until this partial creation
  323.       // of a COM component is completed.
  324.       m_pServer->ObjectsUp();
  325.       // We QueryInterface this new COM Object not only to deposit the
  326.       // main interface pointer to the caller's pointer variable, but to
  327.       // also automatically bump the Reference Count on the new COM
  328.       // Object after handing out this reference to it.
  329.       hr = pCob->QueryInterface(riid, (PPVOID)ppv);
  330.       if (FAILED(hr))
  331.       {
  332.         m_pServer->ObjectsDown();
  333.         delete pCob;
  334.       }
  335.     }
  336.     else
  337.       hr = E_OUTOFMEMORY;
  338.   }
  339.   return hr;
  340. }
  341. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  342.   Method:   CFBall::CImpIClassFactory::LockServer
  343.   Summary:  The LockServer member method of this IClassFactory interface
  344.             implementation.
  345.   Args:     BOOL fLock)
  346.               [in] Flag determining whether to Lock or Unlock the server.
  347.   Modifies: .
  348.   Returns:  HRESULT
  349.               Standard OLE result code.
  350. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  351. STDMETHODIMP CFBall::CImpIClassFactory::LockServer(
  352.                BOOL fLock)
  353. {
  354.   HRESULT hr = NOERROR;
  355.   if (fLock)
  356.     m_pServer->Lock();
  357.   else
  358.     m_pServer->Unlock();
  359.   return hr;
  360. }