remwharead/src/parse_options.hpp

53 lines
1.5 KiB
C++

/* This file is part of remwharead.
* Copyright © 2019 tastytea <tastytea@tastytea.de>
*
* 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, version 3.
*
* 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 <http://www.gnu.org/licenses/>.
*/
#ifndef REMWHAREAD_PARSE_OPTIONS_HPP
#define REMWHAREAD_PARSE_OPTIONS_HPP
#include <string>
#include <vector>
#include <array>
#include <chrono>
#include <cstdint>
#include "types.hpp"
#include "time.hpp"
using std::string;
using std::vector;
using std::array;
using std::chrono::system_clock;
using time_point = system_clock::time_point;
using std::uint8_t;
typedef struct options
{
vector<string> tags;
export_format format = export_format::undefined;
string file;
array<time_point, 2> span = {{ time_point(), system_clock::now() }};
string uri;
string search_tags;
uint8_t status_code = 0;
options();
explicit options(const uint8_t &status);
} options;
// Parse command-line options.
const options parse_options(const int argc, const char *argv[]);
#endif // REMWHAREAD_PARSE_OPTIONS_HPP