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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      CONSERVE.CPP
  3.   Summary:   Implementation file for a DLL COM Component server providing
  4.              a Ball-related COM Component: DllSndBall. Access to Class
  5.              Factories is provided in this module.  This server also
  6.              supports self registration and unregistration. CONSERVE is a
  7.              thread-safe server for the COBall COM objects.
  8.              For a comprehensive tutorial code tour of CONSERVE's contents
  9.              and offerings see the tutorial CONSERVE.HTM file. For more
  10.              specific technical details on the internal workings see the
  11.              comments dispersed throughout the CONSERVE source code. For
  12.              more details see CONCLIEN.HTM in the main tutorial directory.
  13.   Classes:   none.
  14.   Functions: DllMain, DllGetClassObject, DllCanUnloadNow, DllRegisterServer,
  15.              DllUnregisterServer.
  16.   Origin:    4-6-96: atrent - Editor-inheritance from DLLSERVE.CPP in
  17.                the DLLSERVE Tutorial Code Sample.
  18. ----------------------------------------------------------------------------
  19.   This file is part of the Microsoft COM Tutorial Code Samples.
  20.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  21.   This source code is intended only as a supplement to Microsoft
  22.   Development Tools and/or on-line documentation.  See these other
  23.   materials for detailed information regarding Microsoft code samples.
  24.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  25.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  26.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  27.   PARTICULAR PURPOSE.
  28. ==========================================================================+*/
  29. /*---------------------------------------------------------------------------
  30.   We include WINDOWS.H for all Win32 applications.
  31.   We include OLE2.H because we will be calling the COM/OLE Libraries.
  32.   We include INITGUID.H only once (here) in the entire DLL because we
  33.     will be defining GUIDs and want them as constants in the data segment.
  34.   We include APPUTIL.H because we will be building this DLL using
  35.     the convenient Virtual Window and Dialog classes and other
  36.     utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
  37.   We include IBALL.H and BALLGUID.H for the common ball-related
  38.     Interface class, GUID, and CLSID specifications.
  39.   We include CONSERVE.H because it has the _DLLEXPORT_ controlled import
  40.     and export specifications.
  41.   We include SERVER.H because it has the necessary internal class and
  42.     resource definitions for this DLL.
  43.   We include FACTORY.H because it has the necessary internal class factory
  44.     declarations for this DLL component server.
  45. ---------------------------------------------------------------------------*/
  46. #include <windows.h>
  47. #include <ole2.h>
  48. #include <initguid.h>
  49. #include <apputil.h>
  50. #include <iBall.h>
  51. #include <ballguid.h>
  52. #define _DLLEXPORT_
  53. #include "conserve.h"
  54. #include "server.h"
  55. #include "factory.h"
  56. // Global variable definitions. Some Initialized in DllMain() below.
  57. // We encapsulate the control of this COM server (eg, lock and object
  58. // counting) in a server control C++ object.  Here is it's pointer.
  59. CServer* g_pServer = NULL;
  60. /*F+F++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  61.   Function: UnicodeOk
  62.   Summary:  Checks if the platform will handle unicode versions of
  63.             Win32 string API calls.
  64.   Args:     void
  65.   Returns:  BOOL
  66.               TRUE if unicode support; FALSE if not.
  67. ------------------------------------------------------------------------F-F*/
  68. BOOL UnicodeOk(void)
  69. {
  70.   BOOL bOk = TRUE;
  71.   TCHAR szUserName[MAX_STRING_LENGTH];
  72.   DWORD dwSize = MAX_STRING_LENGTH;
  73.   if (!GetUserName(szUserName, &dwSize))
  74.     bOk = ERROR_CALL_NOT_IMPLEMENTED == GetLastError() ? FALSE : TRUE;
  75.   return bOk;
  76. }
  77. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  78.   Function: DllMain
  79.   Summary:  Just as WinMain is for an EXE application, this DllMain
  80.             function is the main entry point for this DLL.  It is called
  81.             when the DLL is loaded by a process, and when new threads are
  82.             created by a process that has already loaded this DLL.
  83.             DllMain is also called when threads of a process that has
  84.             loaded the DLL exit cleanly and when the process itself
  85.             unloads the DLL.
  86.             If you want to use C runtime libraries, keep this function
  87.             named "DllMain" and you won't have to do anything special to
  88.             initialize the runtime libraries.
  89.             When fdwReason == DLL_PROCESS_ATTACH, the return value is used
  90.             to determine if the DLL should remain loaded, or should be
  91.             immediately unloaded depending upon whether the DLL could be
  92.             initialized properly.  For all other values of fdwReason, the
  93.             return value is ignored.
  94.   Args:     HINSTANCE hDLLInst,
  95.               Instance handle of the DLL.
  96.             DWORD fdwReason,
  97.               Process attach/detach or thread attach/detach.
  98.               Reason for calling.
  99.             LPVOID lpvReserved)
  100.               Reserved and not used.
  101.   Returns:  BOOL,
  102.               Return value is used only when fdwReason == DLL_PROCESS_ATTACH.
  103.               TRUE  -  Used to signify that the DLL should remain loaded.
  104.               FALSE -  Used to signify that the DLL should be
  105.                 immediately unloaded.
  106. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  107. BOOL WINAPI DllMain(
  108.               HINSTANCE hDllInst,
  109.               DWORD fdwReason,
  110.               LPVOID lpvReserved)
  111. {
  112.   BOOL bResult = TRUE;
  113.   // Dispatch this main call based on the reason it was called.
  114.   switch (fdwReason)
  115.   {
  116.     case DLL_PROCESS_ATTACH:
  117.       // The DLL is being loaded for the first time by a given process.
  118.       // Perform per-process initialization here.  If the initialization
  119.       // is successful, return TRUE; if unsuccessful, return FALSE.
  120.       bResult = FALSE;
  121.       if (UnicodeOk())
  122.       {
  123.         // Instantiate the CServer utility class.
  124.         g_pServer = new CServer;
  125.         if (NULL != g_pServer)
  126.         {
  127.           // Remember the DLL Instance handle.
  128.           g_pServer->m_hDllInst = hDllInst;
  129.           bResult = TRUE;
  130.         }
  131.       }
  132.       break;
  133.     case DLL_PROCESS_DETACH:
  134.       // The DLL is being unloaded by a given process.  Do any
  135.       // per-process clean up here, such as undoing what was done in
  136.       // DLL_PROCESS_ATTACH.  The return value is ignored.
  137.       DELETE_POINTER(g_pServer);
  138.       break;
  139.     case DLL_THREAD_ATTACH:
  140.       // A thread is being created in a process that has already loaded
  141.       // this DLL.  Perform any per-thread initialization here.  The
  142.       // return value is ignored.
  143.       break;
  144.     case DLL_THREAD_DETACH:
  145.       // A thread is exiting cleanly in a process that has already
  146.       // loaded this DLL.  Perform any per-thread clean up here.  The
  147.       // return value is ignored.
  148.       break;
  149.     default:
  150.       break;
  151.   }
  152.   return (bResult);
  153. }
  154. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  155.   Function: DllGetClassObject
  156.   Summary:  The standard exported function that the COM service library
  157.             uses to obtain an object class of the class factory for a
  158.             specified component provided by this server DLL.
  159.   Args:     REFCLSID rclsid,
  160.               [in] The CLSID of the requested Component.
  161.             REFIID riid,
  162.               [in] GUID of the requested interface on the Class Factory.
  163.             PPVOID ppv)
  164.               [out] Address of the caller's pointer variable that will
  165.               receive the requested interface pointer.
  166.   Returns:  HRESULT
  167.               E_FAIL if requested component isn't supported.
  168.               E_OUTOFMEMORY if out of memory.
  169.               Error code out of the QueryInterface.
  170. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  171. STDAPI DllGetClassObject(
  172.          REFCLSID rclsid,
  173.          REFIID riid,
  174.          PPVOID ppv)
  175. {
  176.   HRESULT hr = CLASS_E_CLASSNOTAVAILABLE;
  177.   IUnknown* pCob = NULL;
  178.   if (CLSID_DllSndBall == rclsid)
  179.   {
  180.     hr = E_OUTOFMEMORY;
  181.     pCob = new CFBall(NULL, g_pServer);
  182.   }
  183.   if (NULL != pCob)
  184.   {
  185.     g_pServer->ObjectsUp();
  186.     hr = pCob->QueryInterface(riid, ppv);
  187.     if (FAILED(hr))
  188.     {
  189.       g_pServer->ObjectsDown();
  190.       DELETE_POINTER(pCob);
  191.     }
  192.   }
  193.   return hr;
  194. }
  195. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  196.   Function: DllCanUnloadNow
  197.   Summary:  The standard exported function that the COM service library
  198.             uses to determine if this server DLL can be unloaded.
  199.   Args:     void.
  200.   Returns:  HRESULT
  201.               S_OK if this DLL server can be unloaded.
  202.               S_FALSE if this DLL can not be unloaded.
  203. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  204. STDAPI DllCanUnloadNow(void)
  205. {
  206.   HRESULT hr;
  207.   // We return S_OK of there are no longer any living objects AND
  208.   // there are no outstanding client locks on this server.
  209.   hr = g_pServer->CanUnloadNow();
  210.   return hr;
  211. }
  212. /*F+F++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  213.   Function: SetRegKeyValue
  214.   Summary:  Internal utility function to set a Key, Subkey, and value
  215.             in the system Registry under HKEY_CLASSES_ROOT.
  216.   Args:     LPTSTR pszKey,
  217.             LPTSTR pszSubkey,
  218.             LPTSTR pszValue)
  219.   Returns:  BOOL
  220.               TRUE if success; FALSE if not.
  221. ------------------------------------------------------------------------F-F*/
  222. BOOL SetRegKeyValue(
  223.        LPTSTR pszKey,
  224.        LPTSTR pszSubkey,
  225.        LPTSTR pszValue)
  226. {
  227.   BOOL bOk = FALSE;
  228.   LONG ec;
  229.   HKEY hKey;
  230.   TCHAR szKey[MAX_STRING_LENGTH];
  231.   lstrcpy(szKey, pszKey);
  232.   if (NULL != pszSubkey)
  233.   {
  234.     lstrcat(szKey, TEXT("\"));
  235.     lstrcat(szKey, pszSubkey);
  236.   }
  237.   ec = RegCreateKeyEx(
  238.          HKEY_CLASSES_ROOT,
  239.          szKey,
  240.          0,
  241.          NULL,
  242.          REG_OPTION_NON_VOLATILE,
  243.          KEY_ALL_ACCESS,
  244.          NULL,
  245.          &hKey,
  246.          NULL);
  247.   if (ERROR_SUCCESS == ec)
  248.   {
  249.     if (NULL != pszValue)
  250.     {
  251.       ec = RegSetValueEx(
  252.              hKey,
  253.              NULL,
  254.              0,
  255.              REG_SZ,
  256.              (BYTE *)pszValue,
  257.              (lstrlen(pszValue)+1)*sizeof(TCHAR));
  258.     }
  259.     if (ERROR_SUCCESS == ec)
  260.       bOk = TRUE;
  261.     RegCloseKey(hKey);
  262.   }
  263.   return bOk;
  264. }
  265. /*F+F++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  266.   Function: AddRegNamedValue
  267.   Summary:  Internal utility function to add a named data value to an
  268.             existing Key (with optional Subkey) in the system Registry
  269.             under HKEY_CLASSES_ROOT.
  270.   Args:     LPTSTR pszKey,
  271.             LPTSTR pszSubkey,
  272.             LPTSTR pszValueName,
  273.             LPTSTR pszValue)
  274.   Returns:  BOOL
  275.               TRUE if success; FALSE if not.
  276. ------------------------------------------------------------------------F-F*/
  277. BOOL AddRegNamedValue(
  278.        LPTSTR pszKey,
  279.        LPTSTR pszSubkey,
  280.        LPTSTR pszValueName,
  281.        LPTSTR pszValue)
  282. {
  283.   BOOL bOk = FALSE;
  284.   LONG ec;
  285.   HKEY hKey;
  286.   TCHAR szKey[MAX_STRING_LENGTH];
  287.   lstrcpy(szKey, pszKey);
  288.   if (NULL != pszSubkey)
  289.   {
  290.     lstrcat(szKey, TEXT("\"));
  291.     lstrcat(szKey, pszSubkey);
  292.   }
  293.   ec = RegOpenKeyEx(
  294.          HKEY_CLASSES_ROOT,
  295.          szKey,
  296.          0,
  297.          KEY_ALL_ACCESS,
  298.          &hKey);
  299.   if (NULL != pszValue && ERROR_SUCCESS == ec)
  300.   {
  301.     ec = RegSetValueEx(
  302.            hKey,
  303.            pszValueName,
  304.            0,
  305.            REG_SZ,
  306.            (BYTE *)pszValue,
  307.            (lstrlen(pszValue)+1)*sizeof(TCHAR));
  308.     if (ERROR_SUCCESS == ec)
  309.       bOk = TRUE;
  310.     RegCloseKey(hKey);
  311.   }
  312.   return bOk;
  313. }
  314. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  315.   Function: DllRegisterServer
  316.   Summary:  The standard exported function that can be called to command
  317.             this DLL server to register itself in the system registry.
  318.   Args:     void.
  319.   Returns:  HRESULT
  320.               NOERROR
  321. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  322. STDAPI DllRegisterServer(void)
  323. {
  324.   HRESULT  hr = NOERROR;
  325.   TCHAR    szID[GUID_SIZE+1];
  326.   TCHAR    szCLSID[GUID_SIZE+32];
  327.   TCHAR    szModulePath[MAX_PATH];
  328.   // Obtain the path to this module's executable file for later use.
  329.   GetModuleFileName(
  330.     g_pServer->m_hDllInst,
  331.     szModulePath,
  332.     sizeof(szModulePath)/sizeof(TCHAR));
  333.   /*-------------------------------------------------------------------------
  334.     Create registry entries for the DllSndBall Component.
  335.   -------------------------------------------------------------------------*/
  336.   // Create some base key strings.
  337.   StringFromGUID2(CLSID_DllSndBall, szID, GUID_SIZE);
  338.   lstrcpy(szCLSID, TEXT("CLSID\"));
  339.   lstrcat(szCLSID, szID);
  340.   // Create ProgID keys.
  341.   SetRegKeyValue(
  342.     TEXT("CTS.DllSndBall.1"),
  343.     NULL,
  344.     TEXT("DllSndBall Component - CONSERVE Code Sample"));
  345.   SetRegKeyValue(
  346.     TEXT("CTS.DllSndBall.1"),
  347.     TEXT("CLSID"),
  348.     szID);
  349.   // Create VersionIndependentProgID keys.
  350.   SetRegKeyValue(
  351.     TEXT("CTS.DllSndBall"),
  352.     NULL,
  353.     TEXT("DllSndBall Component - CONSERVE Code Sample"));
  354.   SetRegKeyValue(
  355.     TEXT("CTS.DllSndBall"),
  356.     TEXT("CurVer"),
  357.     TEXT("CTS.DllSndBall.1"));
  358.   SetRegKeyValue(
  359.     TEXT("CTS.DllSndBall"),
  360.     TEXT("CLSID"),
  361.     szID);
  362.   // Create entries under CLSID.
  363.   SetRegKeyValue(
  364.     szCLSID,
  365.     NULL,
  366.     TEXT("DllSndBall Component - CONSERVE Code Sample"));
  367.   SetRegKeyValue(
  368.     szCLSID,
  369.     TEXT("ProgID"),
  370.     TEXT("CTS.DllSndBall.1"));
  371.   SetRegKeyValue(
  372.     szCLSID,
  373.     TEXT("VersionIndependentProgID"),
  374.     TEXT("CTS.DllSndBall"));
  375.   SetRegKeyValue(
  376.     szCLSID,
  377.     TEXT("NotInsertable"),
  378.     NULL);
  379.   SetRegKeyValue(
  380.     szCLSID,
  381.     TEXT("InprocServer32"),
  382.     szModulePath);
  383.   AddRegNamedValue(
  384.     szCLSID,
  385.     TEXT("InprocServer32"),
  386.     TEXT("ThreadingModel"),
  387.     TEXT("Apartment"));
  388.   return hr;
  389. }
  390. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  391.   Function: DllUnregisterServer
  392.   Summary:  The standard exported function that can be called to command
  393.             this DLL server to unregister itself from the system Registry.
  394.   Args:     void.
  395.   Returns:  HRESULT
  396.               NOERROR
  397. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  398. STDAPI DllUnregisterServer(void)
  399. {
  400.   HRESULT  hr = NOERROR;
  401.   TCHAR    szID[GUID_SIZE+1];
  402.   TCHAR    szCLSID[GUID_SIZE+32];
  403.   TCHAR    szTemp[MAX_PATH+GUID_SIZE];
  404.   /*-------------------------------------------------------------------------
  405.     Delete registry entries for the SndBall Component.
  406.   -------------------------------------------------------------------------*/
  407.   //Create some base key strings.
  408.   StringFromGUID2(CLSID_DllSndBall, szID, GUID_SIZE);
  409.   lstrcpy(szCLSID, TEXT("CLSID\"));
  410.   lstrcat(szCLSID, szID);
  411.   RegDeleteKey(HKEY_CLASSES_ROOT, TEXT("CTS.DllSndBall\CurVer"));
  412.   RegDeleteKey(HKEY_CLASSES_ROOT, TEXT("CTS.DllSndBall\CLSID"));
  413.   RegDeleteKey(HKEY_CLASSES_ROOT, TEXT("CTS.DllSndBall"));
  414.   RegDeleteKey(HKEY_CLASSES_ROOT, TEXT("CTS.DllSndBall.1\CLSID"));
  415.   RegDeleteKey(HKEY_CLASSES_ROOT, TEXT("CTS.DllSndBall.1"));
  416.   wsprintf(szTemp, TEXT("%s\%s"), szCLSID, TEXT("ProgID"));
  417.   RegDeleteKey(HKEY_CLASSES_ROOT, szTemp);
  418.   wsprintf(szTemp, TEXT("%s\%s"), szCLSID, TEXT("VersionIndependentProgID"));
  419.   RegDeleteKey(HKEY_CLASSES_ROOT, szTemp);
  420.   wsprintf(szTemp, TEXT("%s\%s"), szCLSID, TEXT("NotInsertable"));
  421.   RegDeleteKey(HKEY_CLASSES_ROOT, szTemp);
  422.   wsprintf(szTemp, TEXT("%s\%s"), szCLSID, TEXT("InprocServer32"));
  423.   RegDeleteKey(HKEY_CLASSES_ROOT, szTemp);
  424.   RegDeleteKey(HKEY_CLASSES_ROOT, szCLSID);
  425.   return hr;
  426. }