/* Copyright (C) 2007-2008 by Marc Maurer * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #ifndef __IO_SERVER_HANDLER__ #define __IO_SERVER_HANDLER__ #include "ut_debugmsg.h" #include #include #include #include #include "Session.h" class TCPAccountHandler; using asio::ip::tcp; class IOServerHandler { public: IOServerHandler(int port, boost::function)> af, boost::function)> ef, asio::io_service& io_service_) : accept_synchronizer(boost::bind(&IOServerHandler::_signal, this)), io_service(io_service_), m_pAcceptor(NULL), session_ptr(), m_af(af), m_ef(ef) { UT_DEBUGMSG(("IOServerHandler()\n")); m_pAcceptor = new tcp::acceptor(io_service, tcp::endpoint(tcp::v4(), port)); } virtual ~IOServerHandler() { UT_DEBUGMSG(("IOServerHandler::~IOServerHandler()\n")); if (m_pAcceptor) stop(); } virtual void stop() { UT_DEBUGMSG(("IOServerHandler::stop()\n")); if (m_pAcceptor) { m_pAcceptor->close(); DELETEP(m_pAcceptor); } } void run() { UT_DEBUGMSG(("IOServerHandler::run()\n")); asyncAccept(); } void asyncAccept() { UT_DEBUGMSG(("IOServerHandler::asyncAccept()\n")); UT_return_if_fail(m_pAcceptor); session_ptr.reset(new Session(io_service, m_ef)); m_pAcceptor->async_accept(session_ptr->getSocket(), boost::bind(&IOServerHandler::handleAsyncAccept, this, asio::placeholders::error)); } private: void _signal() { UT_DEBUGMSG(("IOServerHandler::_signal()\n")); UT_return_if_fail(session_ptr); session_ptr->asyncReadHeader(); m_af(this, session_ptr); } void handleAsyncAccept(const asio::error_code& ec) { UT_DEBUGMSG(("IOServerHandler::handleAsyncAccept()\n")); if (ec) { UT_DEBUGMSG(("Error accepting connection: %s\n", ec.message().c_str())); return; } accept_synchronizer.signal(); } Synchronizer accept_synchronizer; asio::io_service& io_service; asio::ip::tcp::acceptor* m_pAcceptor; boost::shared_ptr session_ptr; boost::function)> m_af; boost::function)> m_ef; }; #endif /* __IO_SERVER_HANDLER__ */