]> git.stg.codes - stg.git/commitdiff
Moved AUTH_BY parser from global scope.
authorMaxim Mamontov <faust.madf@gmail.com>
Fri, 20 Sep 2013 21:17:50 +0000 (00:17 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Fri, 20 Sep 2013 21:17:50 +0000 (00:17 +0300)
21 files changed:
projects/sgconf/common_sg.cpp
stglibs/srvconf.lib/include/stg/parser.h
stglibs/srvconf.lib/include/stg/parser_auth_by.h [deleted file]
stglibs/srvconf.lib/include/stg/parser_check_user.h
stglibs/srvconf.lib/include/stg/parser_chg_user.h
stglibs/srvconf.lib/include/stg/parser_get_user.h
stglibs/srvconf.lib/include/stg/parser_get_users.h
stglibs/srvconf.lib/include/stg/parser_send_message.h
stglibs/srvconf.lib/include/stg/parser_server_info.h
stglibs/srvconf.lib/include/stg/servconf.h
stglibs/srvconf.lib/include/stg/servconf_types.h
stglibs/srvconf.lib/netunit.cpp
stglibs/srvconf.lib/parser_auth_by.cpp
stglibs/srvconf.lib/parser_auth_by.h [new file with mode: 0644]
stglibs/srvconf.lib/parser_check_user.cpp
stglibs/srvconf.lib/parser_chg_user.cpp
stglibs/srvconf.lib/parser_get_user.cpp
stglibs/srvconf.lib/parser_get_users.cpp
stglibs/srvconf.lib/parser_send_message.cpp
stglibs/srvconf.lib/parser_server_info.cpp
stglibs/srvconf.lib/servconf.cpp

index 1db7c9c472031d7b710cce5db7367aea50433506..f36886498b76f295c49a47db64c59baeb581d1fa 100644 (file)
@@ -43,6 +43,8 @@
 #include <langinfo.h>
 #include <iconv.h>
 
+using namespace STG;
+
 const int usageConf = 0;
 const int usageInfo = 1;
 
@@ -302,7 +304,7 @@ data->reason = reason;
 }
 //-----------------------------------------------------------------------------
 void RecvAuthByData(bool result, const std::string & reason,
-                    const PARSER_AUTH_BY::INFO & list, void * d)
+                    const AUTH_BY::INFO & list, void * d)
 {
 ResultData * data = static_cast<ResultData *>(d);
 data->result = result;
index f8c3af0c7a301a36ef42ee45682115937aadc7a0..8d695a3a7049c2b9be2935f336e6159342656ffb 100644 (file)
@@ -22,6 +22,9 @@
 #ifndef __STG_STGLIBS_SRVCONF_PARSER_H__
 #define __STG_STGLIBS_SRVCONF_PARSER_H__
 
+namespace STG
+{
+
 class PARSER
 {
 public:
@@ -30,4 +33,6 @@ public:
     virtual void ParseEnd(const char *el) = 0;
 };
 
+} // namespace STG
+
 #endif
diff --git a/stglibs/srvconf.lib/include/stg/parser_auth_by.h b/stglibs/srvconf.lib/include/stg/parser_auth_by.h
deleted file mode 100644 (file)
index 00c997d..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- *    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 : Maxim Mamontov <faust@stargazer.dp.ua>
- */
-
-#ifndef __STG_STGLIBS_SRVCONF_PARSER_AUTH_BY_H__
-#define __STG_STGLIBS_SRVCONF_PARSER_AUTH_BY_H__
-
-#include "parser.h"
-
-#include <vector>
-#include <string>
-
-class PARSER_AUTH_BY: public PARSER
-{
-public:
-    typedef std::vector<std::string> INFO;
-    typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
-
-    PARSER_AUTH_BY();
-    int  ParseStart(const char *el, const char **attr);
-    void ParseEnd(const char *el);
-    void SetCallback(CALLBACK f, void * data);
-private:
-    CALLBACK callback;
-    void * data;
-    int depth;
-    bool parsingAnswer;
-    INFO info;
-    std::string error;
-};
-
-#endif
index e0bea221236ecb921760050b87f59b6592f5ed2f..4e1f498c629e9080d150874d4d1c739e44663cbd 100644 (file)
@@ -26,6 +26,9 @@
 
 #include <string>
 
+namespace STG
+{
+
 class PARSER_CHECK_USER: public PARSER
 {
 public:
@@ -43,4 +46,6 @@ private:
     void ParseAnswer(const char * el, const char ** attr);
 };
 
+} // namespace STG
+
 #endif
index cc6e9f18bd466445d3b87abbbd947a1fd21b5d64..75431ae10be9bfaa5725f7db3e0db90320ca17ce 100644 (file)
@@ -26,6 +26,9 @@
 
 #include <string>
 
+namespace STG
+{
+
 class PARSER_CHG_USER: public PARSER
 {
 public:
@@ -43,4 +46,6 @@ private:
     void ParseAnswer(const char * el, const char ** attr);
 };
 
+} // namespace STG
+
 #endif
index 7f6faaad062749a1a67bde20571ace6f6769f5d9..a6fadeb887aadd8b3ba8c95c1111ae61acc6c118 100644 (file)
@@ -33,6 +33,9 @@
 
 #include <ctime>
 
+namespace STG
+{
+
 class PARSER_GET_USER: public PARSER
 {
 public:
@@ -92,4 +95,6 @@ private:
     void ParseUserParams(const char *el, const char **attr);
 };
 
+} // namespace STG
+
 #endif
index 35fcd126a607cac96913042afb2997ad636667d4..a8b8ac855ad6d35335705eb0b363bfc716c80193 100644 (file)
@@ -29,6 +29,9 @@
 
 #include <vector>
 
+namespace STG
+{
+
 class PARSER_GET_USERS: public PARSER
 {
 public:
@@ -54,4 +57,6 @@ private:
     static void UserCallback(bool result, const std::string& reason, const PARSER_GET_USER::INFO & info, void * data);
 };
 
+} // namespace STG
+
 #endif
index 9b3ca5efe2ffb8824b8215373a8e05ad3cf62bbe..912d507e92ca2e553ce3de249e3250ecf52b91ac 100644 (file)
@@ -26,6 +26,9 @@
 
 #include <string>
 
+namespace STG
+{
+
 class PARSER_SEND_MESSAGE: public PARSER
 {
 public:
@@ -43,4 +46,6 @@ private:
     void ParseAnswer(const char * el, const char ** attr);
 };
 
+} // namespace STG
+
 #endif
index ff31ae715ce01a30fe2d13cddeeb468a6b9e0560..cb57bffdb0565bae023097ba746fdbb3e76fbbbd 100644 (file)
@@ -29,6 +29,9 @@
 
 #include <string>
 
+namespace STG
+{
+
 class PARSER_SERVER_INFO: public PARSER
 {
 public:
@@ -58,4 +61,6 @@ private:
     std::string error;
 };
 
+}
+
 #endif
index 32ee1cd4b9e6eb00e613f9eb2dfc38943cfb895f..e55cff2ce8f2adba3793bab9c30ab32ff09ad7c8 100644 (file)
  $Author: faust $
  */
 
-#ifndef SERVCONF_H
-#define SERVCONF_H
+#ifndef __STG_STGLIBS_SERVCONF_H__
+#define __STG_STGLIBS_SERVCONF_H__
 
-#include "stg/parser_auth_by.h"
 #include "stg/parser_server_info.h"
 #include "stg/parser_check_user.h"
 #include "stg/parser_get_user.h"
 #include "stg/parser_chg_user.h"
 #include "stg/parser_send_message.h"
 
+#include "stg/servconf_types.h"
+
 #include "stg/os_int.h"
 
 #include <string>
 
+namespace STG
+{
+
 class SERVCONF
 {
 public:
@@ -49,7 +53,7 @@ public:
     int GetUsers(PARSER_GET_USERS::CALLBACK f, void * data);
     int GetUser(const std::string & login, PARSER_GET_USER::CALLBACK f, void * data);
     int ChgUser(const std::string & request, PARSER_CHG_USER::CALLBACK f, void * data);
-    int AuthBy(const std::string & login, PARSER_AUTH_BY::CALLBACK f, void * data);
+    int AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data);
     int SendMessage(const std::string & request, PARSER_SEND_MESSAGE::CALLBACK f, void * data);
     int ServerInfo(PARSER_SERVER_INFO::CALLBACK f, void * data);
     int CheckUser(const std::string & login, const std::string & password, PARSER_CHECK_USER::CALLBACK f, void * data);
@@ -60,6 +64,7 @@ private:
     class IMPL;
     IMPL * pImpl;
 };
-//-----------------------------------------------------------------------------
 
-#endif  /* _SERVCONF_H_ */
+} // namespace STG
+
+#endif
index d7fb847848ae0d1d44389430783006f630cd06d1..7ffc5811f5d1e91ad8c6653b96b453f2c79363b2 100644 (file)
@@ -21,6 +21,9 @@
 #ifndef __STG_STGLIBS_SRVCONF_TYPES_H__
 #define __STG_STGLIBS_SRVCONF_TYPES_H__
 
+#include <string>
+#include <vector>
+
 #define  STG_HEADER     "SG04"
 #define  OK_HEADER      "OKHD"
 #define  ERR_HEADER     "ERHD"
@@ -31,6 +34,9 @@
 
 #define  ENC_MSG_LEN    (8)
 
+namespace STG
+{
+
 enum status
 {
 st_ok = 0,
@@ -55,4 +61,13 @@ confLoginCipher,
 confData
 };
 
+namespace AUTH_BY
+{
+
+typedef std::vector<std::string> INFO;
+typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
+
+} // namespace AUTH_BY
+} // namespace STG
+
 #endif
index 73f0f485dce7b2138cbc269f97734dbb8dd6838f..aabb778096ef099b5c774179264ffa0e248fd6c3 100644 (file)
@@ -44,6 +44,8 @@
 #include <sys/socket.h>
 #include <netinet/in.h>
 
+using namespace STG;
+
 namespace
 {
 
index 06981aae9a6787023bf66a9e8f91edd5a15e26a3..b3904a1b8747a0e7dd7b3068a21c5b67773d862d 100644 (file)
  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
  */
 
-#include "stg/parser_auth_by.h"
+#include "parser_auth_by.h"
 
 #include <cstddef>
 
 #include <strings.h> // strcasecmp
 
-PARSER_AUTH_BY::PARSER_AUTH_BY()
+using namespace STG;
+
+AUTH_BY::PARSER::PARSER()
     : callback(NULL),
       data(NULL),
       depth(0),
@@ -32,7 +34,7 @@ PARSER_AUTH_BY::PARSER_AUTH_BY()
 {
 }
 //-----------------------------------------------------------------------------
-int PARSER_AUTH_BY::ParseStart(const char *el, const char **attr)
+int AUTH_BY::PARSER::ParseStart(const char *el, const char **attr)
 {
 depth++;
 if (depth == 1)
@@ -66,7 +68,7 @@ else
 return 0;
 }
 //-----------------------------------------------------------------------------
-void PARSER_AUTH_BY::ParseEnd(const char * /*el*/)
+void AUTH_BY::PARSER::ParseEnd(const char * /*el*/)
 {
 depth--;
 if (depth == 0)
@@ -78,7 +80,7 @@ if (depth == 0)
     }
 }
 //-----------------------------------------------------------------------------
-void PARSER_AUTH_BY::SetCallback(CALLBACK f, void * d)
+void AUTH_BY::PARSER::SetCallback(AUTH_BY::CALLBACK f, void * d)
 {
 callback = f;
 data = d;
diff --git a/stglibs/srvconf.lib/parser_auth_by.h b/stglibs/srvconf.lib/parser_auth_by.h
new file mode 100644 (file)
index 0000000..4e94267
--- /dev/null
@@ -0,0 +1,55 @@
+/*
+ *    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 : Maxim Mamontov <faust@stargazer.dp.ua>
+ */
+
+#ifndef __STG_STGLIBS_SRVCONF_PARSER_AUTH_BY_H__
+#define __STG_STGLIBS_SRVCONF_PARSER_AUTH_BY_H__
+
+#include "stg/parser.h"
+
+#include "stg/servconf_types.h"
+
+#include <vector>
+#include <string>
+
+namespace STG
+{
+namespace AUTH_BY
+{
+
+class PARSER: public STG::PARSER
+{
+public:
+    PARSER();
+    int  ParseStart(const char *el, const char **attr);
+    void ParseEnd(const char *el);
+    void SetCallback(CALLBACK f, void * data);
+private:
+    CALLBACK callback;
+    void * data;
+    int depth;
+    bool parsingAnswer;
+    INFO info;
+    std::string error;
+};
+
+} // namespace AUTH_BY
+} // namespace STG
+
+#endif
index eed03f30c18d318b2c563023ee044138dd183bf2..8c150357508674c467833bf5aae31c4be803e301 100644 (file)
@@ -25,6 +25,8 @@
 
 #include <strings.h>
 
+using namespace STG;
+
 PARSER_CHECK_USER::PARSER_CHECK_USER()
     : callback(NULL),
       data(NULL),
index 53ce941d66f4ee411749f71d99c57b2fd4f40732..084b0cc83ccd22be8d9715b97bb35722e9958aa1 100644 (file)
@@ -25,6 +25,8 @@
 
 #include <strings.h>
 
+using namespace STG;
+
 PARSER_CHG_USER::PARSER_CHG_USER()
     : callback(NULL),
       data(NULL),
index 43d720e8ca56dae512426711505cf71cd5c3aee4..0127eda25304800ba0452e8ff8caa33d6ec9d028 100644 (file)
@@ -29,6 +29,8 @@
 
 #include <strings.h>
 
+using namespace STG;
+
 template <>
 bool GetValue<PARSER_GET_USER::STAT>(const char ** attr, PARSER_GET_USER::STAT & value)
 {
index 2f380c821279dce946b36972e40c8c94efdb993a..80465afcb2c85b414ec0c80376050e44fea6f08a 100644 (file)
@@ -25,6 +25,8 @@
 
 #include <strings.h>
 
+using namespace STG;
+
 PARSER_GET_USERS::PARSER_GET_USERS()
     : callback(NULL),
       data(NULL),
index c1955fce9f5301ee863215e399dd1c66e664866b..08b6046208cf0366af1dbf749775238f9f272037 100644 (file)
@@ -25,6 +25,8 @@
 
 #include <strings.h>
 
+using namespace STG;
+
 PARSER_SEND_MESSAGE::PARSER_SEND_MESSAGE()
     : callback(NULL),
       data(NULL),
index 645f6099f2f8adde7e96363b70618a04fc56fbc7..38a373b84ac20c54aaad6f6fbd46ce7d0895233c 100644 (file)
@@ -28,6 +28,8 @@
 
 #include <strings.h>
 
+using namespace STG;
+
 namespace
 {
 
index c45dfb9b841e97a7e81456ac2d60019691261057..a7663f0e8183198dd958f8635ac7c520dcda82eb 100644 (file)
@@ -21,7 +21,7 @@
 #include "stg/servconf.h"
 
 #include "netunit.h"
-#include "stg/servconf_types.h"
+#include "parser_auth_by.h"
 
 #include "stg/common.h"
 
@@ -30,6 +30,8 @@
 
 #include <expat.h>
 
+using namespace STG;
+
 class SERVCONF::IMPL
 {
 public:
@@ -39,7 +41,7 @@ public:
     int GetUsers(PARSER_GET_USERS::CALLBACK f, void * data);
     int GetUser(const std::string & login, PARSER_GET_USER::CALLBACK f, void * data);
     int ChgUser(const std::string & request, PARSER_CHG_USER::CALLBACK f, void * data);
-    int AuthBy(const std::string & login, PARSER_AUTH_BY::CALLBACK f, void * data);
+    int AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data);
     int SendMessage(const std::string & request, PARSER_SEND_MESSAGE::CALLBACK f, void * data);
     int ServerInfo(PARSER_SERVER_INFO::CALLBACK f, void * data);
     int CheckUser(const std::string & login, const std::string & password, PARSER_CHECK_USER::CALLBACK f, void * data);
@@ -51,7 +53,7 @@ public:
 private:
     PARSER_GET_USERS parserGetUsers;
     PARSER_GET_USER parserGetUser;
-    PARSER_AUTH_BY parserAuthBy;
+    AUTH_BY::PARSER parserAuthBy;
     PARSER_SERVER_INFO  parserServerInfo;
     PARSER_CHG_USER parserChgUser;
     PARSER_CHECK_USER parserCheckUser;
@@ -67,22 +69,6 @@ private:
     static bool AnsRecv(void * data, const std::string & chunk, bool final);
 };
 
-/*namespace
-{
-
-void ElementStart(void * data, const char * el, const char ** attr)
-{
-static_cast<SERVCONF::IMPL *>(data)->Start(el, attr);
-}
-
-void ElementEnd(void * data, const char * el)
-{
-static_cast<SERVCONF::IMPL *>(data)->End(el);
-}
-
-} // namespace anonymous
-*/
-
 bool SERVCONF::IMPL::AnsRecv(void * data, const std::string & chunk, bool final)
 {
 SERVCONF::IMPL * sc = static_cast<SERVCONF::IMPL *>(data);
@@ -125,7 +111,7 @@ int SERVCONF::ChgUser(const std::string & request, PARSER_CHG_USER::CALLBACK f,
     return pImpl->ChgUser(request, f, data);
 }
 
-int SERVCONF::AuthBy(const std::string & login, PARSER_AUTH_BY::CALLBACK f, void * data)
+int SERVCONF::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data)
 {
     return pImpl->AuthBy(login, f, data);
 }
@@ -165,7 +151,7 @@ parserGetUser.SetCallback(f, data);
 return Exec("<GetUser login=\"" + login + "\"/>", parserGetUser);
 }
 //-----------------------------------------------------------------------------
-int SERVCONF::IMPL::AuthBy(const std::string & login, PARSER_AUTH_BY::CALLBACK f, void * data)
+int SERVCONF::IMPL::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data)
 {
 parserAuthBy.SetCallback(f, data);
 return Exec("<GetUserAuthBy login=\"" + login + "\"/>", parserAuthBy);