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