]> git.stg.codes - stg.git/blob - stglibs/srvconf.lib/parsers/server_info.cpp
Implemented transcoders for some getters.
[stg.git] / stglibs / srvconf.lib / parsers / server_info.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 : Boris Mikhailenko <stg34@stargazer.dp.ua>
19  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
20  */
21
22 #include "server_info.h"
23
24 #include "stg/common.h"
25
26 #include <cstdio> // sprintf
27
28 #include <strings.h>
29
30 using namespace STG;
31
32 namespace
33 {
34
35 const size_t UNAME_LEN    = 256;
36 const size_t SERV_VER_LEN = 64;
37 const size_t DIRNAME_LEN  = 16;
38
39 }
40
41 SERVER_INFO::PARSER::PARSER(CALLBACK f, void * d, const std::string & e)
42     : callback(f),
43       data(d),
44       encoding(e),
45       depth(0),
46       parsingAnswer(false)
47 {
48     AddParser(propertyParsers, "uname", info.uname);
49     AddParser(propertyParsers, "version", info.version);
50     AddParser(propertyParsers, "tariff", info.tariffType);
51     AddParser(propertyParsers, "dir_num", info.dirNum);
52     AddParser(propertyParsers, "users_num", info.usersNum);
53     AddParser(propertyParsers, "tariff_num", info.tariffNum);
54
55     for (size_t i = 0; i < DIR_NUM; i++)
56         AddParser(propertyParsers, "dir_name_" + unsigned2str(i), info.dirName[i], GetEncodedValue);
57 }
58 //-----------------------------------------------------------------------------
59 int SERVER_INFO::PARSER::ParseStart(const char *el, const char **attr)
60 {
61 depth++;
62 if (depth == 1)
63     {
64     if (strcasecmp(el, "ServerInfo") == 0)
65         parsingAnswer = true;
66     }
67 else
68     {
69     if (depth == 2 && parsingAnswer)
70         if (!TryParse(propertyParsers, ToLower(el), attr, encoding))
71             error = "Invalid parameter.";
72     }
73 return 0;
74 }
75 //-----------------------------------------------------------------------------
76 void SERVER_INFO::PARSER::ParseEnd(const char * /*el*/)
77 {
78 depth--;
79 if (depth == 0 && parsingAnswer)
80     {
81     if (callback)
82         callback(error.empty(), error, info, data);
83     error.clear();
84     parsingAnswer = false;
85     }
86 }