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.
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.
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
18 * Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
19 * Author : Maxim Mamontov <faust@stargazer.dp.ua>
26 #include "stg/common.h"
27 #include "stg/optional.h"
40 class GET_ADMINS: public BASE_PARSER
43 class FACTORY : public BASE_PARSER::FACTORY
46 explicit 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); }
51 const Admins & m_admins;
54 static const char * tag;
56 GET_ADMINS(const Admin & admin, const Admins & admins)
57 : BASE_PARSER(admin, tag), m_admins(admins) {}
60 const Admins & m_admins;
65 class ADD_ADMIN: public BASE_PARSER
68 class FACTORY : public BASE_PARSER::FACTORY
71 explicit 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); }
79 static const char * tag;
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);
92 class DEL_ADMIN: public BASE_PARSER
95 class FACTORY : public BASE_PARSER::FACTORY
98 explicit 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); }
106 static const char * tag;
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);
119 class CHG_ADMIN: public BASE_PARSER
122 class FACTORY : public BASE_PARSER::FACTORY
125 explicit 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); }
133 static const char * tag;
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);
141 Optional<std::string> password;
142 Optional<std::string> privAsString;
148 } // namespace PARSER