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 : Maxim Mamontov <faust@stargazer.dp.ua>
21 #ifndef __STG_SGCONFIG_CONN_H__
22 #define __STG_SGCONFIG_CONN_H__
26 #include "stg/os_int.h"
27 #include "stg/const.h"
34 #include <netinet/in.h>
52 struct Error : public std::runtime_error
54 Error(const std::string& message) : runtime_error(message.c_str()) {}
57 Conn(const BASE_PARSER::REGISTRY & registry,
58 ADMINS & admins, int sock, const sockaddr_in& addr,
59 PLUGIN_LOGGER & logger);
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 ntohs(m_addr.sin_port); }
68 bool IsOk() const { return m_state != ERROR; }
69 bool IsDone() const { return m_state == DONE; }
70 bool IsKeepAlive() const { return m_keepAlive; }
72 void SetKeepAlive() { m_keepAlive = true; }
76 static const char STG_HEADER[5];
77 static const char OK_HEADER[5];
78 static const char ERR_HEADER[5];
79 static const char OK_LOGIN[5];
80 static const char ERR_LOGIN[5];
81 static const char OK_LOGINS[5];
82 static const char ERR_LOGINS[5];
84 const BASE_PARSER::REGISTRY & m_registry;
94 BASE_PARSER * m_parser;
96 XML_Parser m_xmlParser;
98 enum { HEADER, LOGIN, CRYPTO_LOGIN, DATA, DONE, ERROR } m_state;
102 char m_header[sizeof(STG_HEADER) - 1]; // Without \0
103 char m_login[ADM_LOGIN_LEN]; // Without \0
104 char m_cryptoLogin[ADM_LOGIN_LEN]; // Without \0
106 STG::DECRYPT_STREAM * m_stream;
107 PLUGIN_LOGGER & m_logger;
109 BASE_PARSER * GetParser(const std::string & tag) const;
111 bool HandleBuffer(size_t size);
115 bool HandleCryptoLogin();
116 bool HandleData(size_t size);
118 bool WriteAnswer(const void* buffer, size_t size);
119 bool WriteResponse();
121 void Log(const char * file, const std::string & message);
125 DataState(bool f, Conn & c) : final(f), conn(c) {}
130 static bool DataCallback(const void * block, size_t size, void * data);
131 static void ParseXMLStart(void * data, const char * el, const char ** attr);
132 static void ParseXMLEnd(void * data, const char * el);
133 static bool WriteCallback(const void * block, size_t size, void * data);