]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/configuration/sgconfig/conn.h
Added client connection class into sgconfig.
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / conn.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_SGCONFIG_CONN_H__
22 #define __STG_SGCONFIG_CONN_H__
23
24 #include "stg/os_int.h"
25 #include "stg/const.h"
26
27 #include <stdexcept>
28 #include <string>
29 #include <map>
30
31 #include <expat.h>
32
33 #include <linux/in.h>
34
35 class SETTINGS;
36 class ADMINS;
37 class USERS;
38 class TARIFFS;
39 class ADMIN;
40 class BASE_PARSER;
41
42 namespace STG
43 {
44
45 class DECRYPT_STREAM;
46
47 class Conn
48 {
49     public:
50         struct Error : public std::runtime_error
51         {
52             Error(const std::string& message) : runtime_error(message.c_str()) {}
53         };
54
55         Conn(const SETTINGS & settings,
56              ADMINS & admins,
57              USERS & users,
58              TARIFFS & tariffs,
59              int sock, const sockaddr_in& addr);
60         ~Conn();
61
62         int Sock() const { return m_sock; }
63         uint32_t IP() const { return *(uint32_t *)(&m_addr.sin_addr); }
64         uint16_t Port() const { return m_addr.sin_port; }
65
66         bool Read();
67
68         bool IsOk() const { return m_state != ERROR; }
69         bool IsKeepAlive() const { return m_keepAlive; }
70
71     private:
72
73         static const char STG_HEADER[5];
74         static const char OK_HEADER[5];
75         static const char ERR_HEADER[5];
76         static const char OK_LOGIN[5];
77         static const char ERR_LOGIN[5];
78         static const char OK_LOGINS[5];
79         static const char ERR_LOGINS[5];
80
81         const SETTINGS & m_settings;
82         ADMINS & m_admins;
83         USERS & m_users;
84         TARIFFS & m_tariffs;
85
86         ADMIN * m_admin;
87
88         int m_sock;
89         sockaddr_in m_addr;
90         bool m_keepAlive;
91
92         BASE_PARSER * m_parser;
93
94         XML_Parser m_xmlParser;
95
96         enum { HEADER, LOGIN, CRYPTO_LOGIN, DATA, ERROR } m_state;
97
98         void * m_buffer;
99         size_t m_bufferSize;
100         char m_header[sizeof(STG_HEADER)];
101         char m_login[ADM_LOGIN_LEN + 1];
102         char m_cryptoLogin[ADM_LOGIN_LEN + 1];
103         char m_data[1024];
104         STG::DECRYPT_STREAM * m_stream;
105
106         BASE_PARSER * GetParser(const std::string & tag);
107
108         bool HandleBuffer(size_t size);
109
110         bool HandleHeader();
111         bool HandleLogin();
112         bool HandleCryptoLogin();
113         bool HandleData(size_t size);
114
115         struct DataState
116         {
117             DataState(bool f, Conn & c) : final(f), conn(c) {}
118             bool final;
119             Conn & conn;
120         } m_dataState;
121
122         static bool DataCallback(const void * block, size_t size, void * data);
123         static void ParseXMLStart(void * data, const char * el, const char ** attr);
124         static void ParseXMLEnd(void * data, const char * el);
125 };
126
127 }
128
129 #endif