os/ossrv/ossrv_pub/boost_apis/boost/program_options/parsers.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright Vladimir Prus 2002-2004.
sl@0
     2
// Distributed under the Boost Software License, Version 1.0.
sl@0
     3
// (See accompanying file LICENSE_1_0.txt
sl@0
     4
// or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     5
sl@0
     6
sl@0
     7
#ifndef BOOST_PARSERS_VP_2003_05_19
sl@0
     8
#define BOOST_PARSERS_VP_2003_05_19
sl@0
     9
sl@0
    10
#include <boost/program_options/config.hpp>
sl@0
    11
#include <boost/program_options/option.hpp>
sl@0
    12
#include <boost/program_options/detail/cmdline.hpp>
sl@0
    13
sl@0
    14
#include <boost/function/function1.hpp>
sl@0
    15
sl@0
    16
#include <iosfwd>
sl@0
    17
#include <vector>
sl@0
    18
#include <utility>
sl@0
    19
sl@0
    20
namespace boost { namespace program_options {
sl@0
    21
sl@0
    22
    class options_description;
sl@0
    23
    class positional_options_description;
sl@0
    24
sl@0
    25
sl@0
    26
    /** Results of parsing an input source. 
sl@0
    27
        The primary use of this class is passing information from parsers 
sl@0
    28
        component to value storage component. This class does not makes
sl@0
    29
        much sense itself.        
sl@0
    30
    */
sl@0
    31
    template<class charT>
sl@0
    32
    class basic_parsed_options {
sl@0
    33
    public:
sl@0
    34
        explicit basic_parsed_options(const options_description* description) 
sl@0
    35
        : description(description) {}
sl@0
    36
        /** Options found in the source. */
sl@0
    37
        std::vector< basic_option<charT> > options;
sl@0
    38
        /** Options description that was used for parsing. 
sl@0
    39
            Parsers should return pointer to the instance of 
sl@0
    40
            option_description passed to them, and issues of lifetime are
sl@0
    41
            up to the caller. Can be NULL.
sl@0
    42
         */
sl@0
    43
        const options_description* description;
sl@0
    44
    };
sl@0
    45
sl@0
    46
    /** Specialization of basic_parsed_options which:
sl@0
    47
        - provides convenient conversion from basic_parsed_options<char>
sl@0
    48
        - stores the passed char-based options for later use.
sl@0
    49
    */
sl@0
    50
    template<>
sl@0
    51
    class BOOST_PROGRAM_OPTIONS_DECL basic_parsed_options<wchar_t> {
sl@0
    52
    public:
sl@0
    53
        /** Constructs wrapped options from options in UTF8 encoding. */
sl@0
    54
        explicit basic_parsed_options(const basic_parsed_options<char>& po);
sl@0
    55
sl@0
    56
        std::vector< basic_option<wchar_t> > options;
sl@0
    57
        const options_description* description;
sl@0
    58
sl@0
    59
        /** Stores UTF8 encoded options that were passed to constructor,
sl@0
    60
            to avoid reverse conversion in some cases. */
sl@0
    61
        basic_parsed_options<char> utf8_encoded_options;        
sl@0
    62
    };
sl@0
    63
sl@0
    64
    typedef basic_parsed_options<char> parsed_options;
sl@0
    65
    typedef basic_parsed_options<wchar_t> wparsed_options;
sl@0
    66
sl@0
    67
    /** Augments basic_parsed_options<wchar_t> with conversion from
sl@0
    68
        'parsed_options' */
sl@0
    69
sl@0
    70
sl@0
    71
    typedef function1<std::pair<std::string, std::string>, const std::string&> ext_parser;
sl@0
    72
sl@0
    73
    /** Command line parser.
sl@0
    74
sl@0
    75
        The class allows one to specify all the information needed for parsing
sl@0
    76
        and to parse the command line. It is primarily needed to
sl@0
    77
        emulate named function parameters -- a regular function with 5
sl@0
    78
        parameters will be hard to use and creating overloads with a smaller
sl@0
    79
        nuber of parameters will be confusing.
sl@0
    80
sl@0
    81
        For the most common case, the function parse_command_line is a better 
sl@0
    82
        alternative.        
sl@0
    83
sl@0
    84
        There are two typedefs -- command_line_parser and wcommand_line_parser,
sl@0
    85
        for charT == char and charT == wchar_t cases.
sl@0
    86
    */
sl@0
    87
    template<class charT>
sl@0
    88
    class basic_command_line_parser : private detail::cmdline {
sl@0
    89
    public:
sl@0
    90
        /** Creates a command line parser for the specified arguments
sl@0
    91
            list. The 'args' parameter should not include program name.
sl@0
    92
        */
sl@0
    93
        basic_command_line_parser(const std::vector<
sl@0
    94
                                  std::basic_string<charT> >& args);
sl@0
    95
        /** Creates a command line parser for the specified arguments
sl@0
    96
            list. The parameters should be the same as passed to 'main'.
sl@0
    97
        */
sl@0
    98
        basic_command_line_parser(int argc, charT* argv[]);
sl@0
    99
sl@0
   100
        /** Sets options descriptions to use. */
sl@0
   101
        basic_command_line_parser& options(const options_description& desc);
sl@0
   102
        /** Sets positional options description to use. */
sl@0
   103
        basic_command_line_parser& positional(
sl@0
   104
            const positional_options_description& desc);
sl@0
   105
sl@0
   106
        /** Sets the command line style. */
sl@0
   107
        basic_command_line_parser& style(int);
sl@0
   108
        /** Sets the extra parsers. */
sl@0
   109
        basic_command_line_parser& extra_parser(ext_parser);
sl@0
   110
sl@0
   111
        /** Parses the options and returns the result of parsing.
sl@0
   112
            Throws on error.
sl@0
   113
        */
sl@0
   114
        basic_parsed_options<charT> run();
sl@0
   115
sl@0
   116
        /** Specifies that unregistered options are allowed and should
sl@0
   117
            be passed though. For each command like token that looks
sl@0
   118
            like an option but does not contain a recognized name, an
sl@0
   119
            instance of basic_option<charT> will be added to result,
sl@0
   120
            with 'unrecognized' field set to 'true'. It's possible to
sl@0
   121
            collect all unrecognized options with the 'collect_unrecognized'
sl@0
   122
            funciton. 
sl@0
   123
        */
sl@0
   124
        basic_command_line_parser& allow_unregistered();
sl@0
   125
        
sl@0
   126
        using detail::cmdline::style_parser;
sl@0
   127
sl@0
   128
        basic_command_line_parser& extra_style_parser(style_parser s);
sl@0
   129
sl@0
   130
    private:
sl@0
   131
        const options_description* m_desc;
sl@0
   132
    };
sl@0
   133
sl@0
   134
    typedef basic_command_line_parser<char> command_line_parser;
sl@0
   135
    typedef basic_command_line_parser<wchar_t> wcommand_line_parser;
sl@0
   136
sl@0
   137
    /** Creates instance of 'command_line_parser', passes parameters to it,
sl@0
   138
        and returns the result of calling the 'run' method.        
sl@0
   139
     */
sl@0
   140
    template<class charT>
sl@0
   141
    basic_parsed_options<charT>
sl@0
   142
    parse_command_line(int argc, charT* argv[],
sl@0
   143
                       const options_description&,
sl@0
   144
                       int style = 0,
sl@0
   145
                       function1<std::pair<std::string, std::string>, 
sl@0
   146
                                 const std::string&> ext
sl@0
   147
                       = ext_parser());
sl@0
   148
sl@0
   149
    /** Parse a config file. 
sl@0
   150
    */
sl@0
   151
    template<class charT>
sl@0
   152
#if ! BOOST_WORKAROUND(__ICL, BOOST_TESTED_AT(700))
sl@0
   153
    BOOST_PROGRAM_OPTIONS_DECL
sl@0
   154
#endif
sl@0
   155
    basic_parsed_options<charT>
sl@0
   156
    parse_config_file(std::basic_istream<charT>&, const options_description&);
sl@0
   157
sl@0
   158
    /** Controls if the 'collect_unregistered' function should
sl@0
   159
        include positional options, or not. */
sl@0
   160
    enum collect_unrecognized_mode 
sl@0
   161
    { include_positional, exclude_positional };
sl@0
   162
sl@0
   163
    /** Collects the original tokens for all named options with
sl@0
   164
        'unregistered' flag set. If 'mode' is 'include_positional'
sl@0
   165
        also collects all positional options.
sl@0
   166
        Returns the vector of origianl tokens for all collected
sl@0
   167
        options.
sl@0
   168
    */
sl@0
   169
    template<class charT>
sl@0
   170
    std::vector< std::basic_string<charT> > 
sl@0
   171
    collect_unrecognized(const std::vector< basic_option<charT> >& options,
sl@0
   172
                         enum collect_unrecognized_mode mode);
sl@0
   173
sl@0
   174
    /** Parse environment. 
sl@0
   175
sl@0
   176
        For each environment variable, the 'name_mapper' function is called to
sl@0
   177
        obtain the option name. If it returns empty string, the variable is 
sl@0
   178
        ignored. 
sl@0
   179
sl@0
   180
        This is done since naming of environment variables is typically 
sl@0
   181
        different from the naming of command line options.        
sl@0
   182
    */
sl@0
   183
    BOOST_PROGRAM_OPTIONS_DECL parsed_options
sl@0
   184
    parse_environment(const options_description&, 
sl@0
   185
                      const function1<std::string, std::string>& name_mapper);
sl@0
   186
sl@0
   187
    /** Parse environment.
sl@0
   188
sl@0
   189
        Takes all environment variables which start with 'prefix'. The option
sl@0
   190
        name is obtained from variable name by removing the prefix and 
sl@0
   191
        converting the remaining string into lower case.
sl@0
   192
    */
sl@0
   193
    BOOST_PROGRAM_OPTIONS_DECL parsed_options
sl@0
   194
    parse_environment(const options_description&, const std::string& prefix);
sl@0
   195
sl@0
   196
    /** @overload
sl@0
   197
        This function exists to resolve ambiguity between the two above 
sl@0
   198
        functions when second argument is of 'char*' type. There's implicit
sl@0
   199
        conversion to both function1 and string.
sl@0
   200
    */
sl@0
   201
    BOOST_PROGRAM_OPTIONS_DECL parsed_options
sl@0
   202
    parse_environment(const options_description&, const char* prefix);
sl@0
   203
sl@0
   204
    #ifdef _WIN32
sl@0
   205
    /** Parses the char* string which is passed to WinMain function on
sl@0
   206
        windows. This function is provided for convenience, and because it's
sl@0
   207
        not clear how to portably access split command line string from
sl@0
   208
        runtime library and if it always exists.
sl@0
   209
        This function is available only on Windows.
sl@0
   210
    */
sl@0
   211
    BOOST_PROGRAM_OPTIONS_DECL std::vector<std::string>
sl@0
   212
    split_winmain(const std::string& cmdline);
sl@0
   213
sl@0
   214
#ifndef BOOST_NO_STD_WSTRING
sl@0
   215
    /** @overload */
sl@0
   216
    BOOST_PROGRAM_OPTIONS_DECL std::vector<std::wstring>
sl@0
   217
    split_winmain(const std::wstring& cmdline);
sl@0
   218
    #endif
sl@0
   219
#endif
sl@0
   220
    
sl@0
   221
sl@0
   222
}}
sl@0
   223
sl@0
   224
#undef DECL
sl@0
   225
sl@0
   226
#include "boost/program_options/detail/parsers.hpp"
sl@0
   227
sl@0
   228
#endif