mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
260 lines
7.1 KiB
C++
260 lines
7.1 KiB
C++
#ifndef SERVER_SETTINS_H
|
|
#define SERVER_SETTINS_H
|
|
|
|
#include "../Interface/SettingsReader.h"
|
|
#include "../Interface/Database.h"
|
|
#include "../Interface/Mutex.h"
|
|
|
|
namespace
|
|
{
|
|
const char* image_file_format_default = "default";
|
|
const char* image_file_format_vhd = "vhd";
|
|
const char* image_file_format_vhdz = "vhdz";
|
|
const char* image_file_format_cowraw = "cowraw";
|
|
|
|
const char* full_image_style_full = "full";
|
|
const char* full_image_style_synthetic = "synthetic";
|
|
|
|
const char* incr_image_style_to_full = "to-full";
|
|
const char* incr_image_style_to_last = "to-last";
|
|
}
|
|
|
|
struct SSettings
|
|
{
|
|
int clientid;
|
|
std::string backupfolder;
|
|
std::string backupfolder_uncompr;
|
|
std::string update_freq_incr;
|
|
std::string update_freq_full;
|
|
std::string update_freq_image_full;
|
|
std::string update_freq_image_incr;
|
|
int max_file_incr;
|
|
int min_file_incr;
|
|
int max_file_full;
|
|
int min_file_full;
|
|
int min_image_incr;
|
|
int max_image_incr;
|
|
int min_image_full;
|
|
int max_image_full;
|
|
bool no_images;
|
|
bool no_file_backups;
|
|
bool overwrite;
|
|
bool allow_overwrite;
|
|
bool autoshutdown;
|
|
int startup_backup_delay;
|
|
bool download_client;
|
|
bool autoupdate_clients;
|
|
int max_sim_backups;
|
|
int max_active_clients;
|
|
std::string backup_window_incr_file;
|
|
std::string backup_window_full_file;
|
|
std::string backup_window_incr_image;
|
|
std::string backup_window_full_image;
|
|
std::string computername;
|
|
std::string virtual_clients;
|
|
std::string exclude_files;
|
|
std::string include_files;
|
|
std::string default_dirs;
|
|
std::string cleanup_window;
|
|
bool allow_pause;
|
|
bool allow_starting_full_file_backups;
|
|
bool allow_starting_incr_file_backups;
|
|
bool allow_starting_full_image_backups;
|
|
bool allow_starting_incr_image_backups;
|
|
bool allow_config_paths;
|
|
bool allow_log_view;
|
|
bool allow_tray_exit;
|
|
std::string image_letters;
|
|
bool backup_database;
|
|
std::string internet_server;
|
|
bool client_set_settings;
|
|
unsigned short internet_server_port;
|
|
std::string internet_authkey;
|
|
bool internet_full_file_backups;
|
|
bool internet_image_backups;
|
|
bool internet_encrypt;
|
|
bool internet_compress;
|
|
int internet_compression_level;
|
|
std::string local_speed;
|
|
std::string internet_speed;
|
|
std::string global_internet_speed;
|
|
std::string global_local_speed;
|
|
bool internet_mode_enabled;
|
|
bool silent_update;
|
|
bool use_tmpfiles;
|
|
bool use_tmpfiles_images;
|
|
std::string tmpdir;
|
|
std::string local_full_file_transfer_mode;
|
|
std::string internet_full_file_transfer_mode;
|
|
std::string local_incr_file_transfer_mode;
|
|
std::string internet_incr_file_transfer_mode;
|
|
std::string local_image_transfer_mode;
|
|
std::string internet_image_transfer_mode;
|
|
size_t update_stats_cachesize;
|
|
std::string global_soft_fs_quota;
|
|
std::string client_quota;
|
|
bool end_to_end_file_backup_verification;
|
|
bool internet_calculate_filehashes_on_client;
|
|
bool use_incremental_symlinks;
|
|
std::string image_file_format;
|
|
bool internet_connect_always;
|
|
bool show_server_updates;
|
|
std::string server_url;
|
|
bool verify_using_client_hashes;
|
|
bool internet_readd_file_entries;
|
|
std::string client_access_key;
|
|
int max_running_jobs_per_client;
|
|
bool background_backups;
|
|
bool create_linked_user_views;
|
|
std::string local_incr_image_style;
|
|
std::string local_full_image_style;
|
|
std::string internet_incr_image_style;
|
|
std::string internet_full_image_style;
|
|
float backup_ok_mod_file;
|
|
float backup_ok_mod_image;
|
|
};
|
|
|
|
struct SLDAPSettings
|
|
{
|
|
SLDAPSettings()
|
|
: server_port(0)
|
|
{
|
|
|
|
}
|
|
|
|
bool login_enabled;
|
|
std::string server_name;
|
|
int server_port;
|
|
std::string username_prefix;
|
|
std::string username_suffix;
|
|
std::string group_class_query;
|
|
std::string group_key_name;
|
|
std::string class_key_name;
|
|
std::map<std::string, std::string> group_rights_map;
|
|
std::map<std::string, std::string> class_rights_map;
|
|
};
|
|
|
|
struct STimeSpan
|
|
{
|
|
STimeSpan(void): dayofweek(-1) {}
|
|
STimeSpan(int dayofweek, float start_hour, float stop_hour):dayofweek(dayofweek), start_hour(start_hour), stop_hour(stop_hour) {}
|
|
STimeSpan(float start_hour, float stop_hour):dayofweek(0), start_hour(start_hour), stop_hour(stop_hour) {}
|
|
|
|
int dayofweek;
|
|
float start_hour;
|
|
float stop_hour;
|
|
|
|
float duration()
|
|
{
|
|
if(dayofweek==-1)
|
|
{
|
|
return 24.f;
|
|
}
|
|
else
|
|
{
|
|
return stop_hour-start_hour;
|
|
}
|
|
}
|
|
};
|
|
|
|
class ServerSettings;
|
|
|
|
struct SSettingsCacheItem
|
|
{
|
|
SSettings* settings;
|
|
size_t refcount;
|
|
bool needs_update;
|
|
};
|
|
|
|
class ServerSettings
|
|
{
|
|
public:
|
|
ServerSettings(IDatabase *db, int pClientid=-1);
|
|
~ServerSettings(void);
|
|
|
|
void update(bool force_update);
|
|
|
|
void doUpdate(void);
|
|
|
|
SSettings *getSettings(bool *was_updated=NULL);
|
|
|
|
static void init_mutex(void);
|
|
static void destroy_mutex(void);
|
|
static void clear_cache();
|
|
static void updateAll(void);
|
|
static std::string generateRandomAuthKey(size_t len=10);
|
|
static std::string generateRandomBinaryKey(void);
|
|
|
|
std::vector<STimeSpan> getBackupWindowIncrFile(void);
|
|
std::vector<STimeSpan> getBackupWindowFullFile(void);
|
|
std::vector<STimeSpan> getBackupWindowIncrImage(void);
|
|
std::vector<STimeSpan> getBackupWindowFullImage(void);
|
|
|
|
std::vector<STimeSpan> getCleanupWindow(void);
|
|
std::vector<std::string> getBackupVolumes(const std::string& all_volumes, const std::string& all_nonusb_volumes);
|
|
|
|
std::string getImageFileFormat();
|
|
|
|
int getUpdateFreqImageIncr();
|
|
int getUpdateFreqFileIncr();
|
|
int getUpdateFreqImageFull();
|
|
int getUpdateFreqFileFull();
|
|
|
|
int getLocalSpeed();
|
|
int getGlobalLocalSpeed();
|
|
int getInternetSpeed();
|
|
int getGlobalInternetSpeed();
|
|
|
|
static bool isInTimeSpan(std::vector<STimeSpan> bw);
|
|
|
|
SLDAPSettings getLDAPSettings();
|
|
|
|
std::string ldapMapToString(const std::map<std::string, std::string>& ldap_map);
|
|
|
|
private:
|
|
void operator=(const ServerSettings& other){};
|
|
ServerSettings(const ServerSettings& other){};
|
|
|
|
std::string getImageFileFormatInt(const std::string& image_file_format);
|
|
|
|
std::vector<STimeSpan> getWindow(std::string window);
|
|
|
|
std::vector<STimeSpan> parseTimeSpan(std::string time_span);
|
|
|
|
std::vector<std::pair<double, STimeSpan > > parseTimeSpanValue(std::string time_span_value);
|
|
|
|
double currentTimeSpanValue(std::string time_span_value);
|
|
|
|
|
|
float parseTimeDet(std::string t);
|
|
STimeSpan parseTime(std::string t);
|
|
int parseDayOfWeek(std::string dow);
|
|
void readSettingsDefault(void);
|
|
void readSettingsClient(void);
|
|
void readBoolClientSetting(const std::string &name, bool *output);
|
|
void readStringClientSetting(const std::string &name, std::string *output);
|
|
void readIntClientSetting(const std::string &name, int *output);
|
|
void readSizeClientSetting(const std::string &name, size_t *output);
|
|
void createSettingsReaders();
|
|
void updateInternal(bool* was_updated);
|
|
std::map<std::string, std::string> parseLdapMap(const std::string& data);
|
|
|
|
SSettingsCacheItem* settings_cache;
|
|
SSettings* local_settings;
|
|
|
|
ISettingsReader *settings_default;
|
|
ISettingsReader *settings_client;
|
|
IDatabase* db;
|
|
|
|
volatile bool do_update;
|
|
|
|
int clientid;
|
|
|
|
static std::map<ServerSettings*, bool> g_settings;
|
|
static std::map<int, SSettingsCacheItem> g_settings_cache;
|
|
static IMutex *g_mutex;
|
|
};
|
|
|
|
|
|
#endif //SERVER_SETTINS_H
|