/************************************************************************* ** CLCommandLine.hpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** ** Copyright (C) 2005-2024 Martin Gieseking ** ** ** ** 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 3 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, see . ** *************************************************************************/ #ifndef CL_COMMANDLINE_HPP #define CL_COMMANDLINE_HPP #include #include #include #include #include #include "CLOption.hpp" #include "MessageException.hpp" namespace CL { class CommandLine { public: CommandLine (const char *summary, const char *usage, const char *copyright); virtual ~CommandLine () =default; void parse (int argc, char **argv); void help (std::ostream &os, int mode=0) const; void addFilename (const std::string &fname) {_files.emplace_back(fname);} bool singleDashGiven () const {return _singleDashParsed;} const std::vector& filenames () const {return _files;} protected: using OptSectPair = std::pair; void parseShortOption (std::istringstream &is, int argc, char **argv, int &argn); void parseLongOption (std::istream &is); virtual std::vector& options () const =0; virtual const char* section (size_t n) const {return nullptr;} Option* lookupOption (char optchar) const; std::vector lookupOption (const std::string &optname) const; private: const char *_summary; const char *_usage; const char *_copyright; bool _singleDashParsed=false; ///< true if a single '-' w/o a following char was parsed std::vector _files; }; struct CommandLineException : public MessageException { explicit CommandLineException (const std::string &msg) : MessageException(msg) {} }; } // namespace CL #endif