2011-07-02 14:38:06 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
|
* PokerTH - The open source texas holdem engine *
|
2012-12-25 15:06:23 +01:00
|
|
|
* Copyright (C) 2006-2012 Felix Hammer, Florian Thauer, Lothar May *
|
2011-07-02 14:38:06 +00:00
|
|
|
* *
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* GNU Affero General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
2012-12-25 15:06:23 +01:00
|
|
|
* *
|
|
|
|
|
* *
|
|
|
|
|
* Additional permission under GNU AGPL version 3 section 7 *
|
|
|
|
|
* *
|
|
|
|
|
* If you modify this program, or any covered work, by linking or *
|
|
|
|
|
* combining it with the OpenSSL project's OpenSSL library (or a *
|
|
|
|
|
* modified version of that library), containing parts covered by the *
|
|
|
|
|
* terms of the OpenSSL or SSLeay licenses, the authors of PokerTH *
|
|
|
|
|
* (Felix Hammer, Florian Thauer, Lothar May) grant you additional *
|
|
|
|
|
* permission to convey the resulting work. *
|
|
|
|
|
* Corresponding Source for a non-source form of such a combination *
|
|
|
|
|
* shall include the source code for the parts of OpenSSL used as well *
|
|
|
|
|
* as that of the covered work. *
|
2011-07-02 14:38:06 +00:00
|
|
|
*****************************************************************************/
|
2009-08-14 18:56:45 +00:00
|
|
|
/* Manager which acts as client for the chat cleaner service. */
|
|
|
|
|
|
|
|
|
|
#ifndef _CHATCLEANERMANAGER_H_
|
|
|
|
|
#define _CHATCLEANERMANAGER_H_
|
|
|
|
|
|
|
|
|
|
#include <boost/asio.hpp>
|
|
|
|
|
#include <boost/enable_shared_from_this.hpp>
|
|
|
|
|
#include <string>
|
2009-08-17 09:45:06 +00:00
|
|
|
#include <net/chatcleanercallback.h>
|
2013-08-29 22:18:44 +02:00
|
|
|
|
|
|
|
|
#define CLEANER_NET_HEADER_SIZE 4
|
|
|
|
|
#define MAX_CLEANER_PACKET_SIZE 512
|
|
|
|
|
#define CLEANER_PROTOCOL_VERSION 2
|
2009-08-14 18:56:45 +00:00
|
|
|
|
2013-09-15 22:54:45 +02:00
|
|
|
class AsioSendBuffer;
|
2013-08-29 22:18:44 +02:00
|
|
|
class ChatCleanerMessage;
|
2009-08-14 18:56:45 +00:00
|
|
|
|
|
|
|
|
class ChatCleanerManager : public boost::enable_shared_from_this<ChatCleanerManager>
|
|
|
|
|
{
|
|
|
|
|
public:
|
2009-08-17 09:45:06 +00:00
|
|
|
ChatCleanerManager(ChatCleanerCallback &cb, boost::shared_ptr<boost::asio::io_service> ioService);
|
2009-08-14 18:56:45 +00:00
|
|
|
virtual ~ChatCleanerManager();
|
|
|
|
|
|
|
|
|
|
void Init(const std::string &serverAddr, int port, bool ipv6,
|
|
|
|
|
const std::string &clientSecret, const std::string &serverSecret);
|
2009-08-17 11:26:03 +00:00
|
|
|
void ReInit();
|
2011-01-30 18:28:44 +00:00
|
|
|
void HandleLobbyChatText(unsigned playerId, const std::string &name, const std::string &text);
|
|
|
|
|
void HandleGameChatText(unsigned gameId, unsigned playerId, const std::string &name, const std::string &text);
|
2009-08-14 18:56:45 +00:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
void HandleResolve(const boost::system::error_code& ec, boost::asio::ip::tcp::resolver::iterator endpoint_iterator);
|
|
|
|
|
void HandleConnect(const boost::system::error_code& ec, boost::asio::ip::tcp::resolver::iterator endpoint_iterator);
|
|
|
|
|
void HandleRead(const boost::system::error_code &ec, size_t bytesRead);
|
2013-08-29 22:18:44 +02:00
|
|
|
bool HandleMessage(ChatCleanerMessage &msg);
|
2009-08-14 18:56:45 +00:00
|
|
|
|
2013-08-29 22:18:44 +02:00
|
|
|
void SendMessageToServer(ChatCleanerMessage &msg);
|
2009-08-14 18:56:45 +00:00
|
|
|
unsigned GetNextRequestId();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
2009-08-17 09:45:06 +00:00
|
|
|
ChatCleanerCallback &m_callback;
|
2009-08-14 18:56:45 +00:00
|
|
|
boost::shared_ptr<boost::asio::io_service> m_ioService;
|
|
|
|
|
boost::shared_ptr<boost::asio::ip::tcp::resolver> m_resolver;
|
|
|
|
|
boost::shared_ptr<boost::asio::ip::tcp::socket> m_socket;
|
2013-09-15 22:54:45 +02:00
|
|
|
boost::shared_ptr<AsioSendBuffer> m_sendManager;
|
2009-08-14 18:56:45 +00:00
|
|
|
|
|
|
|
|
bool m_connected;
|
|
|
|
|
unsigned m_curRequestId;
|
2009-08-17 11:26:03 +00:00
|
|
|
std::string m_serverAddr;
|
|
|
|
|
int m_serverPort;
|
|
|
|
|
bool m_useIpv6;
|
2009-08-14 18:56:45 +00:00
|
|
|
std::string m_clientSecret;
|
|
|
|
|
std::string m_serverSecret;
|
|
|
|
|
unsigned char m_recvBuf[2*MAX_CLEANER_PACKET_SIZE];
|
2011-04-10 10:04:42 +00:00
|
|
|
size_t m_recvBufUsed;
|
2009-08-14 18:56:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|