]> git.stg.codes - stg.git/blob - stglibs/srvconf.lib/parsers/get_tariffs.cpp
b5d0fe6efcc944a6351f23c8ecc200c69326357d
[stg.git] / stglibs / srvconf.lib / parsers / get_tariffs.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_tariffs.h"
22
23 #include <strings.h>
24
25 using namespace STG;
26
27 GET_TARIFFS::PARSER::PARSER(CALLBACK f, void * d)
28     : callback(f),
29       data(d),
30       tariffParser(&GET_TARIFFS::PARSER::TariffCallback, this),
31       depth(0),
32       parsingAnswer(false)
33 {
34 }
35 //-----------------------------------------------------------------------------
36 int GET_TARIFFS::PARSER::ParseStart(const char * el, const char ** attr)
37 {
38 depth++;
39 if (depth == 1 && strcasecmp(el, "tariffs") == 0)
40     parsingAnswer = true;
41
42 if (depth > 1 && parsingAnswer)
43     tariffParser.ParseStart(el, attr);
44
45 return 0;
46 }
47 //-----------------------------------------------------------------------------
48 void GET_TARIFFS::PARSER::ParseEnd(const char * el)
49 {
50 depth--;
51 if (depth > 0 && parsingAnswer)
52     tariffParser.ParseEnd(el);
53
54 if (depth == 0 && parsingAnswer)
55     {
56     if (callback)
57         callback(error.empty(), error, info, data);
58     error.clear();
59     info.clear();
60     parsingAnswer = false;
61     }
62 }
63 //-----------------------------------------------------------------------------
64 void GET_TARIFFS::PARSER::AddTariff(const GET_TARIFF::INFO & tariffInfo)
65 {
66 info.push_back(tariffInfo);
67 }
68 //-----------------------------------------------------------------------------
69 void GET_TARIFFS::PARSER::TariffCallback(bool result, const std::string & error, const GET_TARIFF::INFO & info, void * data)
70 {
71     GET_TARIFFS::PARSER * parser = static_cast<GET_TARIFFS::PARSER *>(data);
72     if (!result)
73         parser->SetError(error);
74     else
75         parser->AddTariff(info);
76 }