]> git.stg.codes - stg.git/blob - libs/srvconf/parsers/get_admin.cpp
Public interfaces: part 1
[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 GetAdmin::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 GetAdmin::Parser::~Parser()
61 {
62     auto it = propertyParsers.begin();
63     while (it != propertyParsers.end())
64         delete (it++)->second;
65 }
66 //-----------------------------------------------------------------------------
67 int GetAdmin::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 GetAdmin::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 GetAdmin::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                 {
109                     if (!tryParse(propertyParsers, ToLower(*pos), pos, encoding, *pos))
110                     {
111                         error = std::string("Invalid parameter '") + *pos + "'.";
112                         break;
113                     }
114                 }
115             }
116         }
117         else
118             parsingAnswer = true;
119     }
120 }
121 //-----------------------------------------------------------------------------
122 /*void GetAdmin::Parser::ParseAdminParams(const char* el, const char** attr)
123 {
124     if (!TryParse(propertyParsers, ToLower(el), attr))
125         error = "Invalid parameter.";
126 }*/