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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * args.h
  3.  *
  4.  * Program Argument Parsing 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: args.h,v $
  30.  * Revision 1.20  2000/05/25 11:05:31  robertj
  31.  * Added PConfigArgs class so can save program arguments to config files.
  32.  *
  33.  * Revision 1.19  1999/03/09 02:59:49  robertj
  34.  * Changed comments to doc++ compatible documentation.
  35.  *
  36.  * Revision 1.18  1999/02/16 08:07:10  robertj
  37.  * MSVC 6.0 compatibility changes.
  38.  *
  39.  * Revision 1.17  1998/11/01 04:56:51  robertj
  40.  * Added BOOl return value to Parse() to indicate there are parameters available.
  41.  *
  42.  * Revision 1.16  1998/10/30 11:22:14  robertj
  43.  * Added constructors that take strings as well as const char *'s.
  44.  *
  45.  * Revision 1.15  1998/10/30 05:24:29  robertj
  46.  * Added return value to << and >> operators for shifting arguments.
  47.  *
  48.  * Revision 1.14  1998/10/29 05:35:14  robertj
  49.  * Fixed porblem with GetCount() == 0 if do not call Parse() function.
  50.  *
  51.  * Revision 1.13  1998/10/28 03:26:41  robertj
  52.  * Added multi character arguments (-abc style) and options precede parameters mode.
  53.  *
  54.  * Revision 1.12  1998/10/28 00:59:46  robertj
  55.  * New improved argument parsing.
  56.  *
  57.  * Revision 1.11  1998/09/23 06:20:14  robertj
  58.  * Added open source copyright license.
  59.  *
  60.  * Revision 1.10  1995/12/10 11:26:38  robertj
  61.  * Fixed signed/unsigned bug in shift count.
  62.  *
  63.  * Revision 1.9  1995/06/17 11:12:17  robertj
  64.  * Documentation update.
  65.  *
  66.  * Revision 1.8  1995/03/14 12:40:58  robertj
  67.  * Updated documentation to use HTML codes.
  68.  *
  69.  * Revision 1.7  1994/12/05  11:15:13  robertj
  70.  * Documentation.
  71.  *
  72.  * Revision 1.6  1994/11/26  03:44:19  robertj
  73.  * Documentation.
  74.  *
  75.  * Revision 1.6  1994/11/24  11:48:26  robertj
  76.  * Documentation.
  77.  *
  78.  * Revision 1.5  1994/08/23  11:32:52  robertj
  79.  * Oops
  80.  *
  81.  * Revision 1.4  1994/08/22  00:46:48  robertj
  82.  * Added pragma fro GNU C++ compiler.
  83.  *
  84.  * Revision 1.3  1994/07/27  05:58:07  robertj
  85.  * Synchronisation.
  86.  *
  87.  * Revision 1.2  1994/07/17  10:46:06  robertj
  88.  * Changed to use container classes to plug memory leak.
  89.  *
  90.  * Revision 1.1  1994/04/01  14:08:52  robertj
  91.  * Initial revision
  92.  *
  93.  */
  94. #ifndef _PARGLIST
  95. #define _PARGLIST
  96. #ifdef __GNUC__
  97. #pragma interface
  98. #endif
  99. /** This class allows the parsing of a set of program arguments. This translates
  100.    the standard argc/argv style variables passed into the main() function into
  101.    a set of options (preceded by a '-' character) and parameters.
  102. */
  103. class PArgList : public PObject
  104. {
  105.   PCLASSINFO(PArgList, PObject);
  106.   public:
  107.   /**@name Construction */
  108.   //@{
  109.     /** Create an argument list.
  110.         An argument list is created given the standard arguments and a
  111.        specification for options. The program arguments are parsed from this
  112.        into options and parameters.
  113.        The specification string consists of case significant letters for each
  114.        option. If the letter is followed by the ':' character then the option
  115.        has an associated string. This string must be in the argument or in the
  116.        next argument.
  117.      */
  118.     PArgList(
  119.       const char * theArgPtr = NULL,   /// A string constituting the arguments
  120.       const char * argumentSpecPtr = NULL,
  121.       /** The specification C string for argument options. See description for
  122.          details.
  123.        */
  124.       BOOL optionsBeforeParams = TRUE  /// Parse options only before parameters
  125.     );
  126.     /** Create an argument list. */
  127.     PArgList(
  128.       const PString & theArgStr,   /// A string constituting the arguments
  129.       const char * argumentSpecPtr = NULL,
  130.       /** The specification C string for argument options. See description for
  131.          details.
  132.        */
  133.       BOOL optionsBeforeParams = TRUE  /// Parse options only before parameters
  134.     );
  135.     /** Create an argument list. */
  136.     PArgList(
  137.       const PString & theArgStr,   /// A string constituting the arguments
  138.       const PString & argumentSpecStr,
  139.       /** The specification string for argument options. See description for
  140.          details.
  141.        */
  142.       BOOL optionsBeforeParams = TRUE  /// Parse options only before parameters
  143.     );
  144.     /** Create an argument list. */
  145.     PArgList(
  146.       int theArgc,     /// Count of argument strings in theArgv
  147.       char ** theArgv, /// An array of strings constituting the arguments
  148.       const char * argumentSpecPtr = NULL,
  149.       /** The specification C string for argument options. See description for
  150.          details.
  151.        */
  152.       BOOL optionsBeforeParams = TRUE  /// Parse options only before parameters
  153.     );
  154.     /** Create an argument list. */
  155.     PArgList(
  156.       int theArgc,     /// Count of argument strings in theArgv
  157.       char ** theArgv, /// An array of strings constituting the arguments
  158.       const PString & argumentSpecStr,
  159.       /** The specification string for argument options. See description for
  160.          details.
  161.        */
  162.       BOOL optionsBeforeParams = TRUE  /// Parse options only before parameters
  163.     );
  164.   //@}
  165.   /**@name Setting & Parsing */
  166.   //@{
  167.     /** Set the internal copy of the program arguments.
  168.     */
  169.     void SetArgs(
  170.       const PString & theArgStr /// A string constituting the arguments
  171.     );
  172.     /** Set the internal copy of the program arguments. */
  173.     void SetArgs(
  174.       int theArgc,     /// Count of argument strings in theArgv
  175.       char ** theArgv  /// An array of strings constituting the arguments
  176.     );
  177.     /** Set the internal copy of the program arguments. */
  178.     void SetArgs(
  179.       const PStringArray & theArgs /// A string array constituting the arguments
  180.     );
  181.     /** Parse the arguments.
  182.        Parse the standard C program arguments into an argument of options and
  183.        parameters. Consecutive calls with #optionsBeforeParams# set
  184.        to TRUE will parse out different options and parameters. If SetArgs()
  185.        function is called then the Parse() function will restart from the
  186.        beginning of the argument list.
  187.        The specification string consists of case significant letters for each
  188.        option. If the letter is followed by a '-' character then a long name
  189.        version of the option is present. This is terminated either by a '.' or
  190.        a ':' character. If the single letter or long name is followed by the
  191.        ':' character then the option has may have an associated string. This
  192.        string must be within the argument or in the next argument. If a single
  193.        letter option is followed by a ';' character, then the option may have
  194.        an associated string but this MUST follow the letter immediately, if
  195.        it is present at all.
  196.        For example, "ab:c" allows for "-a -b arg -barg -c" and
  197.        "a-an-arg.b-option:c;" allows for "-a --an-arg --option arg -c -copt".
  198.        @return TRUE if there is at least one parameter after parsing.
  199.      */
  200.     virtual BOOL Parse(
  201.       const char * theArgumentSpec,
  202.       /** The specification string for argument options. See description for
  203.          details.
  204.        */
  205.       BOOL optionsBeforeParams = TRUE  /// Parse options only before parameters
  206.     );
  207.     /** Parse the arguments. */
  208.     virtual BOOL Parse(
  209.       const PString & theArgumentStr,
  210.       /** The specification string for argument options. See description for
  211.          details.
  212.        */
  213.       BOOL optionsBeforeParams = TRUE  /// Parse options only before parameters
  214.     );
  215.   //@}
  216.   /**@name Getting parsed arguments */
  217.   //@{
  218.     /** Get the count of the number of times the option was specified on the
  219.        command line.
  220.        @return option repeat count.
  221.      */
  222.     virtual PINDEX GetOptionCount(
  223.       char optionChar  /// Character letter code for the option
  224.     ) const;
  225.     /** Get the count of option */
  226.     virtual PINDEX GetOptionCount(
  227.       const char * optionStr /// String code for the option
  228.     ) const;
  229.     /** Get the count of option */
  230.     virtual PINDEX GetOptionCount(
  231.       const PString & optionName /// String code for the option
  232.     ) const;
  233.     /** Get if option present.
  234.       Determines whether the option was specified on the command line.
  235.        @return TRUE if the option was present.
  236.      */
  237.     BOOL HasOption(
  238.       char optionChar  /// Character letter code for the option
  239.     ) const;
  240.     /** Get if option present. */
  241.     BOOL HasOption(
  242.       const char * optionStr /// String letter code for the option
  243.     ) const;
  244.     /** Get if option present. */
  245.     BOOL HasOption(
  246.       const PString & optionName /// String code for the option
  247.     ) const;
  248.     /** Get option string.
  249.        Gets the string associated with an option e.g. -ofile or -o file
  250.        would return the string "file". An option may have an associated string
  251.        if it had a ':' character folowing it in the specification string passed
  252.        to the Parse() function.
  253.        @return the options associated string.
  254.      */
  255.     virtual PString GetOptionString(
  256.       char optionChar,          /// Character letter code for the option
  257.       const char * dflt = NULL  /// Default value of the option string
  258.     ) const;
  259.     /** Get option string. */
  260.     virtual PString GetOptionString(
  261.       const char * optionStr,   /// String letter code for the option
  262.       const char * dflt = NULL  /// Default value of the option string
  263.     ) const;
  264.     /** Get option string. */
  265.     virtual PString GetOptionString(
  266.       const PString & optionName, /// String code for the option
  267.       const char * dflt = NULL    /// Default value of the option string
  268.     ) const;
  269.     /** Get the argument count.
  270.        Get the number of parameters that may be obtained via the
  271.        #GetParameter()# function. Note that this does not include options
  272.        and option strings.
  273.        @return count of parameters.
  274.      */
  275.     PINDEX GetCount() const;
  276.     /** Get the parameter that was parsed in the argument list.
  277.        @return parameter string at the specified index.
  278.      */
  279.     PString GetParameter(
  280.       PINDEX num   /// Number of the parameter to retrieve.
  281.     ) const;
  282.     /** Get the parameter that was parsed in the argument list. The argument
  283.        list object can thus be treated as an "array" of parameters.
  284.        @return parameter string at the specified index.
  285.      */
  286.     PString operator[](
  287.       PINDEX num   /// Number of the parameter to retrieve.
  288.     ) const;
  289.     /** Shift the parameters by the specified amount. This allows the parameters
  290.        to be parsed at the same position in the argument list "array".
  291.      */
  292.     void Shift(
  293.       int sh /// Number of parameters to shift forward through list
  294.     );
  295.     /** Shift the parameters by the specified amount. This allows the parameters
  296.        to be parsed at the same position in the argument list "array".
  297.      */
  298.     PArgList & operator<<(
  299.       int sh /// Number of parameters to shift forward through list
  300.     );
  301.     /** Shift the parameters by the specified amount. This allows the parameters
  302.        to be parsed at the same position in the argument list "array".
  303.      */
  304.     PArgList & operator>>(
  305.       int sh /// Number of parameters to shift backward through list
  306.     );
  307.   //@}
  308.   /**@name Errors */
  309.   //@{
  310.     /** This function is called when access to illegal parameter index is made
  311.        in the GetParameter function. The default behaviour is to output a
  312.        message to the standard #PError# stream.
  313.      */
  314.     virtual void IllegalArgumentIndex(
  315.       PINDEX idx /// Number of the parameter that was accessed.
  316.     ) const;
  317.     /** This function is called when an unknown option was specified on the
  318.        command line. The default behaviour is to output a message to the
  319.        standard #PError# stream.
  320.      */
  321.     virtual void UnknownOption(
  322.       const PString & option   /// Option that was illegally placed on command line.
  323.     ) const;
  324.     /** This function is called when an option that requires an associated
  325.        string was specified on the command line but no associated string was
  326.        provided. The default behaviour is to output a message to the standard
  327.        #PError# stream.
  328.      */
  329.     virtual void MissingArgument(
  330.       const PString & option  /// Option for which the associated string was missing.
  331.     ) const;
  332.   //@}
  333.   protected:
  334.     /// The original program arguments.
  335.     PStringArray argumentArray;
  336.     /// The specification letters for options
  337.     PString      optionLetters;
  338.     /// The specification strings for options
  339.     PStringArray optionNames;
  340.     /// The count of the number of times an option appeared in the command line.
  341.     PIntArray    optionCount;
  342.     /// The array of associated strings to options.
  343.     PStringArray optionString;
  344.     /// The index of each .
  345.     PIntArray    parameterIndex;
  346.     /// Shift count for the parameters in the argument list.
  347.     int          shift;
  348.   private:
  349.     BOOL ParseOption(PINDEX idx, PINDEX offset, PINDEX & arg, const PIntArray & canHaveOptionString);
  350.     PINDEX GetOptionCountByIndex(PINDEX idx) const;
  351.     PString GetOptionStringByIndex(PINDEX idx, const char * dflt) const;
  352. };
  353. /**This class parse command line arguments with the ability to override them
  354.    from a PConfig file/registry.
  355.   */
  356. class PConfigArgs : public PArgList
  357. {
  358.     PCLASSINFO(PConfigArgs, PArgList);
  359.   public:
  360.   /**@name Construction */
  361.   //@{
  362.     PConfigArgs(
  363.       const PArgList & args   /// Raw argument list.
  364.     );
  365.   //@}
  366.   /**@name Overrides from class PArgList */
  367.   //@{
  368.     /** Get the count of the number of times the option was specified on the
  369.        command line.
  370.        @return option repeat count.
  371.      */
  372.     virtual PINDEX GetOptionCount(
  373.       char optionChar  /// Character letter code for the option
  374.     ) const;
  375.     /** Get the count of option */
  376.     virtual PINDEX GetOptionCount(
  377.       const char * optionStr /// String code for the option
  378.     ) const;
  379.     /** Get the count of option */
  380.     virtual PINDEX GetOptionCount(
  381.       const PString & optionName /// String code for the option
  382.     ) const;
  383.     /** Get option string.
  384.        Gets the string associated with an option e.g. -ofile or -o file
  385.        would return the string "file". An option may have an associated string
  386.        if it had a ':' character folowing it in the specification string passed
  387.        to the Parse() function.
  388.        @return the options associated string.
  389.      */
  390.     virtual PString GetOptionString(
  391.       char optionChar,          /// Character letter code for the option
  392.       const char * dflt = NULL  /// Default value of the option string
  393.     ) const;
  394.     /** Get option string. */
  395.     virtual PString GetOptionString(
  396.       const char * optionStr,   /// String letter code for the option
  397.       const char * dflt = NULL  /// Default value of the option string
  398.     ) const;
  399.     /** Get option string. */
  400.     virtual PString GetOptionString(
  401.       const PString & optionName, /// String code for the option
  402.       const char * dflt = NULL    /// Default value of the option string
  403.     ) const;
  404.   //@}
  405.   /**@name Overrides from class PArgList */
  406.   //@{
  407.     /**Save the current options to the PConfig.
  408.        This function will check to see if the option name is present and if
  409.        so, save to the PConfig all of the arguments present in the currently
  410.        parsed list. Note that the optionName for saving is not saved to the
  411.        PConfig itself as this would cause the data to be saved always!
  412.       */
  413.     void Save(
  414.       const PString & optionName   /// Option name for saving.
  415.     );
  416.     /**Set the PConfig section name for options.
  417.       */
  418.     void SetSectionName(
  419.       const PString & section /// New section name
  420.     ) { sectionName = section; }
  421.     /**Get the PConfig section name for options.
  422.       */
  423.     const PString & GetSectionName() const { return sectionName; }
  424.     /**Set the prefix for option negation.
  425.        The default is "no-".
  426.       */
  427.     void SetNegationPrefix(
  428.       const PString & prefix /// New prefix string
  429.     ) { negationPrefix = prefix; }
  430.     /**Get the prefix for option negation.
  431.        The default is "no-".
  432.       */
  433.     const PString & GetNegationPrefix() const { return negationPrefix; }
  434.   //@}
  435.   protected:
  436.     PString CharToString(char ch) const;
  437.     PConfig config;
  438.     PString sectionName;
  439.     PString negationPrefix;
  440. };
  441. #endif
  442. // End Of File ///////////////////////////////////////////////////////////////