]> git.stg.codes - stg.git/blob - projects/rlm_stg/stg_client.h
b90b0e605265d32e2d7e07b05effb5939b75f1a5
[stg.git] / projects / rlm_stg / stg_client.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_CLIENT_H
22 #define STG_CLIENT_H
23
24 #include "stg/os_int.h"
25
26 #include <boost/scoped_ptr.hpp>
27
28 #include <string>
29 #include <vector>
30 #include <stdexcept>
31
32 typedef std::vector<std::pair<std::string, std::string> > PAIRS;
33
34 struct RESULT
35 {
36     PAIRS modify;
37     PAIRS reply;
38 };
39
40 struct ChannelConfig {
41     struct Error : std::runtime_error {
42         Error(const std::string& message) : runtime_error(message) {}
43     };
44
45     ChannelConfig(std::string address);
46
47     std::string transport;
48     std::string key;
49     std::string address;
50     std::string portStr;
51     uint16_t port;
52 };
53
54 class STG_CLIENT
55 {
56 public:
57     enum TYPE {
58         AUTHORIZE,
59         AUTHENTICATE,
60         POST_AUTH,
61         PRE_ACCT,
62         ACCOUNT
63     };
64     struct Error : std::runtime_error {
65         Error(const std::string& message) : runtime_error(message) {}
66     };
67
68     typedef bool (*Callback)(void* /*data*/, const RESULT& /*result*/, bool /*status*/);
69
70     STG_CLIENT(const std::string& address, Callback callback, void* data);
71     STG_CLIENT(const STG_CLIENT& rhs);
72     ~STG_CLIENT();
73
74     bool stop();
75     bool connected() const;
76
77     static STG_CLIENT* get();
78     static bool configure(const std::string& address, Callback callback, void* data);
79     static bool reconnect();
80
81     bool request(TYPE type, const std::string& userName, const std::string& password, const PAIRS& pairs);
82
83 private:
84     class Impl;
85     boost::scoped_ptr<Impl> m_impl;
86 };
87
88 #endif