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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      UTILCAR.CPP
  3.   Summary:   Implementation file for the aggregatable COUtilityCar COM
  4.              object class.
  5.              UTILCAR showcases the construction of the COUtilityCar COM
  6.              object class with the IUnknown, ICar, and IUtility interfaces.
  7.              This is done through Containment reuse of COCar's ICar
  8.              interface features.
  9.              For a comprehensive tutorial code tour of this module's
  10.              contents and offerings see the tutorial APTSERVE.HTM file.
  11.              For more specific technical details on the internal workings
  12.              see the comments dispersed throughout the module's source code.
  13.   Classes:   COUtilityCar.
  14.   Functions: none.
  15.   Origin:    3-20-96: atrent - Editor-inheritance from UTILCAR.CPP in
  16.                the LOCSERVE Tutorial Code Sample.
  17. ----------------------------------------------------------------------------
  18.   This file is part of the Microsoft COM Tutorial Code Samples.
  19.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  20.   This source code is intended only as a supplement to Microsoft
  21.   Development Tools and/or on-line documentation.  See these other
  22.   materials for detailed information regarding Microsoft code samples.
  23.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  24.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  25.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  26.   PARTICULAR PURPOSE.
  27. ==========================================================================+*/
  28. /*---------------------------------------------------------------------------
  29.   We include WINDOWS.H for all Win32 applications.
  30.   We include OLE2.H because we will make calls to the COM/OLE Libraries.
  31.   We include APPUTIL.H because we will be building this application using
  32.     the convenient Virtual Window and Dialog classes and other
  33.     utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
  34.   We include MICARS.H and CARGUIDS.H for the common car-related Interface
  35.     class, GUID, and CLSID specifications.
  36.   We include SERVER.H because it has internal class declarations and
  37.     resource ID definitions specific for this DLL.
  38.   We include CAR.H because it has the class COCar declarations.
  39.   We include UTILCAR.H because it has the class COUtilityCar declarations.
  40. ---------------------------------------------------------------------------*/
  41. #include <windows.h>
  42. #include <ole2.h>
  43. #include <apputil.h>
  44. #include <micars.h>
  45. #include <carguids.h>
  46. #include "server.h"
  47. #include "car.h"
  48. #include "utilcar.h"
  49. /*---------------------------------------------------------------------------
  50.   COUtilityCar's implementation of its main COM object class including
  51.   Constructor, Destructor, QueryInterface, AddRef, and Release.
  52. ---------------------------------------------------------------------------*/
  53. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  54.   Method:   COUtilityCar::COUtilityCar
  55.   Summary:  COUtilityCar Constructor. Note the member initializers:
  56.             "m_ImpICar(this, pUnkOuter)" and "m_ImpIUtility(this,
  57.             pUnkOuter)" which are used to pass the 'this' and
  58.             pUnkOuter pointers of this constructor function to the
  59.             constructors that instantiate the implementations of
  60.             the CImpICar and CImpIUtility interfaces (which are both
  61.             nested inside this present COUtilityCar Object Class.
  62.   Args:     IUnknown* pUnkOuter,
  63.               Pointer to the the outer Unknown.  NULL means this COM Object
  64.               is not being Aggregated.  Non NULL means it is being created
  65.               on behalf of an outside COM object that is reusing it via
  66.               aggregation.
  67.             CServer* pServer)
  68.               Pointer to the server's control object.
  69.   Modifies: m_cRefs, m_pUnkOuter.
  70.   Returns:  void
  71. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  72. COUtilityCar::COUtilityCar(
  73.   IUnknown* pUnkOuter,
  74.   CServer* pServer) :
  75.   m_ImpICar(this, pUnkOuter),
  76.   m_ImpIUtility(this, pUnkOuter)
  77. {
  78.   // Zero the COM object's reference count.
  79.   m_cRefs = 0;
  80.   // No AddRef necessary if non-NULL, as this present COM object's lifetime
  81.   // is totally coupled with the controlling Outer object's lifetime.
  82.   m_pUnkOuter = pUnkOuter;
  83.   // Zero the pointer to the contained COCar object's ICar interface.
  84.   m_pICar = NULL;
  85.   // Init the pointer to the server's control object.
  86.   m_pServer = pServer;
  87.   LOGF2("L<%X>: COUtilityCar Constructor. m_pUnkOuter=0x%X.",TID,m_pUnkOuter);
  88.   return;
  89. }
  90. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  91.   Method:   COUtilityCar::~COUtilityCar
  92.   Summary:  COUtilityCar Destructor.
  93.   Args:     void
  94.   Modifies: .
  95.   Returns:  void
  96. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  97. COUtilityCar::~COUtilityCar(void)
  98. {
  99.   LOGF1("L<%X>: COUtilityCar::Destructor.",TID);
  100.   // Release the contained Car object.
  101.   RELEASE_INTERFACE(m_pICar);
  102.   return;
  103. }
  104. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  105.   Method:   COUtilityCar::Init
  106.   Summary:  COUtilityCar Initialization method.
  107.   Args:     void
  108.   Modifies: m_pUnkCar, m_pICar, m_cRefs.
  109.   Returns:  HRESULT
  110.               Standard result code. NOERROR for success.
  111. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  112. HRESULT COUtilityCar::Init(void)
  113. {
  114.   HRESULT hr;
  115.   LOGF1("L<%X>: COUtilityCar::Init.",TID);
  116.   // Set up the right pIUnknown for delegation.  If we are being
  117.   // aggregated then we pass the pUnkOuter in turn to any COM objects
  118.   // that we are aggregating.  m_pUnkOuter was set in the Constructor.
  119.   IUnknown* pUnkOuter = (NULL == m_pUnkOuter) ? this : m_pUnkOuter;
  120.   // We create an instance of the COCar object and do this via the
  121.   // Containment reuse technique.  We ask for the new COM object's
  122.   // ICar interface directly.  We pass NULL for the pUnkOuter
  123.   // aggregation pointer because we are not aggregating.  It is here
  124.   // that we are reusing the COCar COM Object through the Containment
  125.   // technique.  We cache the requested ICar interface pointer in this
  126.   // COUtilityCar COM object for later use.  We don't need to AddRef
  127.   // this interface because the CoCreateInstance will do this for us.
  128.   hr = CoCreateInstance(
  129.          CLSID_AptCar,
  130.          NULL,
  131.          CLSCTX_LOCAL_SERVER,
  132.          IID_ICar,
  133.          (PPVOID)&m_pICar);
  134.   if (SUCCEEDED(hr))
  135.   {
  136.     LOGF1("L<%X>: COUtilityCar::Init (New Containment of COCar) Succeeded.",TID);
  137.   }
  138.   else
  139.   {
  140.     LOGF2("L<%X>: COUtilityCar::Init (New Containment of COCar) Failed. hr=0x%X.",TID,hr);
  141.   }
  142.   return (hr);
  143. }
  144. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  145.   Method:   COUtilityCar::QueryInterface
  146.   Summary:  QueryInterface of the COUtilityCar non-delegating
  147.             IUnknown implementation.
  148.   Args:     REFIID riid,
  149.               [in] GUID of the Interface being requested.
  150.             PPVOID ppv)
  151.               [out] Address of the caller's pointer variable that will
  152.               receive the requested interface pointer.
  153.   Modifies: *ppv.
  154.   Returns:  HRESULT
  155. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  156. STDMETHODIMP COUtilityCar::QueryInterface(
  157.                REFIID riid,
  158.                PPVOID ppv)
  159. {
  160.   HRESULT hr = E_NOINTERFACE;
  161.   *ppv = NULL;
  162.   if (IID_IUnknown == riid)
  163.   {
  164.     *ppv = this;
  165.     LOGF1("L<%X>: COUtilityCar::QueryInterface. 'this' pIUnknown returned",TID);
  166.   }
  167.   else if (IID_ICar == riid)
  168.   {
  169.     *ppv = &m_ImpICar;
  170.     LOGF1("L<%X>: COUtilityCar::QueryInterface. pICar returned",TID);
  171.   }
  172.   else if (IID_IUtility == riid)
  173.   {
  174.     // This IUtility interface is implemented in this COUtilityCar object
  175.     // and might be called a native interface of COCruiseCar.
  176.     *ppv = &m_ImpIUtility;
  177.     LOGF1("L<%X>: COUtilityCar::QueryInterface. pIUtility returned",TID);
  178.   }
  179.   if (NULL != *ppv)
  180.   {
  181.     // We've handed out a pointer to the interface so obey the COM rules
  182.     // and AddRef the reference count.
  183.     ((LPUNKNOWN)*ppv)->AddRef();
  184.     hr = NOERROR;
  185.   }
  186.   return (hr);
  187. }
  188. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  189.   Method:   COUtilityCar::AddRef
  190.   Summary:  AddRef of the COUtilityCar non-delegating IUnknown implementation.
  191.   Args:     void
  192.   Modifies: m_cRefs.
  193.   Returns:  ULONG
  194.               New value of m_cRefs (COM object's reference count).
  195. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  196. STDMETHODIMP_(ULONG) COUtilityCar::AddRef(void)
  197. {
  198.   m_cRefs++;
  199.   LOGF2("L<%X>: COUtilityCar::AddRef. New cRefs=%i.",TID,m_cRefs);
  200.   return m_cRefs;
  201. }
  202. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  203.   Method:   COUtilityCar::Release
  204.   Summary:  Release of the COUtilityCar non-delegating IUnknown
  205.             implementation.
  206.   Args:     void
  207.   Modifies: m_cRefs.
  208.   Returns:  ULONG
  209.               New value of m_cRefs (COM object's reference count).
  210. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  211. STDMETHODIMP_(ULONG) COUtilityCar::Release(void)
  212. {
  213.   ULONG ulCount = --m_cRefs;
  214.   LOGF2("L<%X>: COUtilityCar::Release. New cRefs=%i.",TID,m_cRefs);
  215.   if (0 == m_cRefs)
  216.   {
  217.     // We artificially bump the main ref count to ensure that an indirect
  218.     // recursive call to this release won't occur because of other
  219.     // delegating releases that might happen in our own destructor.
  220.     m_cRefs++;
  221.     delete this;
  222.     // We've reached a zero reference count for this COM object.
  223.     // So we tell the server housing to decrement its global object
  224.     // count so that the server will be unloaded if appropriate.
  225.     if (NULL != m_pServer)
  226.       m_pServer->ObjectsDown();
  227.   }
  228.   return ulCount;
  229. }
  230. /*---------------------------------------------------------------------------
  231.   COUtilityCar's nested implementation of the ICar interface including
  232.   Constructor, Destructor, QueryInterface, AddRef, Release,
  233.   Shift, Clutch, Speed, and Steer.
  234. ---------------------------------------------------------------------------*/
  235. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  236.   Method:   COUtilityCar::CImpICar::CImpICar
  237.   Summary:  Constructor for the CImpICar interface instantiation.
  238.   Args:     COUtilityCar* pBackObj,
  239.               Back pointer to the parent outer object.
  240.             IUnknown* pUnkOuter,
  241.               Pointer to the outer Unknown.  For delegation.
  242.   Modifies: m_cRefI, m_pBackObj, m_pUnkOuter.
  243.   Returns:  void
  244. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  245. COUtilityCar::CImpICar::CImpICar(
  246.   COUtilityCar* pBackObj,
  247.   IUnknown* pUnkOuter)
  248. {
  249.   // Init the Interface Ref Count (used for debugging only).
  250.   m_cRefI = 0;
  251.   // Init the Back Object Pointer to point to the outer object.
  252.   m_pBackObj = pBackObj;
  253.   // Init the CImpICar interface's delegating Unknown pointer.  We use
  254.   // the Back Object pointer for IUnknown delegation here if we are not
  255.   // being aggregated.  If we are being aggregated we use the supplied
  256.   // pUnkOuter for IUnknown delegation.  In either case the pointer
  257.   // assignment requires no AddRef because the CImpICar lifetime is
  258.   // quaranteed by the lifetime of the parent object in which
  259.   // CImpICar is nested.
  260.   if (NULL == pUnkOuter)
  261.   {
  262.     m_pUnkOuter = pBackObj;
  263.     LOGF1("L<%X>: COUtilityCar::CImpICar Constructor. Non-Aggregating",TID);
  264.   }
  265.   else
  266.   {
  267.     m_pUnkOuter = pUnkOuter;
  268.     LOGF1("L<%X>: COUtilityCar::CImpICar Constructor. Aggregating",TID);
  269.   }
  270.   return;
  271. }
  272. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  273.   Method:   COUtilityCar::CImpICar::~CImpICar
  274.   Summary:  Destructor for the CImpICar interface instantiation.
  275.   Args:     void
  276.   Modifies: .
  277.   Returns:  void
  278. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  279. COUtilityCar::CImpICar::~CImpICar(void)
  280. {
  281.   LOGF1("L<%X>: COUtilityCar::CImpICar Destructor.",TID);
  282.   return;
  283. }
  284. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  285.   Method:   COUtilityCar::CImpICar::QueryInterface
  286.   Summary:  The QueryInterface IUnknown member of this ICar interface
  287.             implementation that delegates to m_pUnkOuter, whatever it is.
  288.   Args:     REFIID riid,
  289.               [in] GUID of the Interface being requested.
  290.             PPVOID ppv)
  291.               [out] Address of the caller's pointer variable that will
  292.               receive the requested interface pointer.
  293.   Modifies: .
  294.   Returns:  HRESULT
  295.               Returned by the delegated outer QueryInterface call.
  296. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  297. STDMETHODIMP COUtilityCar::CImpICar::QueryInterface(
  298.                REFIID riid,
  299.                PPVOID ppv)
  300. {
  301.   LOGF1("L<%X>: COUtilityCar::CImpICar::QueryInterface. Delegating.",TID);
  302.   // Delegate this call to the outer object's QueryInterface.
  303.   return m_pUnkOuter->QueryInterface(riid, ppv);
  304. }
  305. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  306.   Method:   COUtilityCar::CImpICar::AddRef
  307.   Summary:  The AddRef IUnknown member of this ICar interface
  308.             implementation that delegates to m_pUnkOuter, whatever it is.
  309.   Args:     void
  310.   Modifies: m_cRefI.
  311.   Returns:  ULONG
  312.               Returned by the delegated outer AddRef call.
  313. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  314. STDMETHODIMP_(ULONG) COUtilityCar::CImpICar::AddRef(void)
  315. {
  316.   // Increment the Interface Reference Count.
  317.   ++m_cRefI;
  318.   LOGF2("L<%X>: COUtilityCar::CImpICar::Addref. Delegating. New cI=%i.",TID,m_cRefI);
  319.   // Delegate this call to the outer object's AddRef.
  320.   return m_pUnkOuter->AddRef();
  321. }
  322. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  323.   Method:   COUtilityCar::CImpICar::Release
  324.   Summary:  The Release IUnknown member of this ICar interface
  325.             implementation that delegates to m_pUnkOuter, whatever it is.
  326.   Args:     void
  327.   Modifies: m_cRefI.
  328.   Returns:  ULONG
  329.               Returned by the delegated outer Release call.
  330. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  331. STDMETHODIMP_(ULONG) COUtilityCar::CImpICar::Release(void)
  332. {
  333.   // Decrement the Interface Reference Count.
  334.   --m_cRefI;
  335.   LOGF2("L<%X>: COUtilityCar::CImpICar::Release. Delegating. New cI=%i.",TID,m_cRefI);
  336.   // Delegate this call to the outer object's Release.
  337.   return m_pUnkOuter->Release();
  338. }
  339. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  340.   Method:   COUtilityCar::CImpICar::Shift
  341.   Summary:  The Shift member method of this ICar interface implementation.
  342.             A simple empty method on a COUtilityCar COM object for tutorial
  343.             purposes.  Presumably if this Car object were modeling
  344.             a real Car then the Shift method would shift to the specified
  345.             gear.
  346.   Args:     short nGear
  347.               0 - Neutral; 1 - 5 First 5 forward gears; 6 - Reverse.
  348.   Modifies: .
  349.   Returns:  HRESULT
  350.               NOERROR
  351. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  352. STDMETHODIMP COUtilityCar::CImpICar::Shift(
  353.                short nGear)
  354. {
  355.   LOGF2("L<%X>: COUtilityCar::CImpICar::Shift. Delegating. nGear=%i.",TID,nGear);
  356.   // Delegate to the contained object implementation of ICar.
  357.   m_pBackObj->m_pICar->Shift(nGear);
  358.   return NOERROR;
  359. }
  360. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  361.   Method:   COUtilityCar::CImpICar::Clutch
  362.   Summary:  The Clutch member method of this ICar interface implementation.
  363.             A simple empty method on a COUtilityCar COM object for tutorial
  364.             purposes.  Presumably if this Car object were modeling
  365.             a real Car then the Clutch method would engage the clutch the
  366.             specified amount.
  367.   Args:     short nEngaged)
  368.               Percent clutch is engaged (0 to 100%).
  369.   Modifies: .
  370.   Returns:  HRESULT
  371.               NOERROR
  372. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  373. STDMETHODIMP COUtilityCar::CImpICar::Clutch(
  374.                short nEngaged)
  375. {
  376.   LOGF2("L<%X>: COUtilityCar::CImpICar::Clutch. Delegating. nEngaged=%i.",TID,nEngaged);
  377.   // Delegate to the contained object implementation of ICar.
  378.   m_pBackObj->m_pICar->Clutch(nEngaged);
  379.   return NOERROR;
  380. }
  381. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  382.   Method:   COUtilityCar::CImpICar::Speed
  383.   Summary:  The Propel member method of this ICar interface implementation.
  384.             A simple empty method on a COUtilityCar COM object for tutorial
  385.             purposes.  Presumably if this Car object were modeling
  386.             a real Car then this method would accelerate/brake to bring
  387.             the car to the specified speed.
  388.   Args:     short nMph
  389.               New speed in miles per hour.
  390.   Modifies: .
  391.   Returns:  HRESULT
  392.               NOERROR
  393. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  394. STDMETHODIMP COUtilityCar::CImpICar::Speed(
  395.                short nMph)
  396. {
  397.   LOGF2("L<%X>: COUtilityCar::CImpICar::Speed. Delegating. nMph=%i.",TID,nMph);
  398.   // Delegate to the contained object implementation of ICar.
  399.   m_pBackObj->m_pICar->Speed(nMph);
  400.   return NOERROR;
  401. }
  402. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  403.   Method:   COUtilityCar::CImpICar::Steer
  404.   Summary:  The Steer member method of this ICar interface implementation.
  405.             A simple empty method on a COUtilityCar COM object for tutorial
  406.             purposes.  Presumably if this Car object were modeling
  407.             a real Car then the Steer method would set the steering
  408.             angle of the Car.
  409.   Args:     short nAngle)
  410.               0 degrees straight ahead, -45 Full left, +45 Full right.
  411.   Modifies: .
  412.   Returns:  HRESULT
  413.               NOERROR
  414. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  415. STDMETHODIMP COUtilityCar::CImpICar::Steer(
  416.                short nAngle)
  417. {
  418.   LOGF2("L<%X>: COUtilityCar::CImpICar::Steer. Delegating. nAngle=%i.",TID,nAngle);
  419.   // Delegate to the contained object implementation of ICar.
  420.   m_pBackObj->m_pICar->Steer(nAngle);
  421.   return NOERROR;
  422. }
  423. /*---------------------------------------------------------------------------
  424.   COUtilityCar's nested implementation of the IUtility interface including
  425.   Constructor, Destructor, QueryInterface, AddRef, Release,
  426.   Offroad, and Winch.
  427. ---------------------------------------------------------------------------*/
  428. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  429.   Method:   COUtilityCar::CImpIUtility::CImpIUtility
  430.   Summary:  Constructor for the CImpIUtility interface instantiation.
  431.   Args:     COUtilityCar* pBackObj,
  432.               Back pointer to the parent outer object.
  433.             IUnknown* pUnkOuter)
  434.               Pointer to the outer Unknown.  For delegation.
  435.   Modifies: m_cRefI, m_pBackObj, m_pUnkOuter.
  436.   Returns:  void
  437. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  438. COUtilityCar::CImpIUtility::CImpIUtility(
  439.   COUtilityCar* pBackObj,
  440.   IUnknown* pUnkOuter)
  441. {
  442.   // Init the Interface Ref Count (used for debugging only).
  443.   m_cRefI = 0;
  444.   // Init the Back Object Pointer to point to the outer object.
  445.   m_pBackObj = pBackObj;
  446.   // Init the CImpIUtility interface's delegating Unknown pointer.  We use
  447.   // the Back Object pointer for IUnknown delegation here if we are not
  448.   // being aggregated.  If we are being aggregated we use the supplied
  449.   // pUnkOuter for IUnknown delegation.  In either case the pointer
  450.   // assignment requires no AddRef because the CImpIUtility lifetime is
  451.   // quaranteed by the lifetime of the parent object in which
  452.   // CImpIUtility is nested.
  453.   if (NULL == pUnkOuter)
  454.   {
  455.     m_pUnkOuter = pBackObj;
  456.     LOGF1("L<%X>: COUtilityCar::CImpIUtility Constructor. Non-Aggregating.",TID);
  457.   }
  458.   else
  459.   {
  460.     m_pUnkOuter = pUnkOuter;
  461.     LOGF1("L<%X>: COUtilityCar::CImpIUtility Constructor. Aggregating.",TID);
  462.   }
  463.   return;
  464. }
  465. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  466.   Method:   COUtilityCar::CImpIUtility::~CImpIUtility
  467.   Summary:  Destructor for the CImpIUtility interface instantiation.
  468.   Args:     void
  469.   Modifies: .
  470.   Returns:  void
  471. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  472. COUtilityCar::CImpIUtility::~CImpIUtility(void)
  473. {
  474.   LOGF1("L<%X>: COUtilityCar::CImpIUtility Destructor.",TID);
  475.   return;
  476. }
  477. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  478.   Method:   COUtilityCar::CImpIUtility::QueryInterface
  479.   Summary:  The QueryInterface IUnknown member of this IUtility interface
  480.             implementation that delegates to m_pUnkOuter, whatever it is.
  481.   Args:     REFIID riid,
  482.               [in] GUID of the Interface being requested.
  483.             PPVOID ppv)
  484.               [out] Address of the caller's pointer variable that will
  485.               receive the requested interface pointer.
  486.   Modifies: .
  487.   Returns:  HRESULT
  488.               Returned by the delegated outer QueryInterface call.
  489. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  490. STDMETHODIMP COUtilityCar::CImpIUtility::QueryInterface(
  491.                REFIID riid,
  492.                PPVOID ppv)
  493. {
  494.   LOGF1("L<%X>: COUtilityCar::CImpIUtility::QueryInterface. Delegating.",TID);
  495.   // Delegate this call to the outer object's QueryInterface.
  496.   return m_pUnkOuter->QueryInterface(riid, ppv);
  497. }
  498. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  499.   Method:   COUtilityCar::CImpIUtility::AddRef
  500.   Summary:  The AddRef IUnknown member of this IUtility interface
  501.             implementation that delegates to m_pUnkOuter, whatever it is.
  502.   Args:     void
  503.   Modifies: m_cRefI.
  504.   Returns:  ULONG
  505.               Returned by the delegated outer AddRef call.
  506. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  507. STDMETHODIMP_(ULONG) COUtilityCar::CImpIUtility::AddRef(void)
  508. {
  509.   // Increment the Interface Reference Count.
  510.   ++m_cRefI;
  511.   LOGF2("L<%X>: COUtilityCar::CImpIUtility::Addref. Delegating. New cI=%i.",TID,m_cRefI);
  512.   // Delegate this call to the outer object's AddRef.
  513.   return m_pUnkOuter->AddRef();
  514. }
  515. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  516.   Method:   COUtilityCar::CImpIUtility::Release
  517.   Summary:  The Release IUnknown member of this IUtility interface
  518.             implementation that delegates to m_pUnkOuter, whatever it is.
  519.   Args:     void
  520.   Modifies: m_cRefI.
  521.   Returns:  ULONG
  522.               Returned by the delegated outer Release call.
  523. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  524. STDMETHODIMP_(ULONG) COUtilityCar::CImpIUtility::Release(void)
  525. {
  526.   // Decrement the Interface Reference Count.
  527.   --m_cRefI;
  528.   LOGF2("L<%X>: COUtilityCar::CImpIUtility::Release. Delegating. New cI=%i.",TID,m_cRefI);
  529.   // Delegate this call to the outer object's Release.
  530.   return m_pUnkOuter->Release();
  531. }
  532. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  533.   Method:   COUtilityCar::CImpIUtility::Offroad
  534.   Summary:  The Offroad member method of this IUtility interface
  535.             implementation.  A simple empty method on a COUtilityCar
  536.             COM object for tutorial purposes.  Presumably if this
  537.             UtilityCar object were modeling a real Car then the Offroad
  538.             method would function the 4-wheel drive transfer case and
  539.             shift it to the specified 4-wheel drive mode.
  540.   Args:     short nGear
  541.               0 = 2H or regular 2-wheel drive;
  542.               1 = 4H or 4-wheel drive high speed;
  543.               2 = neutral; and
  544.               3 = 4L or 4-wheel drive low speed).
  545.   Modifies: .
  546.   Returns:  HRESULT
  547.               NOERROR
  548. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  549. STDMETHODIMP COUtilityCar::CImpIUtility::Offroad(
  550.                short nGear)
  551. {
  552.   LOGF2("L<%X>: COUtilityCar::CImpIUtility::Offroad. Called. nGear=%i.",TID,nGear);
  553.   return NOERROR;
  554. }
  555. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  556.   Method:   COUtilityCar::CImpIUtility::Winch
  557.   Summary:  The Winch member method of this IUtility interface
  558.             implementation.  A simple empty method on a COUtilityCar COM
  559.             object for tutorial purposes.  Presumably if this UtilityCar
  560.             object were modeling a real Car then the Winch method would
  561.             turn on/off the front-mounted Winch to the specified RPMs.
  562.   Args:     short nRpm
  563.               0 = off; 1 - 50 RPM.
  564.   Modifies: .
  565.   Returns:  HRESULT
  566.               NOERROR
  567. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  568. STDMETHODIMP COUtilityCar::CImpIUtility::Winch(
  569.                short nRpm)
  570. {
  571.   LOGF2("L<%X>: COUtilityCar::CImpIUtility::Winch. Called. nRpm=%i.",TID,nRpm);
  572.   return NOERROR;
  573. }