S_New4/parameterManager.h

115 lines
2.6 KiB
C
Raw Permalink 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>
2019-09-01 08:40:36 +00:00
#include <string.h> // strlen
2019-07-08 18:17:11 +00:00
#include <sstream>
#include <sys/stat.h>
#include <fstream>
2019-09-01 08:40:36 +00:00
#include <vector>
2019-08-13 16:59:01 +00:00
#include <limits.h> // PATH_MAX
#include <unistd.h> // readlink()
#ifdef _WIN32
#include <windows.h>
#endif
2019-07-06 18:47:29 +00:00
enum Modus {
EXIT = -1,
DEFAULT_MODUS = 0,
DIRECT_LINK_MODUS = 1,
2019-08-13 16:59:01 +00:00
SEARCH_MODUS = 2,
INFO_MODUS = 3
2019-08-03 19:48:27 +00:00
2019-07-06 18:47:29 +00:00
};
struct Settings {
Settings() {}
Settings(std::string name) : name(name) {}
2019-09-04 09:05:11 +00:00
const std::string programName = "S_New4";
std::string name,
2019-07-08 18:17:11 +00:00
accountFilePath = "/tmp/a",
2019-08-17 14:03:28 +00:00
accountNumberPath= "/tmp/a_n",
2019-07-08 18:17:11 +00:00
cookieFilePath = "/tmp/S_New4_cookies",
serienListPath = "/tmp/SerienListe",
2019-08-17 14:03:28 +00:00
defaultsFilePath = "/tmp/defaults",
2019-07-07 16:30:37 +00:00
proxy_ip = "127.0.0.1",
languages = "GerDub,GerSub,Eng",
2019-08-21 18:26:22 +00:00
genaueHoster = "",
2019-09-07 16:53:54 +00:00
version = "2.7.2",
2019-08-17 16:01:36 +00:00
defaultFileVersion="1.3",
2019-08-03 19:48:27 +00:00
outputFilePath = "",
default_checkPath = "",
2019-08-13 16:59:01 +00:00
default_Searchmuster = "S%Staffel%E%Folge%";
2019-08-03 19:48:27 +00:00
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,
2019-08-03 19:48:27 +00:00
proxy_port = 9050,
default_maxDirs = 20;
2019-08-13 16:59:01 +00:00
char pathSymbol = '/';
2019-08-16 12:34:44 +00:00
unsigned maxThreads = 0;
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-08-17 14:03:28 +00:00
int loadDefaulOptions(Settings & settings);
std::vector<std::string> compare(std::string All_Options_with_komma_between, std::string input);
bool isNumber(std::string number);
2019-07-07 16:30:37 +00:00
int setPaths(Settings &settings);
2019-08-13 16:59:01 +00:00
2019-08-17 14:03:28 +00:00
bool fileExists (const std::string& name);
bool dirExists(std::string dir);
bool nothingExists(std::string path);
2019-08-31 18:35:11 +00:00
bool createDirIsOk(std::string path);
bool makePathIsOk(std::string path);
2019-08-13 16:59:01 +00:00
int unterOption_help(Settings &settings);
2019-07-07 16:30:37 +00:00
int unterOption_default(Settings * settings, int argc, char **argv);
void unterOption_default_help(std::string programName);
2019-07-07 16:30:37 +00:00
int unterOption_url(Settings * settings, int argc, char **argv);
void unterOption_url_help(std::string programName);
2019-07-07 16:30:37 +00:00
int unterOption_search(Settings * settings, int argc, char **argv);
void unterOption_search_help(std::string programName);
2019-08-13 16:59:01 +00:00
int unterOption_info(Settings * settings, int argc, char **argv);
void unterOption_info_help(std::string programName);
void unterOption_clean(Settings * settings, int argc, char **argv);
2019-07-06 18:47:29 +00:00
int setS5ProxytoSettings(Settings &settings, std::string optarg);
2019-07-06 18:47:29 +00:00
#endif // PARAMETERMANAGER_H