CAR.CPP
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:15k
源码类别:
Windows编程
开发平台:
Visual C++
- /*+==========================================================================
- File: CAR.CPP
- Summary: Implementation file for the COCar COM Object Class (for
- aggregatable Car COM Objects).
- COCar offers a main IUnknown interface and the ICar
- interface (Car-related features). This multiple interface
- COM Object Class is achieved via the technique of nested
- classes. The implementation of the ICar interface is
- nested inside of the COCar Class.
- For a comprehensive tutorial code tour of this module's
- contents and offerings see the tutorial LOCSERVE.HTM file.
- For more specific technical details on the internal workings
- see the comments dispersed throughout the module's source code.
- Classes: COCar.
- Functions: none.
- Origin: 11-14-95: atrent - Editor-inheritance from CAR.CPP in
- the DLLSERVE Tutorial Code Sample.
- ----------------------------------------------------------------------------
- This file is part of the Microsoft COM Tutorial Code Samples.
- Copyright (C) Microsoft Corporation, 1997. All rights reserved.
- This source code is intended only as a supplement to Microsoft
- Development Tools and/or on-line documentation. See these other
- materials for detailed information regarding Microsoft code samples.
- THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
- KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- PARTICULAR PURPOSE.
- ==========================================================================+*/
- /*---------------------------------------------------------------------------
- We include WINDOWS.H for all Win32 applications.
- We include OLE2.H because we will be calling the COM/OLE Libraries.
- We include APPUTIL.H because we will be building this application using
- the convenient Virtual Window and Dialog classes and other
- utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
- We include MICARS.H and CARGUIDS.H for the common car-related Interface
- class, GUID, and CLSID specifications.
- We include SERVER.H because it has internal class declarations and
- resource ID definitions specific for this executable.
- We include CAR.H because it has the class COCar declarations.
- ---------------------------------------------------------------------------*/
- #include <windows.h>
- #include <ole2.h>
- #include <apputil.h>
- #include <micars.h>
- #include <carguids.h>
- #include "server.h"
- #include "car.h"
- /*---------------------------------------------------------------------------
- COCar's implementation of its main COM object class including
- Constructor, Destructor, QueryInterface, AddRef, and Release.
- ---------------------------------------------------------------------------*/
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::COCar
- Summary: COCar Constructor. Note the member initializer:
- "m_ImpICar(this, pUnkOuter)" which is used to pass the 'this'
- and pUnkOuter pointers of this constructor function to the
- constructor in the instantiation of the implementation of
- the CImpICar interface (which is nested inside this present
- COCar Object Class).
- Args: IUnknown* pUnkOuter,
- Pointer to the the outer Unknown. NULL means this COM Object
- is not being Aggregated. Non NULL means it is being created
- on behalf of an outside COM object that is reusing it via
- aggregation.
- CServer* pServer)
- Pointer to the server's control object.
- Modifies: m_cRefs, m_pUnkOuter, m_pServer.
- Returns: void
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- COCar::COCar(
- IUnknown* pUnkOuter,
- CServer* pServer) :
- m_ImpICar(this, pUnkOuter)
- {
- // Zero the COM object's reference count.
- m_cRefs = 0;
- // No AddRef necessary if non-NULL, as we're nested.
- m_pUnkOuter = pUnkOuter;
- // Assign the pointer to the server control object.
- m_pServer = pServer;
- LOGF1("L: COCar Constructor. m_pUnkOuter=0x%X.", m_pUnkOuter);
- return;
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::~COCar
- Summary: COCar Destructor.
- Args: void
- Modifies: .
- Returns: void
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- COCar::~COCar(void)
- {
- LOG("L: COCar::Destructor.");
- return;
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::QueryInterface
- Summary: QueryInterface of the COCar non-delegating
- IUnknown implementation.
- Args: REFIID riid,
- [in] GUID of the Interface being requested.
- PPVOID ppv)
- [out] Address of the caller's pointer variable that will
- receive the requested interface pointer.
- Modifies: .
- Returns: HRESULT
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- STDMETHODIMP COCar::QueryInterface(
- REFIID riid,
- PPVOID ppv)
- {
- HRESULT hr = E_NOINTERFACE;
- *ppv = NULL;
- if (IID_IUnknown == riid)
- {
- *ppv = this;
- LOG("L: COCar::QueryInterface. 'this' pIUnknown returned.");
- }
- else if (IID_ICar == riid)
- {
- *ppv = &m_ImpICar;
- LOG("L: COCar::QueryInterface. pICar returned.");
- }
- if (NULL != *ppv)
- {
- // We've handed out a pointer to the interface so obey the COM rules
- // and AddRef the reference count.
- ((LPUNKNOWN)*ppv)->AddRef();
- hr = NOERROR;
- }
- return (hr);
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::AddRef
- Summary: AddRef of the COCar non-delegating IUnknown implementation.
- Args: void
- Modifies: m_cRefs.
- Returns: ULONG
- New value of m_cRefs (COM object's reference count).
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- STDMETHODIMP_(ULONG) COCar::AddRef(void)
- {
- m_cRefs++;
- LOGF1("L: COCar::AddRef. New cRefs=%i.", m_cRefs);
- return m_cRefs;
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::Release
- Summary: Release of the COCar non-delegating IUnknown implementation.
- Args: void
- Modifies: m_cRefs.
- Returns: ULONG
- New value of m_cRefs (COM object's reference count).
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- STDMETHODIMP_(ULONG) COCar::Release(void)
- {
- m_cRefs--;
- LOGF1("L: COCar::Release. New cRefs=%i.", m_cRefs);
- if (0 == m_cRefs)
- {
- // We've reached a zero reference count for this COM object.
- // So we tell the server housing to decrement its global object
- // count so that the server will be unloaded if appropriate.
- if (NULL != m_pServer)
- m_pServer->ObjectsDown();
- // We artificially bump the main ref count to prevent reentrancy
- // via the main object destructor. Not really needed in this
- // COCar but a good practice because we are aggregatable and
- // may at some point in the future add something entertaining like
- // some Releases to the COCar destructor.
- m_cRefs++;
- delete this;
- }
- return m_cRefs;
- }
- /*---------------------------------------------------------------------------
- COCar's nested implementation of the ICar interface including
- Constructor, Destructor, QueryInterface, AddRef, Release,
- Shift, Clutch, Speed, and Steer.
- ---------------------------------------------------------------------------*/
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::CImpICar::CImpICar
- Summary: Constructor for the CImpICar interface instantiation.
- Args: COCar* pBackObj,
- Back pointer to the parent outer object.
- IUnknown* pUnkOuter
- Pointer to the outer Unknown. For delegation.
- Modifies: m_cRefI, m_pBackObj, m_pUnkOuter.
- Returns: void
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- COCar::CImpICar::CImpICar(
- COCar* pBackObj,
- IUnknown* pUnkOuter)
- {
- // Init the Interface Ref Count (used for debugging only).
- m_cRefI = 0;
- // Init the Back Object Pointer to point to the parent object.
- m_pBackObj = pBackObj;
- // Init the CImpICar interface's delegating Unknown pointer. We use
- // the Back Object pointer for IUnknown delegation here if we are not
- // being aggregated. If we are being aggregated we use the supplied
- // pUnkOuter for IUnknown delegation. In either case the pointer
- // assignment requires no AddRef because the CImpICar lifetime is
- // quaranteed by the lifetime of the parent object in which
- // CImpICar is nested.
- if (NULL == pUnkOuter)
- {
- m_pUnkOuter = pBackObj;
- LOG("L: COCar::CImpICar Constructor. Non-Aggregating.");
- }
- else
- {
- m_pUnkOuter = pUnkOuter;
- LOG("L: COCar::CImpICar Constructor. Aggregating.");
- }
- return;
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::CImpICar::~CImpICar
- Summary: Destructor for the CImpICar interface instantiation.
- Args: void
- Modifies: .
- Returns: void
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- COCar::CImpICar::~CImpICar(void)
- {
- LOG("L: COCar::CImpICar Destructor.");
- return;
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::CImpICar::QueryInterface
- Summary: The QueryInterface IUnknown member of this ICar interface
- implementation that delegates to m_pUnkOuter, whatever it is.
- Args: REFIID riid,
- [in] GUID of the Interface being requested.
- PPVOID ppv)
- [out] Address of the caller's pointer variable that will
- receive the requested interface pointer.
- Modifies: .
- Returns: HRESULT
- Returned by the delegated outer QueryInterface call.
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- STDMETHODIMP COCar::CImpICar::QueryInterface(
- REFIID riid,
- PPVOID ppv)
- {
- LOG("L: COCar::CImpICar::QueryInterface. Delegating.");
- // Delegate this call to the outer object's QueryInterface.
- return m_pUnkOuter->QueryInterface(riid, ppv);
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::CImpICar::AddRef
- Summary: The AddRef IUnknown member of this ICar interface
- implementation that delegates to m_pUnkOuter, whatever it is.
- Args: void
- Modifies: m_cRefI.
- Returns: ULONG
- Returned by the delegated outer AddRef call.
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- STDMETHODIMP_(ULONG) COCar::CImpICar::AddRef(void)
- {
- // Increment the Interface Reference Count.
- ++m_cRefI;
- LOGF1("L: COCar::CImpICar::Addref. Delegating. New cI=%i.", m_cRefI);
- // Delegate this call to the outer object's AddRef.
- return m_pUnkOuter->AddRef();
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::CImpICar::Release
- Summary: The Release IUnknown member of this ICar interface
- implementation that delegates to m_pUnkOuter, whatever it is.
- Args: void
- Modifies: .
- Returns: ULONG
- Returned by the delegated outer Release call.
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- STDMETHODIMP_(ULONG) COCar::CImpICar::Release(void)
- {
- // Decrement the Interface Reference Count.
- --m_cRefI;
- LOGF1("L: COCar::CImpICar::Release. Delegating. New cI=%i.", m_cRefI);
- // Delegate this call to the outer object's Release.
- return m_pUnkOuter->Release();
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::CImpICar::Shift
- Summary: The Shift member method of this ICar interface implementation.
- A simple empty method on a COCar COM object for tutorial
- purposes. Presumably if this Car object were modeling
- a real Car then the Shift method would shift to the specified
- gear.
- Args: short nGear
- 0 - Neutral; 1 - 5 First 5 forward gears; 6 - Reverse.
- Modifies: .
- Returns: HRESULT
- NOERROR
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- STDMETHODIMP COCar::CImpICar::Shift(
- short nGear)
- {
- LOGF1("L: COCar::CImpICar::Shift. Called. nGear=%i.",nGear);
- return NOERROR;
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::CImpICar::Clutch
- Summary: The Clutch member method of this ICar interface implementation.
- A simple empty method on a COCar COM object for tutorial
- purposes. Presumably if this Car object were modeling
- a real Car then the Clutch method would engage the clutch the
- specified amount.
- Args: short nEngaged)
- Percent clutch is engaged (0 to 100%).
- Modifies: .
- Returns: HRESULT
- NOERROR
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- STDMETHODIMP COCar::CImpICar::Clutch(
- short nEngaged)
- {
- LOGF1("L: COCar::CImpICar::Clutch. Called. nEngaged=%i.",nEngaged);
- return NOERROR;
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::CImpICar::Speed
- Summary: The Speed member method of this ICar interface implementation.
- A simple empty method on a COCar COM object for tutorial
- purposes. Presumably if this Car object were modeling
- a real Car then this method would accelerate/brake to bring
- the car to the specified speed.
- Args: short nMph
- New speed in miles per hour.
- Modifies: .
- Returns: HRESULT
- NOERROR
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- STDMETHODIMP COCar::CImpICar::Speed(
- short nMph)
- {
- LOGF1("L: COCar::CImpICar::Speed. Called. nMph=%i.",nMph);
- return NOERROR;
- }
- /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
- Method: COCar::CImpICar::Steer
- Summary: The Steer member method of this ICar interface implementation.
- A simple empty method on a COCar COM object for tutorial
- purposes. Presumably if this Car object were modeling
- a real Car then the Steer method would set the steering
- angle of the Car.
- Args: short nAngle)
- 0 degrees straight ahead, -45 Full left, +45 Full right.
- Modifies: .
- Returns: HRESULT
- NOERROR
- M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
- STDMETHODIMP COCar::CImpICar::Steer(
- short nAngle)
- {
- LOGF1("L: COCar::CImpICar::Steer. Called. nAngle=%i.",nAngle);
- return NOERROR;
- }