]> git.stg.codes - stg.git/blob - stglibs/srvconf.lib/parsers/get_container.h
Added missing include.
[stg.git] / stglibs / srvconf.lib / parsers / get_container.h
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 #ifndef __STG_STGLIBS_SRVCONF_PARSER_GET_CONTAINER_H__
22 #define __STG_STGLIBS_SRVCONF_PARSER_GET_CONTAINER_H__
23
24 #include "base.h"
25
26 #include <string>
27
28 #include <strings.h>
29
30 namespace STG
31 {
32 namespace GET_CONTAINER
33 {
34
35 template <typename ELEMENT_PARSER>
36 class PARSER: public STG::PARSER
37 {
38 public:
39     typedef std::vector<typename ELEMENT_PARSER::INFO> INFO;
40     typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data);
41     PARSER(const std::string & t, CALLBACK f, void * d)
42         : tag(t), callback(f), data(d),
43           elementParser(&PARSER<ELEMENT_PARSER>::ElementCallback, this),
44           depth(0), parsingAnswer(false)
45     {}
46     int  ParseStart(const char * el, const char ** attr)
47     {
48     depth++;
49     if (depth == 1 && strcasecmp(el, tag.c_str()) == 0)
50         parsingAnswer = true;
51
52     if (depth > 1 && parsingAnswer)
53         elementParser.ParseStart(el, attr);
54
55     return 0;
56     }
57     void ParseEnd(const char * el)
58     {
59     depth--;
60     if (depth > 0 && parsingAnswer)
61         elementParser.ParseEnd(el);
62
63     if (depth == 0 && parsingAnswer)
64         {
65         if (callback)
66             callback(error.empty(), error, info, data);
67         error.clear();
68         info.clear();
69         parsingAnswer = false;
70         }
71     }
72
73 private:
74     std::string tag;
75     CALLBACK callback;
76     void * data;
77     ELEMENT_PARSER elementParser;
78     INFO info;
79     int depth;
80     bool parsingAnswer;
81     std::string error;
82
83     void AddElement(const typename ELEMENT_PARSER::INFO & elementInfo)
84     {
85     info.push_back(elementInfo);
86     }
87     void SetError(const std::string & e) { error = e; }
88
89     static void ElementCallback(bool result, const std::string& reason, const typename ELEMENT_PARSER::INFO & info, void * data)
90     {
91     PARSER<ELEMENT_PARSER> * parser = static_cast<PARSER<ELEMENT_PARSER> *>(data);
92     if (!result)
93         parser->SetError(reason);
94     else
95         parser->AddElement(info);
96     }
97 };
98
99 } // namespace GET_CONTAINER
100 } // namespace STG
101
102 #endif