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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      FACTORY.H
  3.   Summary:   Include file for the class factory COM objects:
  4.              CFLicCruiseCar, and CFLicCarSample.  These constitute the
  5.              LICSERVE server's Class Factories for those COM components.
  6.              The multiple interface COM Object Classes are achieved via
  7.              the technique of nested classes: the implementation of the
  8.              IClassFactory interfaces are nested inside of the class
  9.              factory COM object classes.
  10.              For a comprehensive tutorial code tour of this module's
  11.              contents and offerings see the tutorial LICSERVE.HTM
  12.              file. For more specific technical details on the internal
  13.              workings see the comments dispersed throughout the module's
  14.              source code.
  15.   Classes:   CFLicCruiseCar, CFLicCarSample.
  16.   Functions: .
  17.   Origin:    10-5-95: atrent - Editor-inheritance from CRUCAR.H in
  18.                the DLLSERVE Tutorial Code Sample.
  19. ----------------------------------------------------------------------------
  20.   This file is part of the Microsoft COM Tutorial Code Samples.
  21.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  22.   This source code is intended only as a supplement to Microsoft
  23.   Development Tools and/or on-line documentation.  See these other
  24.   materials for detailed information regarding Microsoft code samples.
  25.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  26.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  27.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  28.   PARTICULAR PURPOSE.
  29. ==========================================================================+*/
  30. #if !defined(FACTORY_H)
  31. #define FACTORY_H
  32. #ifdef __cplusplus
  33. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  34.   ObjectClass: CFLicCruiseCar
  35.   Summary:     Class Factory COM Object Class for LicCruiseCar COM
  36.                components.  Used to manufacture COLicCruiseCar COM objects.
  37.                The mulitple interfaces on this COM object class are
  38.                constructed via the nested interface classes technique.
  39.   Interfaces:  IUnknown
  40.                  Standard interface providing COM object features.
  41.                IClassFactory2
  42.                  Standard interface providing COM Class Factory features
  43.                  that support licensing of these Cruise Car COM components.
  44.   Aggregation: Yes, CFLicCruiseCar COM objects are aggregatable by
  45.                passing a non-NULL pUnkOuter IUnknown pointer into the
  46.                constructor.
  47. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  48. class CFLicCruiseCar : public IUnknown
  49. {
  50.   public:
  51.     // Main Object Constructor & Destructor.
  52.     CFLicCruiseCar(IUnknown* pUnkOuter, CServer* pServer);
  53.     ~CFLicCruiseCar(void);
  54.     // A general method for initializing a newly created CFLicCruiseCar.
  55.     HRESULT Init(void);
  56.     // IUnknown methods. Main object, non-delegating.
  57.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  58.     STDMETHODIMP_(ULONG) AddRef(void);
  59.     STDMETHODIMP_(ULONG) Release(void);
  60.   private:
  61.     // A private unconditional create for LicCruiseCar.
  62.     STDMETHODIMP CreateLicCruiseCar(IUnknown*, REFIID, PPVOID);
  63.     // We declare nested class interface implementations here.
  64.     // We implement the IClassFactory2 interface on this LicCruiseCar
  65.     // Class Factory to license these COM objects.
  66.     class CImpIClassFactory : public IClassFactory2
  67.     {
  68.       public:
  69.         // Interface Implementation Constructor & Destructor.
  70.         CImpIClassFactory(
  71.           CFLicCruiseCar* pBackObj,
  72.           IUnknown* pUnkOuter,
  73.           CServer* pServer);
  74.         ~CImpIClassFactory(void);
  75.         // IUnknown methods.
  76.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  77.         STDMETHODIMP_(ULONG) AddRef(void);
  78.         STDMETHODIMP_(ULONG) Release(void);
  79.         // IClassFactory methods.
  80.         STDMETHODIMP         CreateInstance(IUnknown*, REFIID, PPVOID);
  81.         STDMETHODIMP         LockServer(BOOL);
  82.         // IClassFactory2 methods.
  83.         STDMETHODIMP         GetLicInfo(LPLICINFO);
  84.         STDMETHODIMP         RequestLicKey(DWORD, BSTR*);
  85.         STDMETHODIMP         CreateInstanceLic(
  86.                                IUnknown*,
  87.                                IUnknown*,
  88.                                REFIID,
  89.                                BSTR,
  90.                                PPVOID);
  91.       private:
  92.         // Data private to this interface implementation of IClassFactory.
  93.         ULONG            m_cRefI;       // Interface Ref Count (debugging).
  94.         CFLicCruiseCar*  m_pBackObj;    // Parent Object back pointer.
  95.         IUnknown*        m_pUnkOuter;   // Outer unknown for Delegation.
  96.         CServer*         m_pServer;     // Server Control Object.
  97.     };
  98.     // Make the otherwise private and nested IClassFactory interface
  99.     // implementation a friend to COM object instantiations of this
  100.     // selfsame CFLicCruiseCar COM object class.
  101.     friend CImpIClassFactory;
  102.     // Private data of CFLicCruiseCar COM objects.
  103.     // Nested IClassFactory implementation instantiation.
  104.     CImpIClassFactory m_ImpIClassFactory;
  105.     // Main Object reference count.
  106.     ULONG             m_cRefs;
  107.     // Outer unknown (aggregation & delegation). Used when this
  108.     // CFLicCruiseCar object is being aggregated.  Otherwise it is used
  109.     // for delegation if this object is reused via containment.
  110.     IUnknown*         m_pUnkOuter;
  111.     // Pointer to this component server's control object.
  112.     CServer*          m_pServer;
  113. };
  114. typedef CFLicCruiseCar* PCFLicCruiseCar;
  115. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  116.   ObjectClass: CFLicCarSample
  117.   Summary:     Class Factory COM Object Class for LicCarSample COM
  118.                components.  Used to manufacture COLicCarSample COM
  119.                objects.  The mulitple interfaces on this COM object
  120.                class are constructed via the nested interface classes
  121.                technique.
  122.   Interfaces:  IUnknown
  123.                  Standard interface providing COM object features.
  124.                IClassFactory
  125.                  Standard interface providing COM Class Factory features.
  126.   Aggregation: Yes, CFLicCarSample COM objects are aggregatable by
  127.                passing a non-NULL pUnkOuter IUnknown pointer into the
  128.                constructor.
  129. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  130. class CFLicCarSample : public IUnknown
  131. {
  132.   public:
  133.     // Main Object Constructor & Destructor.
  134.     CFLicCarSample(IUnknown* pUnkOuter, CServer* pServer);
  135.     ~CFLicCarSample(void);
  136.     // A general method for initializing a newly created CFLicCarSample.
  137.     HRESULT Init(void);
  138.     // IUnknown methods. Main object, non-delegating.
  139.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  140.     STDMETHODIMP_(ULONG) AddRef(void);
  141.     STDMETHODIMP_(ULONG) Release(void);
  142.   private:
  143.     // We declare nested class interface implementations here.
  144.     // We implement the IClassFactory interface (of course) in this Class
  145.     // Factory COM object class.
  146.     class CImpIClassFactory : public IClassFactory
  147.     {
  148.       public:
  149.         // Interface Implementation Constructor & Destructor.
  150.         CImpIClassFactory(
  151.           CFLicCarSample* pBackObj,
  152.           IUnknown* pUnkOuter,
  153.           CServer* pServer);
  154.         ~CImpIClassFactory(void);
  155.         // IUnknown methods.
  156.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  157.         STDMETHODIMP_(ULONG) AddRef(void);
  158.         STDMETHODIMP_(ULONG) Release(void);
  159.         // IClassFactory methods.
  160.         STDMETHODIMP         CreateInstance(IUnknown*, REFIID, PPVOID);
  161.         STDMETHODIMP         LockServer(BOOL);
  162.       private:
  163.         // Data private to this interface implementation of IClassFactory.
  164.         ULONG           m_cRefI;     // Interface Ref Count (for debugging).
  165.         CFLicCarSample* m_pBackObj;  // Parent Object back pointer.
  166.         IUnknown*       m_pUnkOuter; // Outer unknown for Delegation.
  167.         CServer*        m_pServer;   // Server Control Object.
  168.     };
  169.     // Make the otherwise private and nested IClassFactory interface
  170.     // implementation a friend to COM object instantiations of this
  171.     // selfsame CFLicCarSample COM object class.
  172.     friend CImpIClassFactory;
  173.     // Private data of CFLicCarSample COM objects.
  174.     // Nested IClassFactory implementation instantiation.
  175.     CImpIClassFactory m_ImpIClassFactory;
  176.     // Main Object reference count.
  177.     ULONG             m_cRefs;
  178.     // Outer unknown (aggregation & delegation). Used when this
  179.     // CFLicCarSample object is being aggregated.  Otherwise it is used
  180.     // for delegation if this object is reused via containment.
  181.     IUnknown*         m_pUnkOuter;
  182.     // Pointer to this component server's control object.
  183.     CServer*          m_pServer;
  184. };
  185. typedef CFLicCarSample* PCFLicCarSample;
  186. #endif // __cplusplus
  187. #endif // FACTORY_H