config.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:23k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * config.h
  3.  *
  4.  * Application/System configuration access class.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: config.h,v $
  30.  * Revision 1.21  2000/05/25 11:07:26  robertj
  31.  * Added PConfig::HasKey() function to determine if value actually set.
  32.  *
  33.  * Revision 1.20  1999/03/09 02:59:49  robertj
  34.  * Changed comments to doc++ compatible documentation.
  35.  *
  36.  * Revision 1.19  1999/02/16 08:07:11  robertj
  37.  * MSVC 6.0 compatibility changes.
  38.  *
  39.  * Revision 1.18  1998/10/30 12:23:55  robertj
  40.  * Added ability to get all key values as a dictionary.
  41.  *
  42.  * Revision 1.17  1998/09/23 06:20:21  robertj
  43.  * Added open source copyright license.
  44.  *
  45.  * Revision 1.16  1998/01/26 00:29:26  robertj
  46.  * Added functions to get/set 64bit integers from a PConfig.
  47.  *
  48.  * Revision 1.15  1997/08/07 11:58:01  robertj
  49.  * Added ability to get registry data from other applications and anywhere in system registry.
  50.  *
  51.  * Revision 1.14  1996/02/25 02:50:33  robertj
  52.  * Added consts to all GetXxxx functions.
  53.  *
  54.  * Revision 1.13  1996/01/28 14:10:10  robertj
  55.  * Added time functions to PConfig.
  56.  *
  57.  * Revision 1.12  1995/12/10 11:54:30  robertj
  58.  * Added WIN32 registry support for PConfig objects.
  59.  *
  60.  * Revision 1.11  1995/03/14 12:41:12  robertj
  61.  * Updated documentation to use HTML codes.
  62.  *
  63.  * Revision 1.10  1995/01/27  11:06:20  robertj
  64.  * Changed single string default constructor to be section name not file name.
  65.  *
  66.  * Revision 1.9  1994/12/12  10:11:59  robertj
  67.  * Documentation.
  68.  *
  69.  * Revision 1.8  1994/08/23  11:32:52  robertj
  70.  * Oops
  71.  *
  72.  * Revision 1.7  1994/08/22  00:46:48  robertj
  73.  * Added pragma fro GNU C++ compiler.
  74.  *
  75.  * Revision 1.6  1994/08/21  23:43:02  robertj
  76.  * Removed default argument when of PString type (MSC crashes).
  77.  *
  78.  * Revision 1.5  1994/07/27  05:58:07  robertj
  79.  * Synchronisation.
  80.  *
  81.  * Revision 1.4  1994/06/25  11:55:15  robertj
  82.  * Unix version synchronisation.
  83.  *
  84.  * Revision 1.3  1994/01/03  04:42:23  robertj
  85.  * Mass changes to common container classes and interactors etc etc etc.
  86.  *
  87.  * Revision 1.2  1993/07/14  12:49:16  robertj
  88.  * Fixed RCS keywords.
  89.  *
  90.  */
  91. #define _PCONFIG
  92. #ifdef __GNUC__
  93. #pragma interface
  94. #endif
  95. /** A class representing a configuration for the application.
  96. There are four sources of configuration information. The system environment,
  97. a system wide configuration file, an application specific configuration file
  98. or an explicit configuration file.
  99. Configuration information follows a three level hierarchy: {it file},
  100. {it section} and {it variable}. Thus, a configuration file consists of
  101. a number of sections each with a number of variables selected by a
  102. {it key}. Each variable has an associated value.
  103. Note that the evironment source for configuration information does not have
  104. sections. The section is ignored and the same set of keys are available.
  105. The configuration file is a standard text file for the platform with its
  106. internals appearing in the form:
  107. begin{verbatim}
  108.      [Section String]
  109.      Key Name=Value String
  110. end{verbatim}
  111. */
  112. class PConfig : public PObject
  113. {
  114.   PCLASSINFO(PConfig, PObject);
  115.   public:
  116.   /**@name Construction */
  117.   //@{
  118.     /** Description of the standard source for configuration information.
  119.      */
  120.     enum Source {
  121.       /** The platform specific environment. For Unix, MSDOS, NT etc this is
  122.          {bf the} environment current when the program was run. For the
  123.          MacOS this is a subset of the Gestalt and SysEnviron information.
  124.        */
  125.       Environment,
  126.       /** The platform specific system wide configuration file. For MS-Windows
  127.          this is the WIN.INI file. For Unix, plain MS-DOS, etc this is a
  128.          configuration file similar to that for applications except there is
  129.          only a single file that applies to all PWLib applications.
  130.        */
  131.       System,
  132.       /** The application specific configuration file. This is the most common
  133.          source of configuration for an application. The location of this file
  134.          is platform dependent, but its contents are always the same. For
  135.          MS-Windows the file should be either in the same directory as the
  136.          executable or in the Windows directory. For the MacOS this would be
  137.          either in the System Folder or the Preferences folder within it. For
  138.          Unix this would be the users home directory.
  139.        */
  140.       Application,
  141.       NumSources
  142.     };
  143.     /** Create a new configuration object. Once a source is selected for the
  144.        configuration it cannot be changed. Only at the next level of the
  145.        hierarchy (sections) are selection able to be made dynamically with an
  146.        active PConfig object.
  147.      */
  148.     PConfig(
  149.       Source src = Application  /// Standard source for the configuration.
  150.     );
  151.     /** Create a new configuration object. */
  152.     PConfig(
  153.       Source src,               /// Standard source for the configuration.
  154.       const PString & appname   /// Name of application
  155.     );
  156.     /** Create a new configuration object. */
  157.     PConfig(
  158.       Source src,               /// Standard source for the configuration.
  159.       const PString & appname,  /// Name of application
  160.       const PString & manuf     /// Manufacturer
  161.     );
  162.     /** Create a new configuration object. */
  163.     PConfig(
  164.       const PString & section,  /// Default section to search for variables.
  165.       Source src = Application  /// Standard source for the configuration.
  166.     );
  167.     /** Create a new configuration object. */
  168.     PConfig(
  169.       const PString & section,  /// Default section to search for variables.
  170.       Source src,               /// Standard source for the configuration.
  171.       const PString & appname   /// Name of application
  172.     );
  173.     /** Create a new configuration object. */
  174.     PConfig(
  175.       const PString & section,  /// Default section to search for variables.
  176.       Source src,               /// Standard source for the configuration.
  177.       const PString & appname,  /// Name of application
  178.       const PString & manuf     /// Manufacturer
  179.     );
  180.     /** Create a new configuration object. */
  181.     PConfig(
  182.       const PFilePath & filename, /// Explicit name of the configuration file.
  183.       const PString & section     /// Default section to search for variables.
  184.     );
  185.   //@}
  186.   /**@name Section functions */
  187.   //@{
  188.     /** Set the default section for variable operations. All functions that deal
  189.        with keys and get or set configuration values will use this section
  190.        unless an explicit section name is specified.
  191.        Note when the #Environment# source is being used the default
  192.        section may be set but it is ignored.
  193.      */
  194.     void SetDefaultSection(
  195.       const PString & section  /// New default section name.
  196.     );
  197.     /** Get the default section for variable operations. All functions that deal
  198.        with keys and get or set configuration values will use this section
  199.        unless an explicit section name is specified.
  200.        Note when the #Environment# source is being used the default
  201.        section may be retrieved but it is ignored.
  202.        @return default section name string.
  203.      */
  204.     PString GetDefaultSection() const;
  205.     /** Get all of the section names currently specified in the file. A section
  206.        is the part specified by the [ and ] characters.
  207.        Note when the #Environment# source is being used this will
  208.        return an empty list as there are no section present.
  209.        @return list of all section names.
  210.      */
  211.     PStringList GetSections() const;
  212.     /** Get a list of all the keys in the section. If the section name is not
  213.        specified then use the default section.
  214.        @return list of all key names.
  215.      */
  216.     PStringList GetKeys() const;
  217.     /** Get a list of all the keys in the section. */
  218.     PStringList GetKeys(
  219.       const PString & section   /// Section to use instead of the default.
  220.     ) const;
  221.     /** Get all of the keys in the section and their values. If the section
  222.        name is not specified then use the default section.
  223.        @return Dictionary of all key names and their values.
  224.      */
  225.     PStringToString GetAllKeyValues() const;
  226.     /** Get all of the keys in the section and their values. */
  227.     PStringToString GetAllKeyValues(
  228.       const PString & section   /// Section to use instead of the default.
  229.     ) const;
  230.     /** Delete all variables in the specified section. If the section name is
  231.        not specified then the default section is deleted.
  232.        Note that the section header is also removed so the section will not
  233.        appear in the GetSections() function.
  234.      */
  235.     void DeleteSection();
  236.     /** Delete all variables in the specified section. */
  237.     void DeleteSection(
  238.       const PString & section   /// Name of section to delete.
  239.     );
  240.     /** Delete the particular variable in the specified section. If the section
  241.        name is not specified then the default section is used.
  242.        Note that the variable and key are removed from the file. The key will
  243.        no longer appear in the GetKeys() function. If you wish to delete the
  244.        value without deleting the key, use SetString() to set it to the empty
  245.        string.
  246.      */
  247.     void DeleteKey(
  248.       const PString & key       /// Key of the variable to delete.
  249.     );
  250.     /** Delete the particular variable in the specified section. */
  251.     void DeleteKey(
  252.       const PString & section,  /// Section to use instead of the default.
  253.       const PString & key       /// Key of the variable to delete.
  254.     );
  255.     /**Determine if the particular variable in the section is actually present.
  256.        This function allows a caller to distinguish between getting a saved
  257.        value or using the default value. For example if you called
  258.        GetString("MyKey", "DefVal") there is no way to distinguish between
  259.        the default "DefVal" being used, or the user had explicitly saved the
  260.        value "DefVal" into the PConfig.
  261.      */
  262.     BOOL HasKey(
  263.       const PString & key       /// Key of the variable.
  264.     ) const;
  265.     /**Determine if the particular variable in the section is actually present. */
  266.     BOOL HasKey(
  267.       const PString & section,  /// Section to use instead of the default.
  268.       const PString & key       /// Key of the variable.
  269.     ) const;
  270.   //@}
  271.   /**@name Get/Set variables */
  272.   //@{
  273.     /** Get a string variable determined by the key in the section. If the
  274.        section name is not specified then the default section is used.
  275.        
  276.        If the key is not present the value returned is the that provided by
  277.        the #dlft# parameter. Note that this is different from the
  278.        key being present but having no value, in which case an empty string is
  279.        returned.
  280.        @return string value of the variable.
  281.      */
  282.     PString GetString(
  283.       const PString & key       /// The key name for the variable.
  284.     ) const;
  285.     /** Get a string variable determined by the key in the section. */
  286.     PString GetString(
  287.       const PString & key,      /// The key name for the variable.
  288.       const PString & dflt      /// Default value for the variable.
  289.     ) const;
  290.     /** Get a string variable determined by the key in the section. */
  291.     PString GetString(
  292.       const PString & section,  /// Section to use instead of the default.
  293.       const PString & key,      /// The key name for the variable.
  294.       const PString & dflt      /// Default value for the variable.
  295.     ) const;
  296.     /** Set a string variable determined by the key in the section. If the
  297.        section name is not specified then the default section is used.
  298.      */
  299.     void SetString(
  300.       const PString & key,      /// The key name for the variable.
  301.       const PString & value     /// New value to set for the variable.
  302.     );
  303.     /** Set a string variable determined by the key in the section. */
  304.     void SetString(
  305.       const PString & section,  /// Section to use instead of the default.
  306.       const PString & key,      /// The key name for the variable.
  307.       const PString & value     /// New value to set for the variable.
  308.     );
  309.     /** Get a boolean variable determined by the key in the section. If the
  310.        section name is not specified then the default section is used.
  311.        The boolean value can be specified in a number of ways. The TRUE value
  312.        is returned if the string value for the variable begins with either the
  313.        'T' character or the 'Y' character. Alternatively if the string can
  314.        be converted to a numeric value, a non-zero value will also return TRUE.
  315.        Thus the values can be Key=True, Key=Yes or Key=1 for TRUE and
  316.        Key=False, Key=No, or Key=0 for FALSE.
  317.        If the key is not present the value returned is the that provided by
  318.        the #dlft# parameter. Note that this is different from the
  319.        key being present but having no value, in which case FALSE is returned.
  320.        @return boolean value of the variable.
  321.      */
  322.     BOOL GetBoolean(
  323.       const PString & key,      /// The key name for the variable.
  324.       BOOL dflt = FALSE         /// Default value for the variable.
  325.     ) const;
  326.     /** Get a boolean variable determined by the key in the section. */
  327.     BOOL GetBoolean(
  328.       const PString & section,  /// Section to use instead of the default.
  329.       const PString & key,      /// The key name for the variable.
  330.       BOOL dflt = FALSE         /// Default value for the variable.
  331.     ) const;
  332.     /** Set a boolean variable determined by the key in the section. If the
  333.        section name is not specified then the default section is used.
  334.        If value is TRUE then the string "True" is written to the variable
  335.        otherwise the string "False" is set.
  336.      */
  337.     void SetBoolean(
  338.       const PString & key,      /// The key name for the variable.
  339.       BOOL value                /// New value to set for the variable.
  340.     );
  341.     /** Set a boolean variable determined by the key in the section. */
  342.     void SetBoolean(
  343.       const PString & section,  /// Section to use instead of the default.
  344.       const PString & key,      /// The key name for the variable.
  345.       BOOL value                /// New value to set for the variable.
  346.     );
  347.     /* Get an integer variable determined by the key in the section. If the
  348.        section name is not specified then the default section is used.
  349.        If the key is not present the value returned is the that provided by
  350.        the #dlft# parameter. Note that this is different from the
  351.        key being present but having no value, in which case zero is returned.
  352.        @return integer value of the variable.
  353.      */
  354.     long GetInteger(
  355.       const PString & key,      /// The key name for the variable.
  356.       long dflt = 0             /// Default value for the variable.
  357.     ) const;
  358.     /* Get an integer variable determined by the key in the section. */
  359.     long GetInteger(
  360.       const PString & section,  /// Section to use instead of the default.
  361.       const PString & key,      /// The key name for the variable.
  362.       long dflt = 0             /// Default value for the variable.
  363.     ) const;
  364.     /** Set an integer variable determined by the key in the section. If the
  365.        section name is not specified then the default section is used.
  366.        The value is always formatted as a signed number with no leading or
  367.        trailing blanks.
  368.      */
  369.     void SetInteger(
  370.       const PString & key,      /// The key name for the variable.
  371.       long value                /// New value to set for the variable.
  372.     );
  373.     /** Set an integer variable determined by the key in the section. */
  374.     void SetInteger(
  375.       const PString & section,  /// Section to use instead of the default.
  376.       const PString & key,      /// The key name for the variable.
  377.       long value                /// New value to set for the variable.
  378.     );
  379.     /** Get a 64 bit integer variable determined by the key in the section. If the
  380.        section name is not specified then the default section is used.
  381.        If the key is not present the value returned is the that provided by
  382.        the #dlft# parameter. Note that this is different from the
  383.        key being present but having no value, in which case zero is returned.
  384.        @return integer value of the variable.
  385.      */
  386.     PInt64 GetInt64(
  387.       const PString & key,      /// The key name for the variable.
  388.       PInt64 dflt = 0           /// Default value for the variable.
  389.     ) const;
  390.     /** Get a 64 bit integer variable determined by the key in the section. */
  391.     PInt64 GetInt64(
  392.       const PString & section,  /// Section to use instead of the default.
  393.       const PString & key,      /// The key name for the variable.
  394.       PInt64 dflt = 0           /// Default value for the variable.
  395.     ) const;
  396.     /** Set a 64 bit integer variable determined by the key in the section. If the
  397.        section name is not specified then the default section is used.
  398.        The value is always formatted as a signed number with no leading or
  399.        trailing blanks.
  400.      */
  401.     void SetInt64(
  402.       const PString & key,      /// The key name for the variable.
  403.       PInt64 value              /// New value to set for the variable.
  404.     );
  405.     /** Set a 64 bit integer variable determined by the key in the section. */
  406.     void SetInt64(
  407.       const PString & section,  /// Section to use instead of the default.
  408.       const PString & key,      /// The key name for the variable.
  409.       PInt64 value              /// New value to set for the variable.
  410.     );
  411.     /** Get a floating point variable determined by the key in the section. If
  412.        the section name is not specified then the default section is used.
  413.        If the key is not present the value returned is the that provided by
  414.        the #dlft# parameter. Note that this is different from the
  415.        key being present but having no value, in which case zero is returned.
  416.        @return floating point value of the variable.
  417.      */
  418.     double GetReal(
  419.       const PString & key,      /// The key name for the variable.
  420.       double dflt = 0           /// Default value for the variable.
  421.     ) const;
  422.     /** Get a floating point variable determined by the key in the section. */
  423.     double GetReal(
  424.       const PString & section,  /// Section to use instead of the default.
  425.       const PString & key,      /// The key name for the variable.
  426.       double dflt = 0           /// Default value for the variable.
  427.     ) const;
  428.     /** Set a floating point variable determined by the key in the section. If
  429.        the section name is not specified then the default section is used.
  430.        The value is always formatted as a signed decimal or exponential form
  431.        number with no leading or trailing blanks, ie it uses the %g formatter
  432.        from the printf() function.
  433.      */
  434.     void SetReal(
  435.       const PString & key,      /// The key name for the variable.
  436.       double value              /// New value to set for the variable.
  437.     );
  438.     /** Set a floating point variable determined by the key in the section. */
  439.     void SetReal(
  440.       const PString & section,  /// Section to use instead of the default.
  441.       const PString & key,      /// The key name for the variable.
  442.       double value              /// New value to set for the variable.
  443.     );
  444.     /** Get a #PTime# variable determined by the key in the section. If
  445.        the section name is not specified then the default section is used.
  446.        If the key is not present the value returned is the that provided by
  447.        the #dlft# parameter. Note that this is different from the
  448.        key being present but having no value, in which case zero is returned.
  449.        @return time/date value of the variable.
  450.      */
  451.     PTime GetTime(
  452.       const PString & key       /// The key name for the variable.
  453.     ) const;
  454.     /** Get a #PTime# variable determined by the key in the section. */
  455.     PTime GetTime(
  456.       const PString & key,      /// The key name for the variable.
  457.       const PTime & dflt        /// Default value for the variable.
  458.     ) const;
  459.     /** Get a #PTime# variable determined by the key in the section. */
  460.     PTime GetTime(
  461.       const PString & section,  /// Section to use instead of the default.
  462.       const PString & key       /// The key name for the variable.
  463.     ) const;
  464.     /** Get a #PTime# variable determined by the key in the section. */
  465.     PTime GetTime(
  466.       const PString & section,  /// Section to use instead of the default.
  467.       const PString & key,      /// The key name for the variable.
  468.       const PTime & dflt        /// Default value for the variable.
  469.     ) const;
  470.     /** Set a #PTime# variable determined by the key in the section. If
  471.        the section name is not specified then the default section is used.
  472.      */
  473.     void SetTime(
  474.       const PString & key,      /// The key name for the variable.
  475.       const PTime & value       /// New value to set for the variable.
  476.     );
  477.     /** Set a #PTime# variable determined by the key in the section. */
  478.     void SetTime(
  479.       const PString & section,  /// Section to use instead of the default.
  480.       const PString & key,      /// The key name for the variable.
  481.       const PTime & value       /// New value to set for the variable.
  482.     );
  483.   //@}
  484.   protected:
  485.     // Member variables
  486.     /// The current section for variable values.
  487.     PString defaultSection;
  488.   private:
  489.     // Do common construction code.
  490.     void Construct(
  491.       Source src,               /// Standard source for the configuration.
  492.       const PString & appname,  /// Name of application
  493.       const PString & manuf     /// Manufacturer
  494.     );
  495.     void Construct(
  496.       const PFilePath & filename  /// Explicit name of the configuration file.
  497.     );
  498. #ifdef DOC_PLUS_PLUS
  499. };
  500. #endif
  501. // Class declaration continued in platform specific header file /////////////////