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.
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.
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
18 * Author : Maxim Mamontov <faust@stargazer.dp.ua>
21 #include "get_admin.h"
23 #include "stg/common.h"
37 bool getValue<Priv>(const char** attr, Priv& value, const std::string& attrName)
40 if (!getValue(attr, priv, attrName))
48 GetAdmin::Parser::Parser(Callback f, void* d, const std::string& e)
55 addParser(propertyParsers, "login", info.login);
56 addParser(propertyParsers, "password", info.password);
57 addParser(propertyParsers, "priv", info.priv);
59 //-----------------------------------------------------------------------------
60 GetAdmin::Parser::~Parser()
62 auto it = propertyParsers.begin();
63 while (it != propertyParsers.end())
64 delete (it++)->second;
66 //-----------------------------------------------------------------------------
67 int GetAdmin::Parser::ParseStart(const char* el, const char** attr)
73 /*if (depth == 2 && parsingAnswer)
74 ParseAdminParams(el, attr);*/
78 //-----------------------------------------------------------------------------
79 void GetAdmin::Parser::ParseEnd(const char* /*el*/)
82 if (depth == 0 && parsingAnswer)
85 callback(error.empty(), error, info, data);
87 parsingAnswer = false;
90 //-----------------------------------------------------------------------------
91 void GetAdmin::Parser::ParseAdmin(const char* el, const char** attr)
93 if (strcasecmp(el, "admin") == 0)
95 if (attr && attr[0] && attr[1])
97 if (strcasecmp(attr[1], "error") == 0)
99 if (attr[2] && attr[3])
102 error = "Admin not found.";
106 parsingAnswer = true;
107 for (const char** pos = attr; *pos != NULL; pos = pos + 2)
109 if (!tryParse(propertyParsers, ToLower(*pos), pos, encoding, *pos))
111 error = std::string("Invalid parameter '") + *pos + "'.";
118 parsingAnswer = true;
121 //-----------------------------------------------------------------------------
122 /*void GetAdmin::Parser::ParseAdminParams(const char* el, const char** attr)
124 if (!TryParse(propertyParsers, ToLower(el), attr))
125 error = "Invalid parameter.";