]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/configuration/sgconfig/parser_admins.h
3b99e6422fc269043c068c04d0b1c8327d767151
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / parser_admins.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 : Boris Mikhailenko <stg34@stargazer.dp.ua>
19  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
20  */
21
22 #ifndef __STG_SGCONFIG_PARSER_ADMINS_H__
23 #define __STG_SGCONFIG_PARSER_ADMINS_H__
24
25 #include "parser.h"
26
27 #include "stg/common.h"
28 #include "stg/resetable.h"
29
30 #include <string>
31
32 class ADMINS;
33 class ADMIN;
34
35 namespace STG
36 {
37 namespace PARSER
38 {
39
40 class GET_ADMINS: public BASE_PARSER
41 {
42     public:
43         class FACTORY : public BASE_PARSER::FACTORY
44         {
45             public:
46                 FACTORY(const ADMINS & admins) : m_admins(admins) {}
47                 virtual BASE_PARSER * create(const ADMIN & admin) { return new GET_ADMINS(admin, m_admins); }
48                 static void Register(REGISTRY & registry, const ADMINS & admins)
49                 { registry[ToLower(tag)] = new FACTORY(admins); }
50             private:
51                 const ADMINS & m_admins;
52         };
53
54         static const char * tag;
55
56         GET_ADMINS(const ADMIN & admin, const ADMINS & admins)
57             : BASE_PARSER(admin, tag), m_admins(admins) {}
58
59     private:
60         const ADMINS & m_admins;
61
62         void CreateAnswer();
63 };
64
65 class ADD_ADMIN: public BASE_PARSER
66 {
67     public:
68         class FACTORY : public BASE_PARSER::FACTORY
69         {
70             public:
71                 FACTORY(ADMINS & admins) : m_admins(admins) {}
72                 virtual BASE_PARSER * create(const ADMIN & admin) { return new ADD_ADMIN(admin, m_admins); }
73                 static void Register(REGISTRY & registry, ADMINS & admins)
74                 { registry[ToLower(tag)] = new FACTORY(admins); }
75             private:
76                 ADMINS & m_admins;
77         };
78
79         static const char * tag;
80
81         ADD_ADMIN(const ADMIN & admin, ADMINS & admins)
82             : BASE_PARSER(admin, tag), m_admins(admins) {}
83         int Start(void * data, const char * el, const char ** attr);
84
85     private:
86         std::string m_admin;
87         ADMINS & m_admins;
88
89         void CreateAnswer();
90 };
91
92 class DEL_ADMIN: public BASE_PARSER
93 {
94     public:
95         class FACTORY : public BASE_PARSER::FACTORY
96         {
97             public:
98                 FACTORY(ADMINS & admins) : m_admins(admins) {}
99                 virtual BASE_PARSER * create(const ADMIN & admin) { return new DEL_ADMIN(admin, m_admins); }
100                 static void Register(REGISTRY & registry, ADMINS & admins)
101                 { registry[ToLower(tag)] = new FACTORY(admins); }
102             private:
103                 ADMINS & m_admins;
104         };
105
106         static const char * tag;
107
108         DEL_ADMIN(const ADMIN & admin, ADMINS & admins)
109             : BASE_PARSER(admin, tag), m_admins(admins) {}
110         int Start(void * data, const char * el, const char ** attr);
111
112     private:
113         std::string m_admin;
114         ADMINS & m_admins;
115
116         void CreateAnswer();
117 };
118
119 class CHG_ADMIN: public BASE_PARSER
120 {
121     public:
122         class FACTORY : public BASE_PARSER::FACTORY
123         {
124             public:
125                 FACTORY(ADMINS & admins) : m_admins(admins) {}
126                 virtual BASE_PARSER * create(const ADMIN & admin) { return new CHG_ADMIN(admin, m_admins); }
127                 static void Register(REGISTRY & registry, ADMINS & admins)
128                 { registry[ToLower(tag)] = new FACTORY(admins); }
129             private:
130                 ADMINS & m_admins;
131         };
132
133         static const char * tag;
134
135         CHG_ADMIN(const ADMIN & admin, ADMINS & admins)
136             : BASE_PARSER(admin, tag), m_admins(admins) {}
137         int Start(void * data, const char * el, const char ** attr);
138
139     private:
140         std::string login;
141         RESETABLE<std::string> password;
142         RESETABLE<std::string> privAsString;
143         ADMINS & m_admins;
144
145         void CreateAnswer();
146 };
147
148 } // namespace PARSER
149 } // namespace STG
150
151 #endif