rss-cli/src/options.hpp

54 lines
1.4 KiB
C++
Raw Normal View History

2021-07-24 02:34:13 +00:00
///////////////////////////////////////////////////////////////////////////////
// Tyler Perkins
// 7-23-21
// options parsing
//
2021-07-24 03:24:20 +00:00
#pragma once
2021-07-24 02:34:13 +00:00
#include <string>
#include <iostream>
#include <getopt.h>
//cli options
2021-07-24 03:24:20 +00:00
constexpr char optarg_string[] = "u:tldemcpqgowbh";
2021-07-24 02:34:13 +00:00
static struct option long_options[] =
{
{"uri", required_argument, 0, 'u'},
{"title", no_argument, 0, 't'},
{"link", no_argument, 0, 'l'},
{"description", no_argument, 0, 'd'},
{"language", no_argument, 0, 'e'},
{"webmaster", no_argument, 0, 'm'},
{"copyright", no_argument, 0, 'c'},
{"pubdate", no_argument, 0, 'p'},
{"managingeditor", no_argument, 0, 'q'},
{"generator", no_argument, 0, 'g'},
{"docs", no_argument, 0, 'o'},
{"ttl", no_argument, 0, 'w'},
{"builddate", no_argument, 0, 'b'},
{"help", no_argument, 0, 'h'},
{0, 0, 0, 0},
};
struct option_flags {
unsigned int title : 1;
unsigned int link : 1;
unsigned int description : 1;
unsigned int language : 1;
unsigned int webmaster : 1;
unsigned int copyright : 1;
unsigned int pubdate : 1;
unsigned int managingeditor : 1;
unsigned int generator : 1;
unsigned int docs : 1;
unsigned int ttl : 1;
unsigned int builddate : 1;
std::string uri;
};
void help(char*);
option_flags* parse_options(int, char**);