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

Windows编程

开发平台:

Visual C++

  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. #define INITGUIDS
  17. #include "polyline.h"
  18. //Count number of objects and number of locks.
  19. ULONG       g_cObj=0;
  20. ULONG       g_cLock=0;
  21. //DLL Instance handle
  22. HINSTANCE   g_hInst=0;
  23. /*
  24.  * LibMain32 (Win32)
  25.  *
  26.  * Purpose:
  27.  *  Entry point for Win32 DLLs that calls the Win16 LibMain.
  28.  */
  29. #ifdef WIN32
  30. BOOL WINAPI LibMain32(HINSTANCE hInstance, ULONG ulReason
  31.     , LPVOID pvReserved)
  32.     {
  33.     if (DLL_PROCESS_DETACH==ulReason)
  34.         {
  35.         return TRUE;
  36.         }
  37.     else
  38.         {
  39.         if (DLL_PROCESS_ATTACH!=ulReason)
  40.             return TRUE;
  41.         }
  42.     return (0!=LibMain(hInstance, 0,  0, NULL));
  43.     }
  44. #endif
  45. /*
  46.  * LibMain (also called from Win32 LibMain32)
  47.  *
  48.  * Purpose:
  49.  *  DLL-specific entry point called from LibEntry.
  50.  */
  51. int PASCAL LibMain(HINSTANCE hInst, WORD wDataSeg
  52.     , WORD cbHeapSize, LPSTR lpCmdLine)
  53.     {
  54.     WNDCLASS    wc;
  55.     if (GetClassInfo(hInst, SZCLASSPOLYLINE, &wc))
  56.         return (int)hInst;
  57.    #ifndef WIN32
  58.     if (0!=cbHeapSize)
  59.         UnlockData(0);
  60.    #endif
  61.     wc.style         = CS_HREDRAW | CS_VREDRAW;
  62.     wc.hInstance     = hInst;
  63.     wc.cbClsExtra    = 0;
  64.     wc.lpfnWndProc   = PolylineWndProc;
  65.     wc.cbWndExtra    = CBPOLYLINEWNDEXTRA;
  66.     wc.hIcon         = NULL;
  67.     wc.hCursor       = LoadCursor(NULL, IDC_CROSS);
  68.     wc.hbrBackground = NULL;
  69.     wc.lpszMenuName  = NULL;
  70.     wc.lpszClassName = SZCLASSPOLYLINE;
  71.     if (!RegisterClass(&wc))
  72.         return 0;
  73.     g_hInst=hInst;
  74.     return (int)hInst;
  75.     }
  76. /*
  77.  * DllGetClassObject
  78.  *
  79.  * Purpose:
  80.  *  Provides an IClassFactory for a given CLSID that this DLL is
  81.  *  registered to support.  This DLL is placed under the CLSID
  82.  *  in the registration database as the InProcServer.
  83.  *
  84.  * Parameters:
  85.  *  clsID           REFCLSID that identifies the class factory
  86.  *                  desired.  Since this parameter is passed this
  87.  *                  DLL can handle any number of objects simply
  88.  *                  by returning different class factories here
  89.  *                  for different CLSIDs.
  90.  *
  91.  *  riid            REFIID specifying the interface the caller wants
  92.  *                  on the class object, usually IID_ClassFactory.
  93.  *
  94.  *  ppv             PPVOID in which to return the interface
  95.  *                  pointer.
  96.  *
  97.  * Return Value:
  98.  *  HRESULT         NOERROR on success, otherwise an error code.
  99.  */
  100. HRESULT APIENTRY DllGetClassObject(REFCLSID rclsid
  101.     , REFIID riid, PPVOID ppv)
  102.     {
  103.     if (CLSID_Polyline19!=rclsid)
  104.         return ResultFromScode(E_FAIL);
  105.     //Check that we can provide the interface
  106.     if (IID_IUnknown!=riid && IID_IClassFactory!=riid)
  107.         return ResultFromScode(E_NOINTERFACE);
  108.     //Return our IClassFactory for Polyline objects
  109.     *ppv=new CPolylineClassFactory;
  110.     if (NULL==*ppv)
  111.         return ResultFromScode(E_OUTOFMEMORY);
  112.     //AddRef the object through any interface we return
  113.     ((LPUNKNOWN)*ppv)->AddRef();
  114.     g_cObj++;
  115.     return NOERROR;
  116.     }
  117. /*
  118.  * DllCanUnloadNow
  119.  *
  120.  * Purpose:
  121.  *  Answers if the DLL can be freed, that is, if there are no
  122.  *  references to anything this DLL provides.
  123.  *
  124.  * Parameters:
  125.  *  None
  126.  *
  127.  * Return Value:
  128.  *  BOOL            TRUE if nothing is using us, FALSE otherwise.
  129.  */
  130. STDAPI DllCanUnloadNow(void)
  131.     {
  132.     SCODE   sc;
  133.     //Our answer is whether there are any object or locks
  134.     sc=(0L==g_cObj && 0L==g_cLock) ? S_OK : S_FALSE;
  135.     return ResultFromScode(sc);
  136.     }
  137. /*
  138.  * ObjectDestroyed
  139.  *
  140.  * Purpose:
  141.  *  Function for the Polyline object to call when it gets destroyed.
  142.  *  Since we're in a DLL we only track the number of objects here
  143.  *  letting DllCanUnloadNow take care of the rest.
  144.  */
  145. void ObjectDestroyed(void)
  146.     {
  147.     g_cObj--;
  148.     return;
  149.     }
  150. /*
  151.  * CPolylineClassFactory::CPolylineClassFactory
  152.  *
  153.  * Purpose:
  154.  *  Constructor for an object supporting an IClassFactory that
  155.  *  instantiates Polyline objects.
  156.  *
  157.  * Parameters:
  158.  *  None
  159.  */
  160. CPolylineClassFactory::CPolylineClassFactory(void)
  161.     {
  162.     m_cRef=0L;
  163.     return;
  164.     }
  165. /*
  166.  * CPolylineClassFactory::~CPolylineClassFactory
  167.  *
  168.  * Purpose:
  169.  *  Destructor for a CPolylineClassFactory object.  This will be
  170.  *  called when we Release the object to a zero reference count.
  171.  */
  172. CPolylineClassFactory::~CPolylineClassFactory(void)
  173.     {
  174.     return;
  175.     }
  176. /*
  177.  * CPolylineClassFactory::QueryInterface
  178.  * CPolylineClassFactory::AddRef
  179.  * CPolylineClassFactory::Release
  180.  */
  181. STDMETHODIMP CPolylineClassFactory::QueryInterface(REFIID riid
  182.     , PPVOID ppv)
  183.     {
  184.     *ppv=NULL;
  185.     if (IID_IUnknown==riid || IID_IClassFactory==riid)
  186.         *ppv=this;
  187.     if (NULL!=*ppv)
  188.         {
  189.         ((LPUNKNOWN)*ppv)->AddRef();
  190.         return NOERROR;
  191.         }
  192.     return ResultFromScode(E_NOINTERFACE);
  193.     }
  194. STDMETHODIMP_(ULONG) CPolylineClassFactory::AddRef(void)
  195.     {
  196.     return ++m_cRef;
  197.     }
  198. STDMETHODIMP_(ULONG) CPolylineClassFactory::Release(void)
  199.     {
  200.     if (0L!=--m_cRef)
  201.         return m_cRef;
  202.     delete this;
  203.     ObjectDestroyed();
  204.     return 0L;
  205.     }
  206. /*
  207.  * CPolylineClassFactory::CreateInstance
  208.  *
  209.  * Purpose:
  210.  *  Instantiates a Polyline object.
  211.  *
  212.  * Parameters:
  213.  *  pUnkOuter       LPUNKNOWN to the controlling IUnknown if we
  214.  *                  are being used in an aggregation.
  215.  *  riid            REFIID identifying the interface the caller
  216.  *                  desires to have for the new object.
  217.  *  ppvObj          PPVOID in which to store the desired
  218.  *                  interface pointer for the new object.
  219.  *
  220.  * Return Value:
  221.  *  HRESULT         NOERROR if successful, otherwise E_NOINTERFACE
  222.  *                  if we cannot support the requested interface.
  223.  */
  224. STDMETHODIMP CPolylineClassFactory::CreateInstance
  225.     (LPUNKNOWN pUnkOuter, REFIID riid, PPVOID ppvObj)
  226.     {
  227.     PCPolyline          pObj;
  228.     HRESULT             hr;
  229.     *ppvObj=NULL;
  230.     hr=ResultFromScode(E_OUTOFMEMORY);
  231.     //Verify that a controlling unknown asks for IUnknown
  232.     if (NULL!=pUnkOuter && IID_IUnknown!=riid)
  233.         return ResultFromScode(E_NOINTERFACE);
  234.     //Create the object.  This also creates a window.
  235.     pObj=new CPolyline(pUnkOuter, ObjectDestroyed, g_hInst);
  236.     if (NULL==pObj)
  237.         return hr;
  238.     if (pObj->Init())
  239.         hr=pObj->QueryInterface(riid, ppvObj);
  240.     //Kill the object if initial creation or Init failed.
  241.     if (FAILED(hr))
  242.         delete pObj;
  243.     else
  244.         g_cObj++;
  245.     return hr;
  246.     }
  247. /*
  248.  * CPolylineClassFactory::LockServer
  249.  *
  250.  * Purpose:
  251.  *  Increments or decrements the lock count of the DLL.  If the lock
  252.  *  count goes to zero and there are no objects, the DLL is allowed
  253.  *  to unload.  See DllCanUnloadNow.
  254.  *
  255.  * Parameters:
  256.  *  fLock           BOOL specifying whether to increment or
  257.  *                  decrement the lock count.
  258.  *
  259.  * Return Value:
  260.  *  HRESULT         NOERROR always.
  261.  */
  262. STDMETHODIMP CPolylineClassFactory::LockServer(BOOL fLock)
  263.     {
  264.     if (fLock)
  265.         g_cLock++;
  266.     else
  267.         g_cLock--;
  268.     return NOERROR;
  269.     }