]> git.stg.codes - stg.git/blob - projects/rlm_stg/stg_client.h
Final icing on rlm_stg.
[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 <string>
29 #include <vector>
30 #include <utility>
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     STG::SGCP::TransportType transport;
48     std::string key;
49     std::string address;
50     uint16_t port;
51 };
52
53 class STG_CLIENT
54 {
55 public:
56     enum TYPE {
57         AUTHORIZE,
58         AUTHENTICATE,
59         POST_AUTH,
60         PRE_ACCT,
61         ACCOUNT
62     };
63     struct Error : std::runtime_error {
64         Error(const std::string& message) : runtime_error(message) {}
65     };
66
67     STG_CLIENT(const std::string& address);
68     ~STG_CLIENT();
69
70     static STG_CLIENT* get();
71     static bool configure(const std::string& address);
72
73     RESULT request(TYPE type, const std::string& userName, const std::string& password, const PAIRS& pairs);
74
75 private:
76     ChannelConfig m_config;
77     STG::SGCP::Proto m_proto;
78
79     void m_writeHeader(TYPE type, const std::string& userName, const std::string& password);
80     void m_writePairBlock(const PAIRS& source);
81     PAIRS m_readPairBlock();
82 };
83
84 #endif