2007-03-26 12:16:57 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
|
|
|
* aria2 - The high speed download utility
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2010-01-05 16:01:46 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2007-03-26 12:16:57 +00:00
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give
|
|
|
|
* permission to link the code of portions of this program with the
|
|
|
|
* OpenSSL library under certain conditions as described in each
|
|
|
|
* individual source file, and distribute linked combinations
|
|
|
|
* including the two.
|
|
|
|
* You must obey the GNU General Public License in all respects
|
|
|
|
* for all of the code used other than OpenSSL. If you modify
|
|
|
|
* file(s) with this exception, you may extend this exception to your
|
|
|
|
* version of the file(s), but you are not obligated to do so. If you
|
|
|
|
* do not wish to do so, delete this exception statement from your
|
|
|
|
* version. If you delete this exception statement from all source
|
|
|
|
* files in the program, then also delete it here.
|
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
#ifndef _D_OPTION_PARSER_H_
|
|
|
|
#define _D_OPTION_PARSER_H_
|
|
|
|
|
|
|
|
#include "common.h"
|
2009-02-07 11:00:34 +00:00
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
#include <string>
|
2009-12-20 14:25:51 +00:00
|
|
|
#include <vector>
|
2008-02-08 15:53:45 +00:00
|
|
|
#include <iosfwd>
|
|
|
|
|
2009-02-07 11:00:34 +00:00
|
|
|
#include "SharedHandle.h"
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
namespace aria2 {
|
|
|
|
|
|
|
|
class Option;
|
|
|
|
class OptionHandler;
|
2007-03-26 12:16:57 +00:00
|
|
|
|
|
|
|
class OptionParser {
|
|
|
|
private:
|
2010-06-21 13:51:56 +00:00
|
|
|
int idCounter_;
|
2009-02-07 11:00:34 +00:00
|
|
|
|
2010-06-21 13:51:56 +00:00
|
|
|
// optionHandlers_ is sorted by OptionHandler::getName() in
|
2009-12-20 14:25:51 +00:00
|
|
|
// ascending order.
|
2010-06-21 13:51:56 +00:00
|
|
|
std::vector<SharedHandle<OptionHandler> > optionHandlers_;
|
2008-09-22 09:26:57 +00:00
|
|
|
|
|
|
|
SharedHandle<OptionHandler>
|
|
|
|
getOptionHandlerByName(const std::string& optName);
|
2009-05-08 07:58:50 +00:00
|
|
|
|
2010-06-21 13:51:56 +00:00
|
|
|
static SharedHandle<OptionParser> optionParser_;
|
2007-03-26 12:16:57 +00:00
|
|
|
public:
|
2009-02-07 11:00:34 +00:00
|
|
|
OptionParser();
|
|
|
|
|
2007-03-26 12:16:57 +00:00
|
|
|
~OptionParser() {}
|
|
|
|
|
2009-02-07 11:00:34 +00:00
|
|
|
// Parses options in argv and writes option name and value to out in
|
|
|
|
// NAME=VALUE format. Non-option strings are stored in nonopts.
|
2009-05-12 13:51:12 +00:00
|
|
|
// Throws Exception when an unrecognized option is found.
|
2010-02-28 12:30:11 +00:00
|
|
|
void parseArg(std::ostream& out, std::vector<std::string>& nonopts,
|
2010-01-05 16:01:46 +00:00
|
|
|
int argc, char* const argv[]);
|
2009-02-07 11:00:34 +00:00
|
|
|
|
|
|
|
void parse(Option& option, std::istream& ios);
|
2007-03-26 12:16:57 +00:00
|
|
|
|
2009-02-07 11:00:34 +00:00
|
|
|
void parseDefaultValues(Option& option) const;
|
2008-09-22 09:26:57 +00:00
|
|
|
|
|
|
|
void setOptionHandlers
|
2009-12-20 14:25:51 +00:00
|
|
|
(const std::vector<SharedHandle<OptionHandler> >& optionHandlers);
|
2008-09-22 09:26:57 +00:00
|
|
|
|
|
|
|
void addOptionHandler(const SharedHandle<OptionHandler>& optionHandler);
|
|
|
|
|
2009-12-20 14:25:51 +00:00
|
|
|
// Hidden options are not returned.
|
|
|
|
std::vector<SharedHandle<OptionHandler> >
|
2008-09-22 09:26:57 +00:00
|
|
|
findByTag(const std::string& tag) const;
|
|
|
|
|
2009-12-20 14:25:51 +00:00
|
|
|
// Hidden options are not returned.
|
|
|
|
std::vector<SharedHandle<OptionHandler> >
|
2008-09-22 09:26:57 +00:00
|
|
|
findByNameSubstring(const std::string& substring) const;
|
|
|
|
|
2009-12-20 14:25:51 +00:00
|
|
|
// Hidden options are not returned.
|
|
|
|
std::vector<SharedHandle<OptionHandler> > findAll() const;
|
2008-09-22 09:26:57 +00:00
|
|
|
|
2009-12-20 14:25:51 +00:00
|
|
|
// Hidden options are not returned.
|
2008-09-22 09:26:57 +00:00
|
|
|
SharedHandle<OptionHandler>
|
|
|
|
findByName(const std::string& name) const;
|
|
|
|
|
2009-12-20 14:25:51 +00:00
|
|
|
// Hidden options are not returned.
|
2009-02-07 11:00:34 +00:00
|
|
|
SharedHandle<OptionHandler> findByID(int id) const;
|
|
|
|
|
2009-12-20 14:25:51 +00:00
|
|
|
// Hidden options are not returned.
|
2009-02-07 11:00:34 +00:00
|
|
|
SharedHandle<OptionHandler> findByShortName(char shortName) const;
|
|
|
|
|
2010-05-08 12:25:28 +00:00
|
|
|
static const SharedHandle<OptionParser>& getInstance();
|
2007-03-26 12:16:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef SharedHandle<OptionParser> OptionParserHandle;
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
} // namespace aria2
|
|
|
|
|
2007-03-26 12:16:57 +00:00
|
|
|
#endif // _D_OPTION_PARSER_H_
|