]> git.stg.codes - stg.git/blob - libs/srvconf/parsers/get_admin.cpp
Port to CMake, get rid of os_int.h.
[stg.git] / libs / srvconf / parsers / get_admin.cpp
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
19  */
20
21 #include "get_admin.h"
22
23 #include "stg/common.h"
24
25 #include <map>
26 #include <utility>
27
28 #include <strings.h>
29
30 using namespace STG;
31
32 namespace STG
33 {
34
35 template <>
36 inline
37 bool GetValue<PRIV>(const char ** attr, PRIV & value, const std::string & attrName)
38 {
39 uint32_t priv;
40 if (!GetValue(attr, priv, attrName))
41     return false;
42 value = PRIV(priv);
43 return true;
44 }
45
46 } // namespace STG
47
48 GET_ADMIN::PARSER::PARSER(CALLBACK f, void * d, const std::string & e)
49     : callback(f),
50       data(d),
51       encoding(e),
52       depth(0),
53       parsingAnswer(false)
54 {
55     AddParser(propertyParsers, "login", info.login);
56     AddParser(propertyParsers, "password", info.password);
57     AddParser(propertyParsers, "priv", info.priv);
58 }
59 //-----------------------------------------------------------------------------
60 GET_ADMIN::PARSER::~PARSER()
61 {
62     PROPERTY_PARSERS::iterator it(propertyParsers.begin());
63     while (it != propertyParsers.end())
64         delete (it++)->second;
65 }
66 //-----------------------------------------------------------------------------
67 int GET_ADMIN::PARSER::ParseStart(const char * el, const char ** attr)
68 {
69 depth++;
70 if (depth == 1)
71     ParseAdmin(el, attr);
72
73 /*if (depth == 2 && parsingAnswer)
74     ParseAdminParams(el, attr);*/
75
76 return 0;
77 }
78 //-----------------------------------------------------------------------------
79 void GET_ADMIN::PARSER::ParseEnd(const char * /*el*/)
80 {
81 depth--;
82 if (depth == 0 && parsingAnswer)
83     {
84     if (callback)
85         callback(error.empty(), error, info, data);
86     error.clear();
87     parsingAnswer = false;
88     }
89 }
90 //-----------------------------------------------------------------------------
91 void GET_ADMIN::PARSER::ParseAdmin(const char * el, const char ** attr)
92 {
93 if (strcasecmp(el, "admin") == 0)
94     {
95     if (attr && attr[0] && attr[1])
96         {
97         if (strcasecmp(attr[1], "error") == 0)
98             {
99             if (attr[2] && attr[3])
100                 error = attr[3];
101             else
102                 error = "Admin not found.";
103             }
104         else
105             {
106             parsingAnswer = true;
107             for (const char ** pos = attr; *pos != NULL; pos = pos + 2)
108                 if (!TryParse(propertyParsers, ToLower(*pos), pos, encoding, *pos))
109                     {
110                     error = std::string("Invalid parameter '") + *pos + "'.";
111                     break;
112                     }
113             }
114         }
115     else
116         parsingAnswer = true;
117     }
118 }
119 //-----------------------------------------------------------------------------
120 /*void GET_ADMIN::PARSER::ParseAdminParams(const char * el, const char ** attr)
121 {
122 if (!TryParse(propertyParsers, ToLower(el), attr))
123     error = "Invalid parameter.";
124 }*/