S_New4/parameterManager.h

66 lines
1.7 KiB
C
Raw Normal View History

2019-07-06 18:47:29 +00:00
#ifndef PARAMETERMANAGER_H
#define PARAMETERMANAGER_H
#include <iostream>
2019-07-07 16:30:37 +00:00
#include <getopt.h>
#include <string.h>
2019-07-08 18:17:11 +00:00
#include <sstream>
#include <sys/stat.h>
2019-07-06 18:47:29 +00:00
enum Modus {
EXIT = -1,
DEFAULT_MODUS = 0,
DIRECT_LINK_MODUS = 1,
Search_MODUS = 2
2019-07-06 18:47:29 +00:00
};
struct Settings {
Settings() {}
Settings(std::string name) : name(name) {}
2019-07-07 16:30:37 +00:00
std::string name,
2019-07-08 18:17:11 +00:00
accountFilePath = "/tmp/a",
accountNumberPath= "/tmp/b",
cookieFilePath = "/tmp/S_New4_cookies",
serienListPath = "/tmp/SerienListe",
2019-07-07 16:30:37 +00:00
proxy_ip = "127.0.0.1",
languages = "GerDub,GerSub,Eng",
genaueHoster = "",
2019-08-03 16:27:05 +00:00
version = "2.0.0",
2019-07-07 16:30:37 +00:00
outputFilePath;
2019-07-06 18:47:29 +00:00
Modus modus = Modus::DEFAULT_MODUS;
2019-07-08 18:17:11 +00:00
bool colorless = false,
debugMode = false,
search_IgnoreUpperLower = true,
search_wantUpdate = false;
2019-07-08 18:17:11 +00:00
int startEpisode = 1,
stopEpisode = 0,
startSeason = 1,
stopSeason = 0,
proxy_port = 9050;
2019-07-08 18:17:11 +00:00
2019-07-06 18:47:29 +00:00
};
int manageParameter(Settings &settings, int argc, char ** argv);
2019-07-07 16:30:37 +00:00
std::string getProgramName(char * argv0);
2019-07-08 18:17:11 +00:00
int compare(std::string All_Options_with_komma_between, std::string input);
void setPaths(Settings &settings, std::string executablePathTo);
bool dirExists(std::string dir);
2019-07-07 16:30:37 +00:00
int unterOption_help(Settings * settings, char *argv0);
2019-07-07 16:30:37 +00:00
int unterOption_default(Settings * settings, int argc, char **argv);
2019-07-07 16:30:37 +00:00
void unterOption_default_help(Settings * settings, char * argv0);
int unterOption_url(Settings * settings, int argc, char **argv);
2019-07-07 16:30:37 +00:00
void unterOption_url_help(Settings * settings, char *argv0);
int unterOption_search(Settings * settings, int argc, char **argv);
void unterOption_search_help(Settings * settings, char *argv0);
2019-07-06 18:47:29 +00:00
#endif // PARAMETERMANAGER_H