#include "stg/user_conf.h"
#include "stg/user_stat.h"
+#include "stg/common.h"
#include "stg/resetable.h"
#include <string>
class USER;
class TARIFFS;
class ADMIN;
+class STORE;
namespace STG
{
class GET_USERS: public BASE_PARSER
{
public:
+ class FACTORY : public BASE_PARSER::FACTORY
+ {
+ public:
+ FACTORY(USERS & users) : m_users(users) {}
+ virtual BASE_PARSER * create(const ADMIN & admin) { return new GET_USERS(admin, m_users); }
+ static void Register(REGISTRY & registry, USERS & users)
+ { registry[ToLower(tag)] = new FACTORY(users); }
+ private:
+ USERS & m_users;
+ };
+
+ static const char * tag;
+
GET_USERS(const ADMIN & admin, USERS & users)
- : BASE_PARSER(admin, "GetUsers"), m_users(users),
+ : BASE_PARSER(admin, tag), m_users(users),
m_lastUserUpdateTime(0) {}
int Start(void * data, const char * el, const char ** attr);
class GET_USER: public BASE_PARSER
{
public:
+ class FACTORY : public BASE_PARSER::FACTORY
+ {
+ public:
+ FACTORY(const USERS & users) : m_users(users) {}
+ virtual BASE_PARSER * create(const ADMIN & admin) { return new GET_USER(admin, m_users); }
+ static void Register(REGISTRY & registry, const USERS & users)
+ { registry[ToLower(tag)] = new FACTORY(users); }
+ private:
+ const USERS & m_users;
+ };
+
+ static const char * tag;
+
GET_USER(const ADMIN & admin, const USERS & users)
- : BASE_PARSER(admin, "GetUser"), m_users(users) {}
+ : BASE_PARSER(admin, tag), m_users(users) {}
int Start(void * data, const char * el, const char ** attr);
private:
class ADD_USER: public BASE_PARSER
{
public:
+ class FACTORY : public BASE_PARSER::FACTORY
+ {
+ public:
+ FACTORY(USERS & users) : m_users(users) {}
+ virtual BASE_PARSER * create(const ADMIN & admin) { return new ADD_USER(admin, m_users); }
+ static void Register(REGISTRY & registry, USERS & users)
+ { registry[ToLower(tag)] = new FACTORY(users); }
+ private:
+ USERS & m_users;
+ };
+
+ static const char * tag;
+
ADD_USER(const ADMIN & admin, USERS & users)
- : BASE_PARSER(admin, "AddUser"), m_users(users) {}
+ : BASE_PARSER(admin, tag), m_users(users) {}
int Start(void * data, const char * el, const char ** attr);
- int End(void * data, const char * el);
private:
USERS & m_users;
class CHG_USER: public BASE_PARSER
{
public:
- CHG_USER(const ADMIN & admin, USERS & users, const TARIFFS & tariffs)
- : BASE_PARSER(admin, "SetUser"),
+ class FACTORY : public BASE_PARSER::FACTORY
+ {
+ public:
+ FACTORY(USERS & users, STORE & store, const TARIFFS & tariffs)
+ : m_users(users), m_store(store), m_tariffs(tariffs)
+ {}
+ virtual BASE_PARSER * create(const ADMIN & admin) { return new CHG_USER(admin, m_users, m_store, m_tariffs); }
+ static void Register(REGISTRY & registry, USERS & users, STORE & store, const TARIFFS & tariffs)
+ { registry[ToLower(tag)] = new FACTORY(users, store, tariffs); }
+ private:
+ USERS & m_users;
+ STORE & m_store;
+ const TARIFFS & m_tariffs;
+ };
+
+ static const char * tag;
+
+ CHG_USER(const ADMIN & admin, USERS & users,
+ STORE & store, const TARIFFS & tariffs)
+ : BASE_PARSER(admin, tag),
m_users(users),
+ m_store(store),
m_tariffs(tariffs),
- m_cashMustBeAdded(false),
- m_res(0) {}
+ m_cashMustBeAdded(false) {}
int Start(void * data, const char * el, const char ** attr);
- int End(void * data, const char * el);
private:
USERS & m_users;
+ STORE & m_store;
const TARIFFS & m_tariffs;
USER_STAT_RES m_usr;
USER_CONF_RES m_ucr;
std::string m_cashMsg;
std::string m_login;
bool m_cashMustBeAdded;
- int m_res;
int ApplyChanges();
void CreateAnswer();
class DEL_USER: public BASE_PARSER
{
public:
+ class FACTORY : public BASE_PARSER::FACTORY
+ {
+ public:
+ FACTORY(USERS & users) : m_users(users) {}
+ virtual BASE_PARSER * create(const ADMIN & admin) { return new DEL_USER(admin, m_users); }
+ static void Register(REGISTRY & registry, USERS & users)
+ { registry[ToLower(tag)] = new FACTORY(users); }
+ private:
+ USERS & m_users;
+ };
+
+ static const char * tag;
+
DEL_USER(const ADMIN & admin, USERS & users)
- : BASE_PARSER(admin, "DelUser"), m_users(users), res(0), u(NULL) {}
+ : BASE_PARSER(admin, tag), m_users(users), res(0), u(NULL) {}
int Start(void * data, const char * el, const char ** attr);
int End(void * data, const char * el);
class CHECK_USER: public BASE_PARSER
{
public:
+ class FACTORY : public BASE_PARSER::FACTORY
+ {
+ public:
+ FACTORY(const USERS & users) : m_users(users) {}
+ virtual BASE_PARSER * create(const ADMIN & admin) { return new CHECK_USER(admin, m_users); }
+ static void Register(REGISTRY & registry, const USERS & users)
+ { registry[ToLower(tag)] = new FACTORY(users); }
+ private:
+ const USERS & m_users;
+ };
+
+ static const char * tag;
+
CHECK_USER(const ADMIN & admin, const USERS & users)
- : BASE_PARSER(admin, "CheckUser"), m_users(users) {}
+ : BASE_PARSER(admin, tag), m_users(users) {}
int Start(void * data, const char * el, const char ** attr);
int End(void * data, const char * el);
const USERS & m_users;
void CreateAnswer(const char * error);
+ void CreateAnswer() {} // dummy
};
-}
-}
+} // namespace PARSER
+} // namespace STG
#endif