-#include <unistd.h>
+#include "stgconfig.h"
+
+#include "stg/plugin_creator.h"
+#include "stg/common.h"
-#include <csignal>
#include <algorithm>
+#include <csignal>
-#include "stg/tariffs.h"
-#include "stg/admins.h"
-#include "stg/users.h"
-#include "stg/plugin_creator.h"
-#include "stgconfig.h"
+#include <unistd.h>
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
isRunning(false),
logger(GetPluginLogger(GetStgLogger(), "conf_sg")),
config(logger),
- users(NULL),
- admins(NULL),
- tariffs(NULL),
- store(NULL),
- settings(),
- stgSettings(NULL)
+ settings()
{
}
//-----------------------------------------------------------------------------
nonstop = true;
config.SetPort(stgConfigSettings.GetPort());
-config.SetAdmins(admins);
-config.SetUsers(users);
-config.SetTariffs(tariffs);
-config.SetStgSettings(stgSettings);
-config.SetStore(store);
if (config.Prepare())
{
#ifndef STGCONFIG_H
#define STGCONFIG_H
-#include <pthread.h>
-
-#include <string>
+#include "configproto.h"
#include "stg/plugin.h"
-#include "stg/store.h"
#include "stg/logger.h"
-#include "configproto.h"
+
+#include <string>
+
+#include <pthread.h>
class STG_CONFIG_SETTINGS {
public:
STG_CONFIG();
virtual ~STG_CONFIG(){}
- void SetUsers(USERS * u) { users = u; }
- void SetTariffs(TARIFFS * t) { tariffs = t; }
- void SetAdmins(ADMINS * a) { admins = a; }
- void SetStore(STORE * s) { store = s; }
- void SetStgSettings(const SETTINGS * s) { stgSettings = s; }
+ void SetUsers(USERS * users) { config.SetUsers(users); }
+ void SetTariffs(TARIFFS * tariffs) { config.SetTariffs(tariffs); }
+ void SetAdmins(ADMINS * admins) { config.SetAdmins(admins); }
+ void SetStore(STORE * store) { config.SetStore(store); }
+ void SetStgSettings(const SETTINGS * settings) { config.SetStgSettings(settings); }
void SetSettings(const MODULE_SETTINGS & s) { settings = s; }
int ParseSettings();
bool isRunning;
PLUGIN_LOGGER logger;
CONFIGPROTO config;
- USERS * users;
- ADMINS * admins;
- TARIFFS * tariffs;
- STORE * store;
MODULE_SETTINGS settings;
- const SETTINGS * stgSettings;
};
//-----------------------------------------------------------------------------