]> git.stg.codes - stg.git/commitdiff
Replaces vector parsers with a single one.
authorMaxim Mamontov <faust.madf@gmail.com>
Sun, 20 Oct 2013 10:32:56 +0000 (13:32 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Sun, 20 Oct 2013 10:32:56 +0000 (13:32 +0300)
18 files changed:
stglibs/srvconf.lib/Makefile
stglibs/srvconf.lib/parsers/get_admin.h
stglibs/srvconf.lib/parsers/get_admins.cpp [deleted file]
stglibs/srvconf.lib/parsers/get_admins.h [deleted file]
stglibs/srvconf.lib/parsers/get_container.h [new file with mode: 0644]
stglibs/srvconf.lib/parsers/get_corp.h
stglibs/srvconf.lib/parsers/get_corporations.cpp [deleted file]
stglibs/srvconf.lib/parsers/get_corporations.h [deleted file]
stglibs/srvconf.lib/parsers/get_service.h
stglibs/srvconf.lib/parsers/get_services.cpp [deleted file]
stglibs/srvconf.lib/parsers/get_services.h [deleted file]
stglibs/srvconf.lib/parsers/get_tariff.h
stglibs/srvconf.lib/parsers/get_tariffs.cpp [deleted file]
stglibs/srvconf.lib/parsers/get_tariffs.h [deleted file]
stglibs/srvconf.lib/parsers/get_user.h
stglibs/srvconf.lib/parsers/get_users.cpp [deleted file]
stglibs/srvconf.lib/parsers/get_users.h [deleted file]
stglibs/srvconf.lib/servconf.cpp

index d66d2b3e3d19f60bd9f4720113d132816dd4c7a1..d7bc80c01390fdb372f611ff9a11880b4a9b07a4 100644 (file)
@@ -11,20 +11,15 @@ LIBS = -lexpat
 SRCS =  parsers/property.cpp \
         parsers/simple.cpp \
         parsers/server_info.cpp \
-        parsers/get_admins.cpp \
         parsers/get_admin.cpp \
         parsers/chg_admin.cpp \
-        parsers/get_tariffs.cpp \
         parsers/get_tariff.cpp \
         parsers/chg_tariff.cpp \
         parsers/auth_by.cpp \
         parsers/get_user.cpp \
-        parsers/get_users.cpp \
         parsers/chg_user.cpp \
-        parsers/get_services.cpp \
         parsers/get_service.cpp \
         parsers/chg_service.cpp \
-        parsers/get_corporations.cpp \
         parsers/get_corp.cpp \
         parsers/chg_corp.cpp \
         netunit.cpp \
index 04ed892c411c437fda6e544760cc37b3cd409341..d8e2fe9ea0c795caf466c5d8db0ed10777150fd5 100644 (file)
@@ -37,6 +37,8 @@ namespace GET_ADMIN
 class PARSER: public STG::PARSER
 {
 public:
+    typedef GET_ADMIN::INFO INFO;
+
     PARSER(CALLBACK f, void * data);
     virtual ~PARSER();
     int  ParseStart(const char * el, const char ** attr);
diff --git a/stglibs/srvconf.lib/parsers/get_admins.cpp b/stglibs/srvconf.lib/parsers/get_admins.cpp
deleted file mode 100644 (file)
index 947a9ce..0000000
+++ /dev/null
@@ -1,76 +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>
- */
-
-#include "get_admins.h"
-
-#include <strings.h>
-
-using namespace STG;
-
-GET_ADMINS::PARSER::PARSER(CALLBACK f, void * d)
-    : callback(f),
-      data(d),
-      adminParser(&GET_ADMINS::PARSER::AdminCallback, this),
-      depth(0),
-      parsingAnswer(false)
-{
-}
-//-----------------------------------------------------------------------------
-int GET_ADMINS::PARSER::ParseStart(const char * el, const char ** attr)
-{
-depth++;
-if (depth == 1 && strcasecmp(el, "admins") == 0)
-    parsingAnswer = true;
-
-if (depth > 1 && parsingAnswer)
-    adminParser.ParseStart(el, attr);
-
-return 0;
-}
-//-----------------------------------------------------------------------------
-void GET_ADMINS::PARSER::ParseEnd(const char * el)
-{
-depth--;
-if (depth > 0 && parsingAnswer)
-    adminParser.ParseEnd(el);
-
-if (depth == 0 && parsingAnswer)
-    {
-    if (callback)
-        callback(error.empty(), error, info, data);
-    error.clear();
-    info.clear();
-    parsingAnswer = false;
-    }
-}
-//-----------------------------------------------------------------------------
-void GET_ADMINS::PARSER::AddAdmin(const GET_ADMIN::INFO & adminInfo)
-{
-info.push_back(adminInfo);
-}
-//-----------------------------------------------------------------------------
-void GET_ADMINS::PARSER::AdminCallback(bool result, const std::string & error, const GET_ADMIN::INFO & info, void * data)
-{
-    GET_ADMINS::PARSER * parser = static_cast<GET_ADMINS::PARSER *>(data);
-    if (!result)
-        parser->SetError(error);
-    else
-        parser->AddAdmin(info);
-}
diff --git a/stglibs/srvconf.lib/parsers/get_admins.h b/stglibs/srvconf.lib/parsers/get_admins.h
deleted file mode 100644 (file)
index 4b6d122..0000000
+++ /dev/null
@@ -1,61 +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_GET_ADMINS_H__
-#define __STG_STGLIBS_SRVCONF_PARSER_GET_ADMINS_H__
-
-#include "base.h"
-#include "get_admin.h"
-
-#include "stg/servconf_types.h"
-
-#include <string>
-
-namespace STG
-{
-namespace GET_ADMINS
-{
-
-class PARSER: public STG::PARSER
-{
-public:
-    PARSER(CALLBACK f, void * data);
-    int  ParseStart(const char * el, const char ** attr);
-    void ParseEnd(const char * el);
-
-private:
-    CALLBACK callback;
-    void * data;
-    GET_ADMIN::PARSER adminParser;
-    INFO info;
-    int depth;
-    bool parsingAnswer;
-    std::string error;
-
-    void AddAdmin(const GET_ADMIN::INFO & adminInfo);
-    void SetError(const std::string & e) { error = e; }
-
-    static void AdminCallback(bool result, const std::string& reason, const GET_ADMIN::INFO & info, void * data);
-};
-
-} // namespace GET_ADMINS
-} // namespace STG
-
-#endif
diff --git a/stglibs/srvconf.lib/parsers/get_container.h b/stglibs/srvconf.lib/parsers/get_container.h
new file mode 100644 (file)
index 0000000..31bb425
--- /dev/null
@@ -0,0 +1,100 @@
+/*
+ *    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_GET_CONTAINER_H__
+#define __STG_STGLIBS_SRVCONF_PARSER_GET_CONTAINER_H__
+
+#include "base.h"
+
+#include <string>
+
+namespace STG
+{
+namespace GET_CONTAINER
+{
+
+template <typename ELEMENT_PARSER>
+class PARSER: public STG::PARSER
+{
+public:
+    typedef std::vector<typename ELEMENT_PARSER::INFO> INFO;
+    typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
+    PARSER(const std::string & t, CALLBACK f, void * d)
+        : tag(t), callback(f), data(d),
+          elementParser(&PARSER<ELEMENT_PARSER>::ElementCallback, this),
+          depth(0), parsingAnswer(false)
+    {}
+    int  ParseStart(const char * el, const char ** attr)
+    {
+    depth++;
+    if (depth == 1 && strcasecmp(el, tag.c_str()) == 0)
+        parsingAnswer = true;
+
+    if (depth > 1 && parsingAnswer)
+        elementParser.ParseStart(el, attr);
+
+    return 0;
+    }
+    void ParseEnd(const char * el)
+    {
+    depth--;
+    if (depth > 0 && parsingAnswer)
+        elementParser.ParseEnd(el);
+
+    if (depth == 0 && parsingAnswer)
+        {
+        if (callback)
+            callback(error.empty(), error, info, data);
+        error.clear();
+        info.clear();
+        parsingAnswer = false;
+        }
+    }
+
+private:
+    std::string tag;
+    CALLBACK callback;
+    void * data;
+    ELEMENT_PARSER elementParser;
+    INFO info;
+    int depth;
+    bool parsingAnswer;
+    std::string error;
+
+    void AddElement(const typename ELEMENT_PARSER::INFO & elementInfo)
+    {
+    info.push_back(elementInfo);
+    }
+    void SetError(const std::string & e) { error = e; }
+
+    static void ElementCallback(bool result, const std::string& reason, const typename ELEMENT_PARSER::INFO & info, void * data)
+    {
+    PARSER<ELEMENT_PARSER> * parser = static_cast<PARSER<ELEMENT_PARSER> *>(data);
+    if (!result)
+        parser->SetError(reason);
+    else
+        parser->AddElement(info);
+    }
+};
+
+} // namespace GET_CONTAINER
+} // namespace STG
+
+#endif
index 80b1e9439e0b48856a44fb88b7bf7dc8d43997ee..a01fe2629d7744a8abaa9a16026779a9aa2412d5 100644 (file)
@@ -37,6 +37,8 @@ namespace GET_CORP
 class PARSER: public STG::PARSER
 {
 public:
+    typedef GET_CORP::INFO INFO;
+
     PARSER(CALLBACK f, void * data);
     virtual ~PARSER();
     int  ParseStart(const char * el, const char ** attr);
diff --git a/stglibs/srvconf.lib/parsers/get_corporations.cpp b/stglibs/srvconf.lib/parsers/get_corporations.cpp
deleted file mode 100644 (file)
index 0a9a68a..0000000
+++ /dev/null
@@ -1,76 +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>
- */
-
-#include "get_corporations.h"
-
-#include <strings.h>
-
-using namespace STG;
-
-GET_CORPORATIONS::PARSER::PARSER(CALLBACK f, void * d)
-    : callback(f),
-      data(d),
-      corpParser(&GET_CORPORATIONS::PARSER::CorpCallback, this),
-      depth(0),
-      parsingAnswer(false)
-{
-}
-//-----------------------------------------------------------------------------
-int GET_CORPORATIONS::PARSER::ParseStart(const char * el, const char ** attr)
-{
-depth++;
-if (depth == 1 && strcasecmp(el, "corporations") == 0)
-    parsingAnswer = true;
-
-if (depth > 1 && parsingAnswer)
-    corpParser.ParseStart(el, attr);
-
-return 0;
-}
-//-----------------------------------------------------------------------------
-void GET_CORPORATIONS::PARSER::ParseEnd(const char * el)
-{
-depth--;
-if (depth > 0 && parsingAnswer)
-    corpParser.ParseEnd(el);
-
-if (depth == 0 && parsingAnswer)
-    {
-    if (callback)
-        callback(error.empty(), error, info, data);
-    error.clear();
-    info.clear();
-    parsingAnswer = false;
-    }
-}
-//-----------------------------------------------------------------------------
-void GET_CORPORATIONS::PARSER::AddCorp(const GET_CORP::INFO & corpInfo)
-{
-info.push_back(corpInfo);
-}
-//-----------------------------------------------------------------------------
-void GET_CORPORATIONS::PARSER::CorpCallback(bool result, const std::string & error, const GET_CORP::INFO & info, void * data)
-{
-    GET_CORPORATIONS::PARSER * parser = static_cast<GET_CORPORATIONS::PARSER *>(data);
-    if (!result)
-        parser->SetError(error);
-    else
-        parser->AddCorp(info);
-}
diff --git a/stglibs/srvconf.lib/parsers/get_corporations.h b/stglibs/srvconf.lib/parsers/get_corporations.h
deleted file mode 100644 (file)
index 192367d..0000000
+++ /dev/null
@@ -1,61 +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_GET_CORPORATIONS_H__
-#define __STG_STGLIBS_SRVCONF_PARSER_GET_CORPORATIONS_H__
-
-#include "base.h"
-#include "get_corp.h"
-
-#include "stg/servconf_types.h"
-
-#include <string>
-
-namespace STG
-{
-namespace GET_CORPORATIONS
-{
-
-class PARSER: public STG::PARSER
-{
-public:
-    PARSER(CALLBACK f, void * data);
-    int  ParseStart(const char * el, const char ** attr);
-    void ParseEnd(const char * el);
-
-private:
-    CALLBACK callback;
-    void * data;
-    GET_CORP::PARSER corpParser;
-    INFO info;
-    int depth;
-    bool parsingAnswer;
-    std::string error;
-
-    void AddCorp(const GET_CORP::INFO & corpInfo);
-    void SetError(const std::string & e) { error = e; }
-
-    static void CorpCallback(bool result, const std::string& reason, const GET_CORP::INFO & info, void * data);
-};
-
-} // namespace GET_CORPORATIONS
-} // namespace STG
-
-#endif
index 24c04849ca9896b1dba2aafd94f905db4fb9cf46..847d8bfda6c1af56d183e3c88e6cf6941ddb1c47 100644 (file)
@@ -37,6 +37,7 @@ namespace GET_SERVICE
 class PARSER: public STG::PARSER
 {
 public:
+    typedef GET_SERVICE::INFO INFO;
     PARSER(CALLBACK f, void * data);
     virtual ~PARSER();
     int  ParseStart(const char * el, const char ** attr);
diff --git a/stglibs/srvconf.lib/parsers/get_services.cpp b/stglibs/srvconf.lib/parsers/get_services.cpp
deleted file mode 100644 (file)
index c34a709..0000000
+++ /dev/null
@@ -1,76 +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>
- */
-
-#include "get_services.h"
-
-#include <strings.h>
-
-using namespace STG;
-
-GET_SERVICES::PARSER::PARSER(CALLBACK f, void * d)
-    : callback(f),
-      data(d),
-      serviceParser(&GET_SERVICES::PARSER::ServiceCallback, this),
-      depth(0),
-      parsingAnswer(false)
-{
-}
-//-----------------------------------------------------------------------------
-int GET_SERVICES::PARSER::ParseStart(const char * el, const char ** attr)
-{
-depth++;
-if (depth == 1 && strcasecmp(el, "services") == 0)
-    parsingAnswer = true;
-
-if (depth > 1 && parsingAnswer)
-    serviceParser.ParseStart(el, attr);
-
-return 0;
-}
-//-----------------------------------------------------------------------------
-void GET_SERVICES::PARSER::ParseEnd(const char * el)
-{
-depth--;
-if (depth > 0 && parsingAnswer)
-    serviceParser.ParseEnd(el);
-
-if (depth == 0 && parsingAnswer)
-    {
-    if (callback)
-        callback(error.empty(), error, info, data);
-    error.clear();
-    info.clear();
-    parsingAnswer = false;
-    }
-}
-//-----------------------------------------------------------------------------
-void GET_SERVICES::PARSER::AddService(const GET_SERVICE::INFO & serviceInfo)
-{
-info.push_back(serviceInfo);
-}
-//-----------------------------------------------------------------------------
-void GET_SERVICES::PARSER::ServiceCallback(bool result, const std::string & error, const GET_SERVICE::INFO & info, void * data)
-{
-    GET_SERVICES::PARSER * parser = static_cast<GET_SERVICES::PARSER *>(data);
-    if (!result)
-        parser->SetError(error);
-    else
-        parser->AddService(info);
-}
diff --git a/stglibs/srvconf.lib/parsers/get_services.h b/stglibs/srvconf.lib/parsers/get_services.h
deleted file mode 100644 (file)
index c7ce9b5..0000000
+++ /dev/null
@@ -1,61 +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_GET_SERVICES_H__
-#define __STG_STGLIBS_SRVCONF_PARSER_GET_SERVICES_H__
-
-#include "base.h"
-#include "get_service.h"
-
-#include "stg/servconf_types.h"
-
-#include <string>
-
-namespace STG
-{
-namespace GET_SERVICES
-{
-
-class PARSER: public STG::PARSER
-{
-public:
-    PARSER(CALLBACK f, void * data);
-    int  ParseStart(const char * el, const char ** attr);
-    void ParseEnd(const char * el);
-
-private:
-    CALLBACK callback;
-    void * data;
-    GET_SERVICE::PARSER serviceParser;
-    INFO info;
-    int depth;
-    bool parsingAnswer;
-    std::string error;
-
-    void AddService(const GET_SERVICE::INFO & serviceInfo);
-    void SetError(const std::string & e) { error = e; }
-
-    static void ServiceCallback(bool result, const std::string& reason, const GET_SERVICE::INFO & info, void * data);
-};
-
-} // namespace GET_SERVICES
-} // namespace STG
-
-#endif
index 1c03d6554620ff45dd66351cdaa15d0733ab091b..e6558259dd4a78ee7a3196aa41162b432a886a9c 100644 (file)
@@ -37,6 +37,8 @@ namespace GET_TARIFF
 class PARSER: public STG::PARSER
 {
 public:
+    typedef GET_TARIFF::INFO INFO;
+
     PARSER(CALLBACK f, void * data);
     virtual ~PARSER();
     int  ParseStart(const char * el, const char ** attr);
diff --git a/stglibs/srvconf.lib/parsers/get_tariffs.cpp b/stglibs/srvconf.lib/parsers/get_tariffs.cpp
deleted file mode 100644 (file)
index b5d0fe6..0000000
+++ /dev/null
@@ -1,76 +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>
- */
-
-#include "get_tariffs.h"
-
-#include <strings.h>
-
-using namespace STG;
-
-GET_TARIFFS::PARSER::PARSER(CALLBACK f, void * d)
-    : callback(f),
-      data(d),
-      tariffParser(&GET_TARIFFS::PARSER::TariffCallback, this),
-      depth(0),
-      parsingAnswer(false)
-{
-}
-//-----------------------------------------------------------------------------
-int GET_TARIFFS::PARSER::ParseStart(const char * el, const char ** attr)
-{
-depth++;
-if (depth == 1 && strcasecmp(el, "tariffs") == 0)
-    parsingAnswer = true;
-
-if (depth > 1 && parsingAnswer)
-    tariffParser.ParseStart(el, attr);
-
-return 0;
-}
-//-----------------------------------------------------------------------------
-void GET_TARIFFS::PARSER::ParseEnd(const char * el)
-{
-depth--;
-if (depth > 0 && parsingAnswer)
-    tariffParser.ParseEnd(el);
-
-if (depth == 0 && parsingAnswer)
-    {
-    if (callback)
-        callback(error.empty(), error, info, data);
-    error.clear();
-    info.clear();
-    parsingAnswer = false;
-    }
-}
-//-----------------------------------------------------------------------------
-void GET_TARIFFS::PARSER::AddTariff(const GET_TARIFF::INFO & tariffInfo)
-{
-info.push_back(tariffInfo);
-}
-//-----------------------------------------------------------------------------
-void GET_TARIFFS::PARSER::TariffCallback(bool result, const std::string & error, const GET_TARIFF::INFO & info, void * data)
-{
-    GET_TARIFFS::PARSER * parser = static_cast<GET_TARIFFS::PARSER *>(data);
-    if (!result)
-        parser->SetError(error);
-    else
-        parser->AddTariff(info);
-}
diff --git a/stglibs/srvconf.lib/parsers/get_tariffs.h b/stglibs/srvconf.lib/parsers/get_tariffs.h
deleted file mode 100644 (file)
index d011f9b..0000000
+++ /dev/null
@@ -1,61 +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_GET_TARIFFS_H__
-#define __STG_STGLIBS_SRVCONF_PARSER_GET_TARIFFS_H__
-
-#include "base.h"
-#include "get_tariff.h"
-
-#include "stg/servconf_types.h"
-
-#include <string>
-
-namespace STG
-{
-namespace GET_TARIFFS
-{
-
-class PARSER: public STG::PARSER
-{
-public:
-    PARSER(CALLBACK f, void * data);
-    int  ParseStart(const char * el, const char ** attr);
-    void ParseEnd(const char * el);
-
-private:
-    CALLBACK callback;
-    void * data;
-    GET_TARIFF::PARSER tariffParser;
-    INFO info;
-    int depth;
-    bool parsingAnswer;
-    std::string error;
-
-    void AddTariff(const GET_TARIFF::INFO & tariffInfo);
-    void SetError(const std::string & e) { error = e; }
-
-    static void TariffCallback(bool result, const std::string& reason, const GET_TARIFF::INFO & info, void * data);
-};
-
-} // namespace GET_TARIFFS
-} // namespace STG
-
-#endif
index 12050752d403a4673c9a8d534189f53e12b33366..519d67b6587c0a0425b89cb3d40542b03d1699d4 100644 (file)
@@ -37,6 +37,8 @@ namespace GET_USER
 class PARSER: public STG::PARSER
 {
 public:
+    typedef GET_USER::INFO INFO;
+
     PARSER(CALLBACK f, void * data);
     virtual ~PARSER();
     int  ParseStart(const char * el, const char ** attr);
diff --git a/stglibs/srvconf.lib/parsers/get_users.cpp b/stglibs/srvconf.lib/parsers/get_users.cpp
deleted file mode 100644 (file)
index 6c385b0..0000000
+++ /dev/null
@@ -1,77 +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 : Boris Mikhailenko <stg34@stargazer.dp.ua>
- *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
- */
-
-#include "get_users.h"
-
-#include <strings.h>
-
-using namespace STG;
-
-GET_USERS::PARSER::PARSER(CALLBACK f, void * d)
-    : callback(f),
-      data(d),
-      userParser(&GET_USERS::PARSER::UserCallback, this),
-      depth(0),
-      parsingAnswer(false)
-{
-}
-//-----------------------------------------------------------------------------
-int GET_USERS::PARSER::ParseStart(const char * el, const char ** attr)
-{
-depth++;
-if (depth == 1 && strcasecmp(el, "users") == 0)
-    parsingAnswer = true;
-
-if (depth > 1 && parsingAnswer)
-    userParser.ParseStart(el, attr);
-
-return 0;
-}
-//-----------------------------------------------------------------------------
-void GET_USERS::PARSER::ParseEnd(const char * el)
-{
-depth--;
-if (depth > 0 && parsingAnswer)
-    userParser.ParseEnd(el);
-
-if (depth == 0 && parsingAnswer)
-    {
-    if (callback)
-        callback(error.empty(), error, info, data);
-    error.clear();
-    info.clear();
-    parsingAnswer = false;
-    }
-}
-//-----------------------------------------------------------------------------
-void GET_USERS::PARSER::AddUser(const GET_USER::INFO & userInfo)
-{
-info.push_back(userInfo);
-}
-//-----------------------------------------------------------------------------
-void GET_USERS::PARSER::UserCallback(bool result, const std::string & error, const GET_USER::INFO & info, void * data)
-{
-    GET_USERS::PARSER * parser = static_cast<GET_USERS::PARSER *>(data);
-    if (!result)
-        parser->SetError(error);
-    else
-        parser->AddUser(info);
-}
diff --git a/stglibs/srvconf.lib/parsers/get_users.h b/stglibs/srvconf.lib/parsers/get_users.h
deleted file mode 100644 (file)
index d1289e3..0000000
+++ /dev/null
@@ -1,62 +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 : Boris Mikhailenko <stg34@stargazer.dp.ua>
- *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
- */
-
-#ifndef __STG_STGLIBS_SRVCONF_PARSER_GET_USERS_H__
-#define __STG_STGLIBS_SRVCONF_PARSER_GET_USERS_H__
-
-#include "base.h"
-#include "get_user.h"
-
-#include "stg/servconf_types.h"
-
-#include <string>
-
-namespace STG
-{
-namespace GET_USERS
-{
-
-class PARSER: public STG::PARSER
-{
-public:
-    PARSER(CALLBACK f, void * data);
-    int  ParseStart(const char * el, const char ** attr);
-    void ParseEnd(const char * el);
-
-private:
-    CALLBACK callback;
-    void * data;
-    GET_USER::PARSER userParser;
-    INFO info;
-    int depth;
-    bool parsingAnswer;
-    std::string error;
-
-    void AddUser(const GET_USER::INFO & userInfo);
-    void SetError(const std::string & e) { error = e; }
-
-    static void UserCallback(bool result, const std::string& reason, const GET_USER::INFO & info, void * data);
-};
-
-} // namespace GET_USERS
-} // namespace STG
-
-#endif
index e80c3ffa7f889e8371ba1417a5ccde65197c8305..a9881f05f3b8ecb9c87a8ecd0e3f8a8fc53a1f02 100644 (file)
 #include "netunit.h"
 
 #include "parsers/simple.h"
+#include "parsers/get_container.h"
 
 #include "parsers/server_info.h"
 
-#include "parsers/get_admins.h"
 #include "parsers/get_admin.h"
 #include "parsers/chg_admin.h"
 
-#include "parsers/get_tariffs.h"
 #include "parsers/get_tariff.h"
 #include "parsers/chg_tariff.h"
 
 #include "parsers/auth_by.h"
-#include "parsers/get_users.h"
 #include "parsers/get_user.h"
 #include "parsers/chg_user.h"
 
-#include "parsers/get_services.h"
 #include "parsers/get_service.h"
 #include "parsers/chg_service.h"
 
-#include "parsers/get_corporations.h"
 #include "parsers/get_corp.h"
 #include "parsers/chg_corp.h"
 
@@ -143,7 +139,7 @@ return pImpl->RawXML(request, f, data);
 
 int SERVCONF::GetAdmins(GET_ADMINS::CALLBACK f, void * data)
 {
-return pImpl->Exec<GET_ADMINS::PARSER>("<GetAdmins/>", f, data);
+return pImpl->Exec<GET_CONTAINER::PARSER<GET_ADMIN::PARSER> >("admins", "<GetAdmins/>", f, data);
 }
 
 int SERVCONF::GetAdmin(const std::string & login, GET_ADMIN::CALLBACK f, void * data)
@@ -175,7 +171,7 @@ return pImpl->Exec<SIMPLE::PARSER>("DelAdmin", "<DelAdmin login=\"" + login + "\
 
 int SERVCONF::GetTariffs(GET_TARIFFS::CALLBACK f, void * data)
 {
-return pImpl->Exec<GET_TARIFFS::PARSER>("<GetTariffs/>", f, data);
+return pImpl->Exec<GET_CONTAINER::PARSER<GET_TARIFF::PARSER> >("tariffs", "<GetTariffs/>", f, data);
 }
 
 int SERVCONF::GetTariff(const std::string & name, GET_TARIFF::CALLBACK f, void * data)
@@ -207,7 +203,7 @@ return pImpl->Exec<SIMPLE::PARSER>("DelTariff", "<DelTariff name=\"" + name + "\
 
 int SERVCONF::GetUsers(GET_USERS::CALLBACK f, void * data)
 {
-return pImpl->Exec<GET_USERS::PARSER>("<GetUsers/>", f, data);
+return pImpl->Exec<GET_CONTAINER::PARSER<GET_USER::PARSER> >("users", "<GetUsers/>", f, data);
 }
 
 int SERVCONF::GetUser(const std::string & login, GET_USER::CALLBACK f, void * data)
@@ -252,7 +248,7 @@ return pImpl->Exec<SIMPLE::PARSER>("CheckUser", "<CheckUser login=\"" + login +
 
 int SERVCONF::GetServices(GET_SERVICES::CALLBACK f, void * data)
 {
-return pImpl->Exec<GET_SERVICES::PARSER>("<GetServices/>", f, data);
+return pImpl->Exec<GET_CONTAINER::PARSER<GET_SERVICE::PARSER> >("services", "<GetServices/>", f, data);
 }
 
 int SERVCONF::GetService(const std::string & name, GET_SERVICE::CALLBACK f, void * data)
@@ -284,7 +280,7 @@ return pImpl->Exec<SIMPLE::PARSER>("DelService", "<DelService name=\"" + name +
 
 int SERVCONF::GetCorporations(GET_CORPORATIONS::CALLBACK f, void * data)
 {
-return pImpl->Exec<GET_CORPORATIONS::PARSER>("<GetCorporations/>", f, data);
+return pImpl->Exec<GET_CONTAINER::PARSER<GET_CORP::PARSER> >("corporations", "<GetCorporations/>", f, data);
 }
 
 int SERVCONF::GetCorp(const std::string & name, GET_CORP::CALLBACK f, void * data)