| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- /* <!-- 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
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * 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_HANDLER_IMPL_H
- #define D_OPTION_HANDLER_IMPL_H
- #include "OptionHandler.h"
- #include <vector>
- #include "AbstractOptionHandler.h"
- #include "A2STR.h"
- namespace aria2 {
- class Option;
- struct Pref;
- class BooleanOptionHandler : public AbstractOptionHandler {
- public:
- BooleanOptionHandler(PrefPtr pref, const char* description = NO_DESCRIPTION,
- const std::string& defaultValue = NO_DEFAULT_VALUE,
- OptionHandler::ARG_TYPE argType = OptionHandler::REQ_ARG,
- char shortName = 0);
- virtual ~BooleanOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class IntegerRangeOptionHandler : public AbstractOptionHandler {
- private:
- int32_t min_;
- int32_t max_;
- public:
- IntegerRangeOptionHandler(PrefPtr pref, const char* description,
- const std::string& defaultValue, int32_t min,
- int32_t max, char shortName = 0);
- virtual ~IntegerRangeOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class NumberOptionHandler : public AbstractOptionHandler {
- private:
- int64_t min_;
- int64_t max_;
- public:
- NumberOptionHandler(PrefPtr pref, const char* description = NO_DESCRIPTION,
- const std::string& defaultValue = NO_DEFAULT_VALUE,
- int64_t min = -1, int64_t max = -1, char shortName = 0);
- virtual ~NumberOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- void parseArg(Option& option, int64_t number) const;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class UnitNumberOptionHandler : public NumberOptionHandler {
- public:
- UnitNumberOptionHandler(PrefPtr pref,
- const char* description = NO_DESCRIPTION,
- const std::string& defaultValue = NO_DEFAULT_VALUE,
- int64_t min = -1, int64_t max = -1,
- char shortName = 0);
- virtual ~UnitNumberOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- };
- class FloatNumberOptionHandler : public AbstractOptionHandler {
- private:
- double min_;
- double max_;
- public:
- FloatNumberOptionHandler(PrefPtr pref,
- const char* description = NO_DESCRIPTION,
- const std::string& defaultValue = NO_DEFAULT_VALUE,
- double min = -1, double max = -1,
- char shortName = 0);
- virtual ~FloatNumberOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class DefaultOptionHandler : public AbstractOptionHandler {
- private:
- std::string possibleValuesString_;
- bool allowEmpty_;
- public:
- DefaultOptionHandler(PrefPtr pref, const char* description = NO_DESCRIPTION,
- const std::string& defaultValue = NO_DEFAULT_VALUE,
- const std::string& possibleValuesString = A2STR::NIL,
- OptionHandler::ARG_TYPE argType = OptionHandler::REQ_ARG,
- char shortName = 0);
- virtual ~DefaultOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- void setAllowEmpty(bool allow);
- };
- class CumulativeOptionHandler : public AbstractOptionHandler {
- private:
- std::string delim_;
- std::string possibleValuesString_;
- public:
- CumulativeOptionHandler(
- PrefPtr pref, const char* description, const std::string& defaultValue,
- const std::string& delim,
- const std::string& possibleValuesString = A2STR::NIL,
- OptionHandler::ARG_TYPE argType = OptionHandler::REQ_ARG,
- char shortName = 0);
- virtual ~CumulativeOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class IndexOutOptionHandler : public AbstractOptionHandler {
- public:
- IndexOutOptionHandler(PrefPtr pref, const char* description,
- char shortName = 0);
- virtual ~IndexOutOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class ChecksumOptionHandler : public AbstractOptionHandler {
- public:
- ChecksumOptionHandler(PrefPtr pref, const char* description,
- char shortName = 0);
- ChecksumOptionHandler(PrefPtr pref, const char* description,
- std::vector<std::string> acceptableTypes,
- char shortName = 0);
- virtual ~ChecksumOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- private:
- // message digest type acceptable for this option. Empty means that
- // it accepts all supported types.
- std::vector<std::string> acceptableTypes_;
- };
- class ParameterOptionHandler : public AbstractOptionHandler {
- private:
- std::vector<std::string> validParamValues_;
- public:
- ParameterOptionHandler(PrefPtr pref, const char* description,
- const std::string& defaultValue,
- std::vector<std::string> validParamValues,
- char shortName = 0);
- virtual ~ParameterOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class HostPortOptionHandler : public AbstractOptionHandler {
- private:
- PrefPtr hostOptionName_;
- PrefPtr portOptionName_;
- public:
- HostPortOptionHandler(PrefPtr pref, const char* description,
- const std::string& defaultValue, PrefPtr hostOptionName,
- PrefPtr portOptionName, char shortName = 0);
- virtual ~HostPortOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- void setHostAndPort(Option& option, const std::string& hostname,
- uint16_t port) const;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class HttpProxyOptionHandler : public AbstractOptionHandler {
- private:
- PrefPtr proxyUserPref_;
- PrefPtr proxyPasswdPref_;
- public:
- HttpProxyOptionHandler(PrefPtr pref, const char* description,
- const std::string& defaultValue, char shortName = 0);
- virtual ~HttpProxyOptionHandler();
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class LocalFilePathOptionHandler : public AbstractOptionHandler {
- private:
- bool acceptStdin_;
- public:
- LocalFilePathOptionHandler(PrefPtr pref,
- const char* description = NO_DESCRIPTION,
- const std::string& defaultValue = NO_DEFAULT_VALUE,
- bool acceptStdin = false, char shortName = 0);
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class PrioritizePieceOptionHandler : public AbstractOptionHandler {
- public:
- PrioritizePieceOptionHandler(
- PrefPtr pref, const char* description = NO_DESCRIPTION,
- const std::string& defaultValue = NO_DEFAULT_VALUE, char shortName = 0);
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- class OptimizeConcurrentDownloadsOptionHandler : public AbstractOptionHandler {
- public:
- OptimizeConcurrentDownloadsOptionHandler(
- PrefPtr pref, const char* description = NO_DESCRIPTION,
- const std::string& defaultValue = NO_DEFAULT_VALUE, char shortName = 0);
- virtual void parseArg(Option& option,
- const std::string& optarg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- };
- // This class is used to deprecate option and optionally handle its
- // option value using replacing option.
- class DeprecatedOptionHandler : public OptionHandler {
- private:
- OptionHandler* depOptHandler_;
- const OptionHandler* repOptHandler_;
- bool stillWork_;
- std::string additionalMessage_;
- public:
- // depOptHandler is deprecated option and repOptHandler is replacing
- // new option. If there is no replacing option, specify nullptr. If
- // there is no replacing option, but the option still lives, give
- // true to stillWork. Set additional message to additionalMessage.
- DeprecatedOptionHandler(OptionHandler* depOptHandler,
- const OptionHandler* repOptHandler = nullptr,
- bool stillWork = false,
- std::string additionalMessage = "");
- virtual ~DeprecatedOptionHandler();
- virtual void parse(Option& option,
- const std::string& arg) const CXX11_OVERRIDE;
- virtual std::string createPossibleValuesString() const CXX11_OVERRIDE;
- virtual bool hasTag(uint32_t tag) const CXX11_OVERRIDE;
- virtual void addTag(uint32_t tag) CXX11_OVERRIDE;
- virtual std::string toTagString() const CXX11_OVERRIDE;
- virtual const char* getName() const CXX11_OVERRIDE;
- virtual const char* getDescription() const CXX11_OVERRIDE;
- virtual const std::string& getDefaultValue() const CXX11_OVERRIDE;
- virtual bool isHidden() const CXX11_OVERRIDE;
- virtual void hide() CXX11_OVERRIDE;
- virtual PrefPtr getPref() const CXX11_OVERRIDE;
- virtual ARG_TYPE getArgType() const CXX11_OVERRIDE;
- virtual char getShortName() const CXX11_OVERRIDE;
- virtual bool getEraseAfterParse() const CXX11_OVERRIDE;
- virtual void setEraseAfterParse(bool eraseAfterParse) CXX11_OVERRIDE;
- virtual bool getInitialOption() const CXX11_OVERRIDE;
- virtual void setInitialOption(bool f) CXX11_OVERRIDE;
- virtual bool getChangeOption() const CXX11_OVERRIDE;
- virtual void setChangeOption(bool f) CXX11_OVERRIDE;
- virtual bool getChangeOptionForReserved() const CXX11_OVERRIDE;
- virtual void setChangeOptionForReserved(bool f) CXX11_OVERRIDE;
- virtual bool getChangeGlobalOption() const CXX11_OVERRIDE;
- virtual void setChangeGlobalOption(bool f) CXX11_OVERRIDE;
- virtual bool getCumulative() const CXX11_OVERRIDE;
- virtual void setCumulative(bool f) CXX11_OVERRIDE;
- };
- } // namespace aria2
- #endif // D_OPTION_HANDLER_IMPL_H
|