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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * DLLPOLY.CPP
  3.  * Polyline Component Chapter 8
  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.     //CHAPTER8MOD
  104.     if (CLSID_Polyline8!=rclsid)
  105.         return ResultFromScode(E_FAIL);
  106.     //End CHAPTER8MOD
  107.     //Check that we can provide the interface
  108.     if (IID_IUnknown!=riid && IID_IClassFactory!=riid)
  109.         return ResultFromScode(E_NOINTERFACE);
  110.     //Return our IClassFactory for Polyline objects
  111.     *ppv=new CPolylineClassFactory;
  112.     if (NULL==*ppv)
  113.         return ResultFromScode(E_OUTOFMEMORY);
  114.     //AddRef the object through any interface we return
  115.     ((LPUNKNOWN)*ppv)->AddRef();
  116.     g_cObj++;
  117.     return NOERROR;
  118.     }
  119. /*
  120.  * DllCanUnloadNow
  121.  *
  122.  * Purpose:
  123.  *  Answers if the DLL can be freed, that is, if there are no
  124.  *  references to anything this DLL provides.
  125.  *
  126.  * Parameters:
  127.  *  None
  128.  *
  129.  * Return Value:
  130.  *  BOOL            TRUE if nothing is using us, FALSE otherwise.
  131.  */
  132. STDAPI DllCanUnloadNow(void)
  133.     {
  134.     SCODE   sc;
  135.     //Our answer is whether there are any object or locks
  136.     sc=(0L==g_cObj && 0L==g_cLock) ? S_OK : S_FALSE;
  137.     return ResultFromScode(sc);
  138.     }
  139. /*
  140.  * ObjectDestroyed
  141.  *
  142.  * Purpose:
  143.  *  Function for the Polyline object to call when it gets destroyed.
  144.  *  Since we're in a DLL we only track the number of objects here
  145.  *  letting DllCanUnloadNow take care of the rest.
  146.  */
  147. void ObjectDestroyed(void)
  148.     {
  149.     g_cObj--;
  150.     return;
  151.     }
  152. /*
  153.  * CPolylineClassFactory::CPolylineClassFactory
  154.  * CPolylineClassFactory::~CPolylineClassFactory
  155.  */
  156. CPolylineClassFactory::CPolylineClassFactory(void)
  157.     {
  158.     m_cRef=0L;
  159.     return;
  160.     }
  161. CPolylineClassFactory::~CPolylineClassFactory(void)
  162.     {
  163.     return;
  164.     }
  165. /*
  166.  * CPolylineClassFactory::QueryInterface
  167.  * CPolylineClassFactory::AddRef
  168.  * CPolylineClassFactory::Release
  169.  */
  170. STDMETHODIMP CPolylineClassFactory::QueryInterface(REFIID riid
  171.     , PPVOID ppv)
  172.     {
  173.     *ppv=NULL;
  174.     if (IID_IUnknown==riid || IID_IClassFactory==riid)
  175.         *ppv=this;
  176.     if (NULL!=*ppv)
  177.         {
  178.         ((LPUNKNOWN)*ppv)->AddRef();
  179.         return NOERROR;
  180.         }
  181.     return ResultFromScode(E_NOINTERFACE);
  182.     }
  183. STDMETHODIMP_(ULONG) CPolylineClassFactory::AddRef(void)
  184.     {
  185.     return ++m_cRef;
  186.     }
  187. STDMETHODIMP_(ULONG) CPolylineClassFactory::Release(void)
  188.     {
  189.     if (0L!=--m_cRef)
  190.         return m_cRef;
  191.     delete this;
  192.     ObjectDestroyed();
  193.     return 0L;
  194.     }
  195. /*
  196.  * CPolylineClassFactory::CreateInstance
  197.  *
  198.  * Purpose:
  199.  *  Instantiates a Polyline object.
  200.  *
  201.  * Parameters:
  202.  *  pUnkOuter       LPUNKNOWN to the controlling IUnknown if we
  203.  *                  are being used in an aggregation.
  204.  *  riid            REFIID identifying the interface the caller
  205.  *                  desires to have for the new object.
  206.  *  ppvObj          PPVOID in which to store the desired
  207.  *                  interface pointer for the new object.
  208.  *
  209.  * Return Value:
  210.  *  HRESULT         NOERROR if successful, otherwise E_NOINTERFACE
  211.  *                  if we cannot support the requested interface.
  212.  */
  213. STDMETHODIMP CPolylineClassFactory::CreateInstance
  214.     (LPUNKNOWN pUnkOuter, REFIID riid, PPVOID ppvObj)
  215.     {
  216.     PCPolyline          pObj;
  217.     HRESULT             hr;
  218.     *ppvObj=NULL;
  219.     hr=ResultFromScode(E_OUTOFMEMORY);
  220.     //Verify that a controlling unknown asks for IUnknown
  221.     if (NULL!=pUnkOuter && IID_IUnknown!=riid)
  222.         return ResultFromScode(E_NOINTERFACE);
  223.     //Create the object.  This also creates a window.
  224.     pObj=new CPolyline(pUnkOuter, ObjectDestroyed, g_hInst);
  225.     if (NULL==pObj)
  226.         return hr;
  227.     if (pObj->Init())
  228.         hr=pObj->QueryInterface(riid, ppvObj);
  229.     //Kill the object if initial creation or Init failed.
  230.     if (FAILED(hr))
  231.         delete pObj;
  232.     else
  233.         g_cObj++;
  234.     return hr;
  235.     }
  236. /*
  237.  * CPolylineClassFactory::LockServer
  238.  *
  239.  * Purpose:
  240.  *  Increments or decrements the lock count of the DLL.  If the lock
  241.  *  count goes to zero and there are no objects, the DLL is allowed
  242.  *  to unload.  See DllCanUnloadNow.
  243.  *
  244.  * Parameters:
  245.  *  fLock           BOOL specifying whether to increment or
  246.  *                  decrement the lock count.
  247.  *
  248.  * Return Value:
  249.  *  HRESULT         NOERROR always.
  250.  */
  251. STDMETHODIMP CPolylineClassFactory::LockServer(BOOL fLock)
  252.     {
  253.     if (fLock)
  254.         g_cLock++;
  255.     else
  256.         g_cLock--;
  257.     return NOERROR;
  258.     }