X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ab222ac8a6eb5d308267f54d82aac9fabe93d877..63a2f64ceecf37a319d20c4125f5f80483e013e8:/projects/stargazer/plugins/configuration/sgconfig/parser.h diff --git a/projects/stargazer/plugins/configuration/sgconfig/parser.h b/projects/stargazer/plugins/configuration/sgconfig/parser.h index 511a073e..24200ebd 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/parser.h +++ b/projects/stargazer/plugins/configuration/sgconfig/parser.h @@ -1,45 +1,61 @@ - /* - $Revision: 1.20 $ - $Date: 2010/10/04 20:26:10 $ - $Author: faust $ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* + * Author : Boris Mikhailenko */ #ifndef PARSER_H #define PARSER_H -#include +#include "stg/message.h" +#include "stg/tariff_conf.h" +#include "stg/resetable.h" +#include "stg/const.h" + #include #include -#include "resetable.h" -#include "stg_const.h" -#include "store.h" -#include "admins.h" -#include "admin.h" -#include "users.h" -#include "stg_message.h" - class TARIFFS; class SETTINGS; +class STORE; +class ADMINS; +class ADMIN; +class USERS; +class USER; +class USER_STAT_RES; +class USER_CONF_RES; //----------------------------------------------------------------------------- class BASE_PARSER { public: BASE_PARSER() - : admins(NULL), + : strError(), + admins(NULL), users(NULL), tariffs(NULL), store(NULL), settings(NULL), currAdmin(NULL), - depth(0), - answerList(NULL) - { } + depth(0) + {} virtual ~BASE_PARSER() {} virtual int ParseStart(void *data, const char *el, const char **attr) = 0; virtual int ParseEnd(void *data, const char *el) = 0; - virtual void CreateAnswer() = 0; - virtual void SetAnswerList(std::list * ansList) { answerList = ansList; } + virtual void Reset() { answer.clear(); depth = 0; } virtual void SetUsers(USERS * u) { users = u; } virtual void SetAdmins(ADMINS * a) { admins = a; } @@ -47,10 +63,14 @@ public: virtual void SetStore(STORE * s) { store = s; } virtual void SetStgSettings(const SETTINGS * s) { settings = s; } - virtual void SetCurrAdmin(ADMIN & cua) { currAdmin = &cua; } - virtual std::string & GetStrError() { return strError; } - virtual void Reset() { answerList->clear(); depth = 0; } + void SetCurrAdmin(ADMIN & cua) { currAdmin = &cua; } + const std::string & GetStrError() const { return strError; } + const std::string & GetAnswer() const { return answer; } + protected: + BASE_PARSER(const BASE_PARSER & rvalue); + BASE_PARSER & operator=(const BASE_PARSER & rvalue); + std::string strError; ADMINS * admins; USERS * users; @@ -59,7 +79,7 @@ protected: const SETTINGS * settings; ADMIN * currAdmin; int depth; - std::list * answerList; + std::string answer; }; //----------------------------------------------------------------------------- class PARSER_GET_ADMINS: public BASE_PARSER { @@ -71,7 +91,7 @@ public: //----------------------------------------------------------------------------- class PARSER_ADD_ADMIN: public BASE_PARSER { public: - PARSER_ADD_ADMIN() : BASE_PARSER() {} + PARSER_ADD_ADMIN() : BASE_PARSER(), adminToAdd() {} int ParseStart(void *data, const char *el, const char **attr); int ParseEnd(void *data, const char *el); void CreateAnswer(); @@ -81,7 +101,7 @@ private: //----------------------------------------------------------------------------- class PARSER_DEL_ADMIN: public BASE_PARSER { public: - PARSER_DEL_ADMIN() : BASE_PARSER() {} + PARSER_DEL_ADMIN() : BASE_PARSER(), adminToDel() {} int ParseStart(void *data, const char *el, const char **attr); int ParseEnd(void *data, const char *el); void CreateAnswer(); @@ -92,7 +112,7 @@ private: //----------------------------------------------------------------------------- class PARSER_CHG_ADMIN: public BASE_PARSER { public: - PARSER_CHG_ADMIN() : BASE_PARSER() {} + PARSER_CHG_ADMIN() : BASE_PARSER(), login(), password(), privAsString() {} int ParseStart(void *data, const char *el, const char **attr); int ParseEnd(void *data, const char *el); void CreateAnswer(); @@ -111,8 +131,8 @@ public: //----------------------------------------------------------------------------- class PARSER_GET_USER: public BASE_PARSER { public: - PARSER_GET_USER(); - ~PARSER_GET_USER(){}; + PARSER_GET_USER() : BASE_PARSER(), login() {} + ~PARSER_GET_USER() {} int ParseStart(void *data, const char *el, const char **attr); int ParseEnd(void *data, const char *el); void CreateAnswer(); @@ -122,7 +142,7 @@ private: //----------------------------------------------------------------------------- class PARSER_GET_USERS: public BASE_PARSER { public: - PARSER_GET_USERS(); + PARSER_GET_USERS() : BASE_PARSER(), lastUserUpdateTime(0), lastUpdateFound(false) {} int ParseStart(void *data, const char *el, const char **attr); int ParseEnd(void *data, const char *el); void CreateAnswer(); @@ -140,7 +160,7 @@ public: //----------------------------------------------------------------------------- class PARSER_ADD_TARIFF: public BASE_PARSER { public: - PARSER_ADD_TARIFF() : BASE_PARSER() {} + PARSER_ADD_TARIFF() : BASE_PARSER(), tariffToAdd() {} int ParseStart(void *data, const char *el, const char **attr); int ParseEnd(void *data, const char *el); void CreateAnswer(); @@ -150,7 +170,7 @@ private: //----------------------------------------------------------------------------- class PARSER_DEL_TARIFF: public BASE_PARSER { public: - PARSER_DEL_TARIFF() : BASE_PARSER() {} + PARSER_DEL_TARIFF() : BASE_PARSER(), tariffToDel() {} int ParseStart(void *data, const char *el, const char **attr); int ParseEnd(void *data, const char *el); void CreateAnswer(); @@ -160,7 +180,7 @@ private: //----------------------------------------------------------------------------- class PARSER_CHG_TARIFF: public BASE_PARSER { public: - PARSER_CHG_TARIFF() : BASE_PARSER() {} + PARSER_CHG_TARIFF() : BASE_PARSER(), td() {} int ParseStart(void *data, const char *el, const char **attr); int ParseEnd(void *data, const char *el); void CreateAnswer(); @@ -175,7 +195,7 @@ private: //-----------------------------------------------------------------------------/ class PARSER_ADD_USER: public BASE_PARSER { public: - PARSER_ADD_USER(); + PARSER_ADD_USER() : BASE_PARSER(), login() {} ~PARSER_ADD_USER() {} int ParseStart(void *data, const char *el, const char **attr); int ParseEnd(void *data, const char *el); @@ -195,6 +215,9 @@ public: void CreateAnswer(); void Reset(); private: + PARSER_CHG_USER(const PARSER_CHG_USER & rvalue); + PARSER_CHG_USER & operator=(const PARSER_CHG_USER & rvalue); + std::string EncChar2String(const char *); int AplayChanges(); @@ -216,6 +239,9 @@ public: void CreateAnswer(); private: + PARSER_DEL_USER(const PARSER_DEL_USER & rvalue); + PARSER_DEL_USER & operator=(const PARSER_DEL_USER & rvalue); + int res; USER * u; }; @@ -232,11 +258,14 @@ private: //----------------------------------------------------------------------------- class PARSER_SEND_MESSAGE: public BASE_PARSER { public: - PARSER_SEND_MESSAGE() : BASE_PARSER(), result(0), u(NULL) {} + PARSER_SEND_MESSAGE() : BASE_PARSER(), logins(), result(0), msg(), u(NULL) {} int ParseStart(void *data, const char *el, const char **attr); int ParseEnd(void *data, const char *el); void CreateAnswer(); private: + PARSER_SEND_MESSAGE(const PARSER_SEND_MESSAGE & rvalue); + PARSER_SEND_MESSAGE & operator=(const PARSER_SEND_MESSAGE & rvalue); + int ParseLogins(const char * logins); enum {res_ok, res_params_error, res_unknown};