home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap21 / polyline / dllpoly.cpp next >
C/C++ Source or Header  |  1996-05-21  |  8KB  |  364 lines

  1. /*
  2.  * DLLPOLY.CPP
  3.  * Polyline Component Chapter 21
  4.  *
  5.  * Polyline component object used in CoCosmo that supports a custom
  6.  * interface IPolyline.  Contains DLL entry code and the component
  7.  * object exports DllGetClassObject and DllCanUnloadNow and the
  8.  * class factory object.
  9.  *
  10.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  11.  *
  12.  * Kraig Brockschmidt, Microsoft
  13.  * Internet  :  kraigb@microsoft.com
  14.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  15.  */
  16.  
  17.  
  18. #define INITGUIDS
  19. #include "polyline.h"
  20.  
  21.  
  22. //Count number of objects and number of locks.
  23. ULONG       g_cObj=0;
  24. ULONG       g_cLock=0;
  25.  
  26. //DLL Instance handle
  27. HINSTANCE   g_hInst=0;
  28.  
  29.  
  30.  
  31. /*
  32.  * LibMain32 (Win32)
  33.  *
  34.  * Purpose:
  35.  *  Entry point for Win32 DLLs that calls the Win16 LibMain.
  36.  */
  37.  
  38. #ifdef WIN32
  39. BOOL WINAPI LibMain32(HINSTANCE hInstance, ULONG ulReason
  40.     , LPVOID pvReserved)
  41.     {
  42.     if (DLL_PROCESS_DETACH==ulReason)
  43.         {
  44.         return TRUE;
  45.         }
  46.     else
  47.         {
  48.         if (DLL_PROCESS_ATTACH!=ulReason)
  49.             return TRUE;
  50.         }
  51.  
  52.     return (0!=LibMain(hInstance, 0,  0, NULL));
  53.     }
  54. #endif
  55.  
  56.  
  57.  
  58. /*
  59.  * LibMain (also called from Win32 LibMain32)
  60.  *
  61.  * Purpose:
  62.  *  DLL-specific entry point called from LibEntry.
  63.  */
  64.  
  65. int PASCAL LibMain(HINSTANCE hInst, WORD wDataSeg
  66.     , WORD cbHeapSize, LPSTR lpCmdLine)
  67.     {
  68.     WNDCLASS    wc;
  69.  
  70.     if (GetClassInfo(hInst, SZCLASSPOLYLINE, &wc))
  71.         return (int)hInst;
  72.  
  73.    #ifndef WIN32
  74.     if (0!=cbHeapSize)
  75.         UnlockData(0);
  76.    #endif
  77.  
  78.     wc.style         = CS_HREDRAW | CS_VREDRAW;
  79.     wc.hInstance     = hInst;
  80.     wc.cbClsExtra    = 0;
  81.     wc.lpfnWndProc   = PolylineWndProc;
  82.     wc.cbWndExtra    = CBPOLYLINEWNDEXTRA;
  83.     wc.hIcon         = NULL;
  84.     wc.hCursor       = LoadCursor(NULL, IDC_CROSS);
  85.     wc.hbrBackground = NULL;
  86.     wc.lpszMenuName  = NULL;
  87.     wc.lpszClassName = SZCLASSPOLYLINE;
  88.  
  89.     if (!RegisterClass(&wc))
  90.         return 0;
  91.  
  92.     g_hInst=hInst;
  93.     return (int)hInst;
  94.     }
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102. /*
  103.  * DllGetClassObject
  104.  *
  105.  * Purpose:
  106.  *  Provides an IClassFactory for a given CLSID that this DLL is
  107.  *  registered to support.  This DLL is placed under the CLSID
  108.  *  in the registration database as the InProcServer.
  109.  *
  110.  * Parameters:
  111.  *  clsID           REFCLSID that identifies the class factory
  112.  *                  desired.  Since this parameter is passed this
  113.  *                  DLL can handle any number of objects simply
  114.  *                  by returning different class factories here
  115.  *                  for different CLSIDs.
  116.  *
  117.  *  riid            REFIID specifying the interface the caller wants
  118.  *                  on the class object, usually IID_ClassFactory.
  119.  *
  120.  *  ppv             PPVOID in which to return the interface
  121.  *                  pointer.
  122.  *
  123.  * Return Value:
  124.  *  HRESULT         NOERROR on success, otherwise an error code.
  125.  */
  126.  
  127. HRESULT APIENTRY DllGetClassObject(REFCLSID rclsid
  128.     , REFIID riid, PPVOID ppv)
  129.     {
  130.     if (CLSID_Polyline19!=rclsid)
  131.         return ResultFromScode(E_FAIL);
  132.  
  133.     //Check that we can provide the interface
  134.     if (IID_IUnknown!=riid && IID_IClassFactory!=riid)
  135.         return ResultFromScode(E_NOINTERFACE);
  136.  
  137.     //Return our IClassFactory for Polyline objects
  138.     *ppv=new CPolylineClassFactory;
  139.  
  140.     if (NULL==*ppv)
  141.         return ResultFromScode(E_OUTOFMEMORY);
  142.  
  143.     //AddRef the object through any interface we return
  144.     ((LPUNKNOWN)*ppv)->AddRef();
  145.     g_cObj++;
  146.     return NOERROR;
  147.     }
  148.  
  149.  
  150.  
  151.  
  152.  
  153. /*
  154.  * DllCanUnloadNow
  155.  *
  156.  * Purpose:
  157.  *  Answers if the DLL can be freed, that is, if there are no
  158.  *  references to anything this DLL provides.
  159.  *
  160.  * Parameters:
  161.  *  None
  162.  *
  163.  * Return Value:
  164.  *  BOOL            TRUE if nothing is using us, FALSE otherwise.
  165.  */
  166.  
  167. STDAPI DllCanUnloadNow(void)
  168.     {
  169.     SCODE   sc;
  170.  
  171.     //Our answer is whether there are any object or locks
  172.     sc=(0L==g_cObj && 0L==g_cLock) ? S_OK : S_FALSE;
  173.     return ResultFromScode(sc);
  174.     }
  175.  
  176.  
  177.  
  178.  
  179. /*
  180.  * ObjectDestroyed
  181.  *
  182.  * Purpose:
  183.  *  Function for the Polyline object to call when it gets destroyed.
  184.  *  Since we're in a DLL we only track the number of objects here
  185.  *  letting DllCanUnloadNow take care of the rest.
  186.  */
  187.  
  188. void ObjectDestroyed(void)
  189.     {
  190.     g_cObj--;
  191.     return;
  192.     }
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199. /*
  200.  * CPolylineClassFactory::CPolylineClassFactory
  201.  *
  202.  * Purpose:
  203.  *  Constructor for an object supporting an IClassFactory that
  204.  *  instantiates Polyline objects.
  205.  *
  206.  * Parameters:
  207.  *  None
  208.  */
  209.  
  210. CPolylineClassFactory::CPolylineClassFactory(void)
  211.     {
  212.     m_cRef=0L;
  213.     return;
  214.     }
  215.  
  216.  
  217.  
  218.  
  219.  
  220. /*
  221.  * CPolylineClassFactory::~CPolylineClassFactory
  222.  *
  223.  * Purpose:
  224.  *  Destructor for a CPolylineClassFactory object.  This will be
  225.  *  called when we Release the object to a zero reference count.
  226.  */
  227.  
  228. CPolylineClassFactory::~CPolylineClassFactory(void)
  229.     {
  230.     return;
  231.     }
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238. /*
  239.  * CPolylineClassFactory::QueryInterface
  240.  * CPolylineClassFactory::AddRef
  241.  * CPolylineClassFactory::Release
  242.  */
  243.  
  244. STDMETHODIMP CPolylineClassFactory::QueryInterface(REFIID riid
  245.     , PPVOID ppv)
  246.     {
  247.     *ppv=NULL;
  248.  
  249.     if (IID_IUnknown==riid || IID_IClassFactory==riid)
  250.         *ppv=this;
  251.  
  252.     if (NULL!=*ppv)
  253.         {
  254.         ((LPUNKNOWN)*ppv)->AddRef();
  255.         return NOERROR;
  256.         }
  257.  
  258.     return ResultFromScode(E_NOINTERFACE);
  259.     }
  260.  
  261.  
  262. STDMETHODIMP_(ULONG) CPolylineClassFactory::AddRef(void)
  263.     {
  264.     return ++m_cRef;
  265.     }
  266.  
  267.  
  268. STDMETHODIMP_(ULONG) CPolylineClassFactory::Release(void)
  269.     {
  270.     if (0L!=--m_cRef)
  271.         return m_cRef;
  272.  
  273.     delete this;
  274.     ObjectDestroyed();
  275.     return 0L;
  276.     }
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284. /*
  285.  * CPolylineClassFactory::CreateInstance
  286.  *
  287.  * Purpose:
  288.  *  Instantiates a Polyline object.
  289.  *
  290.  * Parameters:
  291.  *  pUnkOuter       LPUNKNOWN to the controlling IUnknown if we
  292.  *                  are being used in an aggregation.
  293.  *  riid            REFIID identifying the interface the caller
  294.  *                  desires to have for the new object.
  295.  *  ppvObj          PPVOID in which to store the desired
  296.  *                  interface pointer for the new object.
  297.  *
  298.  * Return Value:
  299.  *  HRESULT         NOERROR if successful, otherwise E_NOINTERFACE
  300.  *                  if we cannot support the requested interface.
  301.  */
  302.  
  303. STDMETHODIMP CPolylineClassFactory::CreateInstance
  304.     (LPUNKNOWN pUnkOuter, REFIID riid, PPVOID ppvObj)
  305.     {
  306.     PCPolyline          pObj;
  307.     HRESULT             hr;
  308.  
  309.     *ppvObj=NULL;
  310.     hr=ResultFromScode(E_OUTOFMEMORY);
  311.  
  312.     //Verify that a controlling unknown asks for IUnknown
  313.     if (NULL!=pUnkOuter && IID_IUnknown!=riid)
  314.         return ResultFromScode(E_NOINTERFACE);
  315.  
  316.     //Create the object.  This also creates a window.
  317.     pObj=new CPolyline(pUnkOuter, ObjectDestroyed, g_hInst);
  318.  
  319.     if (NULL==pObj)
  320.         return hr;
  321.  
  322.     if (pObj->Init())
  323.         hr=pObj->QueryInterface(riid, ppvObj);
  324.  
  325.     //Kill the object if initial creation or Init failed.
  326.     if (FAILED(hr))
  327.         delete pObj;
  328.     else
  329.         g_cObj++;
  330.  
  331.     return hr;
  332.     }
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339. /*
  340.  * CPolylineClassFactory::LockServer
  341.  *
  342.  * Purpose:
  343.  *  Increments or decrements the lock count of the DLL.  If the lock
  344.  *  count goes to zero and there are no objects, the DLL is allowed
  345.  *  to unload.  See DllCanUnloadNow.
  346.  *
  347.  * Parameters:
  348.  *  fLock           BOOL specifying whether to increment or
  349.  *                  decrement the lock count.
  350.  *
  351.  * Return Value:
  352.  *  HRESULT         NOERROR always.
  353.  */
  354.  
  355. STDMETHODIMP CPolylineClassFactory::LockServer(BOOL fLock)
  356.     {
  357.     if (fLock)
  358.         g_cLock++;
  359.     else
  360.         g_cLock--;
  361.  
  362.     return NOERROR;
  363.     }
  364.