sl@0: // Copyright Vladimir Prus 2002-2004. sl@0: // Distributed under the Boost Software License, Version 1.0. sl@0: // (See accompanying file LICENSE_1_0.txt sl@0: // or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: sl@0: #ifndef BOOST_PARSERS_VP_2003_05_19 sl@0: #define BOOST_PARSERS_VP_2003_05_19 sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: namespace boost { namespace program_options { sl@0: sl@0: class options_description; sl@0: class positional_options_description; sl@0: sl@0: sl@0: /** Results of parsing an input source. sl@0: The primary use of this class is passing information from parsers sl@0: component to value storage component. This class does not makes sl@0: much sense itself. sl@0: */ sl@0: template sl@0: class basic_parsed_options { sl@0: public: sl@0: explicit basic_parsed_options(const options_description* description) sl@0: : description(description) {} sl@0: /** Options found in the source. */ sl@0: std::vector< basic_option > options; sl@0: /** Options description that was used for parsing. sl@0: Parsers should return pointer to the instance of sl@0: option_description passed to them, and issues of lifetime are sl@0: up to the caller. Can be NULL. sl@0: */ sl@0: const options_description* description; sl@0: }; sl@0: sl@0: /** Specialization of basic_parsed_options which: sl@0: - provides convenient conversion from basic_parsed_options sl@0: - stores the passed char-based options for later use. sl@0: */ sl@0: template<> sl@0: class BOOST_PROGRAM_OPTIONS_DECL basic_parsed_options { sl@0: public: sl@0: /** Constructs wrapped options from options in UTF8 encoding. */ sl@0: explicit basic_parsed_options(const basic_parsed_options& po); sl@0: sl@0: std::vector< basic_option > options; sl@0: const options_description* description; sl@0: sl@0: /** Stores UTF8 encoded options that were passed to constructor, sl@0: to avoid reverse conversion in some cases. */ sl@0: basic_parsed_options utf8_encoded_options; sl@0: }; sl@0: sl@0: typedef basic_parsed_options parsed_options; sl@0: typedef basic_parsed_options wparsed_options; sl@0: sl@0: /** Augments basic_parsed_options with conversion from sl@0: 'parsed_options' */ sl@0: sl@0: sl@0: typedef function1, const std::string&> ext_parser; sl@0: sl@0: /** Command line parser. sl@0: sl@0: The class allows one to specify all the information needed for parsing sl@0: and to parse the command line. It is primarily needed to sl@0: emulate named function parameters -- a regular function with 5 sl@0: parameters will be hard to use and creating overloads with a smaller sl@0: nuber of parameters will be confusing. sl@0: sl@0: For the most common case, the function parse_command_line is a better sl@0: alternative. sl@0: sl@0: There are two typedefs -- command_line_parser and wcommand_line_parser, sl@0: for charT == char and charT == wchar_t cases. sl@0: */ sl@0: template sl@0: class basic_command_line_parser : private detail::cmdline { sl@0: public: sl@0: /** Creates a command line parser for the specified arguments sl@0: list. The 'args' parameter should not include program name. sl@0: */ sl@0: basic_command_line_parser(const std::vector< sl@0: std::basic_string >& args); sl@0: /** Creates a command line parser for the specified arguments sl@0: list. The parameters should be the same as passed to 'main'. sl@0: */ sl@0: basic_command_line_parser(int argc, charT* argv[]); sl@0: sl@0: /** Sets options descriptions to use. */ sl@0: basic_command_line_parser& options(const options_description& desc); sl@0: /** Sets positional options description to use. */ sl@0: basic_command_line_parser& positional( sl@0: const positional_options_description& desc); sl@0: sl@0: /** Sets the command line style. */ sl@0: basic_command_line_parser& style(int); sl@0: /** Sets the extra parsers. */ sl@0: basic_command_line_parser& extra_parser(ext_parser); sl@0: sl@0: /** Parses the options and returns the result of parsing. sl@0: Throws on error. sl@0: */ sl@0: basic_parsed_options run(); sl@0: sl@0: /** Specifies that unregistered options are allowed and should sl@0: be passed though. For each command like token that looks sl@0: like an option but does not contain a recognized name, an sl@0: instance of basic_option will be added to result, sl@0: with 'unrecognized' field set to 'true'. It's possible to sl@0: collect all unrecognized options with the 'collect_unrecognized' sl@0: funciton. sl@0: */ sl@0: basic_command_line_parser& allow_unregistered(); sl@0: sl@0: using detail::cmdline::style_parser; sl@0: sl@0: basic_command_line_parser& extra_style_parser(style_parser s); sl@0: sl@0: private: sl@0: const options_description* m_desc; sl@0: }; sl@0: sl@0: typedef basic_command_line_parser command_line_parser; sl@0: typedef basic_command_line_parser wcommand_line_parser; sl@0: sl@0: /** Creates instance of 'command_line_parser', passes parameters to it, sl@0: and returns the result of calling the 'run' method. sl@0: */ sl@0: template sl@0: basic_parsed_options sl@0: parse_command_line(int argc, charT* argv[], sl@0: const options_description&, sl@0: int style = 0, sl@0: function1, sl@0: const std::string&> ext sl@0: = ext_parser()); sl@0: sl@0: /** Parse a config file. sl@0: */ sl@0: template sl@0: #if ! BOOST_WORKAROUND(__ICL, BOOST_TESTED_AT(700)) sl@0: BOOST_PROGRAM_OPTIONS_DECL sl@0: #endif sl@0: basic_parsed_options sl@0: parse_config_file(std::basic_istream&, const options_description&); sl@0: sl@0: /** Controls if the 'collect_unregistered' function should sl@0: include positional options, or not. */ sl@0: enum collect_unrecognized_mode sl@0: { include_positional, exclude_positional }; sl@0: sl@0: /** Collects the original tokens for all named options with sl@0: 'unregistered' flag set. If 'mode' is 'include_positional' sl@0: also collects all positional options. sl@0: Returns the vector of origianl tokens for all collected sl@0: options. sl@0: */ sl@0: template sl@0: std::vector< std::basic_string > sl@0: collect_unrecognized(const std::vector< basic_option >& options, sl@0: enum collect_unrecognized_mode mode); sl@0: sl@0: /** Parse environment. sl@0: sl@0: For each environment variable, the 'name_mapper' function is called to sl@0: obtain the option name. If it returns empty string, the variable is sl@0: ignored. sl@0: sl@0: This is done since naming of environment variables is typically sl@0: different from the naming of command line options. sl@0: */ sl@0: BOOST_PROGRAM_OPTIONS_DECL parsed_options sl@0: parse_environment(const options_description&, sl@0: const function1& name_mapper); sl@0: sl@0: /** Parse environment. sl@0: sl@0: Takes all environment variables which start with 'prefix'. The option sl@0: name is obtained from variable name by removing the prefix and sl@0: converting the remaining string into lower case. sl@0: */ sl@0: BOOST_PROGRAM_OPTIONS_DECL parsed_options sl@0: parse_environment(const options_description&, const std::string& prefix); sl@0: sl@0: /** @overload sl@0: This function exists to resolve ambiguity between the two above sl@0: functions when second argument is of 'char*' type. There's implicit sl@0: conversion to both function1 and string. sl@0: */ sl@0: BOOST_PROGRAM_OPTIONS_DECL parsed_options sl@0: parse_environment(const options_description&, const char* prefix); sl@0: sl@0: #ifdef _WIN32 sl@0: /** Parses the char* string which is passed to WinMain function on sl@0: windows. This function is provided for convenience, and because it's sl@0: not clear how to portably access split command line string from sl@0: runtime library and if it always exists. sl@0: This function is available only on Windows. sl@0: */ sl@0: BOOST_PROGRAM_OPTIONS_DECL std::vector sl@0: split_winmain(const std::string& cmdline); sl@0: sl@0: #ifndef BOOST_NO_STD_WSTRING sl@0: /** @overload */ sl@0: BOOST_PROGRAM_OPTIONS_DECL std::vector sl@0: split_winmain(const std::wstring& cmdline); sl@0: #endif sl@0: #endif sl@0: sl@0: sl@0: }} sl@0: sl@0: #undef DECL sl@0: sl@0: #include "boost/program_options/detail/parsers.hpp" sl@0: sl@0: #endif