]> git.stg.codes - stg.git/blob - projects/rlm_stg/stg_client.h
Experimental implementation of SGCP using Boost.Asio.
[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/sgcp_proto.h" // Proto
25 #include "stg/sgcp_types.h" // TransportType
26 #include "stg/os_int.h"
27
28 #include <boost/thread.hpp>
29
30 #include <string>
31 #include <vector>
32 #include <utility>
33
34 typedef std::vector<std::pair<std::string, std::string> > PAIRS;
35
36 struct RESULT
37 {
38     PAIRS modify;
39     PAIRS reply;
40 };
41
42 struct ChannelConfig {
43     struct Error : std::runtime_error {
44         Error(const std::string& message) : runtime_error(message) {}
45     };
46
47     ChannelConfig(std::string address);
48
49     STG::SGCP::TransportType transport;
50     std::string key;
51     std::string address;
52     uint16_t port;
53 };
54
55 class STG_CLIENT
56 {
57 public:
58     enum TYPE {
59         AUTHORIZE,
60         AUTHENTICATE,
61         POST_AUTH,
62         PRE_ACCT,
63         ACCOUNT
64     };
65     struct Error : std::runtime_error {
66         Error(const std::string& message) : runtime_error(message) {}
67     };
68
69     STG_CLIENT(const std::string& address);
70     ~STG_CLIENT();
71
72     bool stop();
73
74     static STG_CLIENT* get();
75     static bool configure(const std::string& address);
76
77     RESULT request(TYPE type, const std::string& userName, const std::string& password, const PAIRS& pairs);
78
79 private:
80     ChannelConfig m_config;
81     STG::SGCP::Proto m_proto;
82     boost::thread m_thread;
83
84     void m_writeHeader(TYPE type, const std::string& userName, const std::string& password);
85     void m_writePairBlock(const PAIRS& source);
86     PAIRS m_readPairBlock();
87
88     void m_run();
89 };
90
91 #endif