Otclient  14/8/2020
server.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2020 OTClient <https://github.com/edubart/otclient>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22 
23 #include "server.h"
24 #include "connection.h"
25 
26 extern asio::io_service g_ioService;
27 
28 Server::Server(int port)
29  : m_acceptor(g_ioService, asio::ip::tcp::endpoint(asio::ip::tcp::v4(), port))
30 {
31 }
32 
34 {
35  try {
36  Server *server = new Server(port);
37  return ServerPtr(server);
38  }
39  catch(const std::exception& e) {
40  g_logger.error(stdext::format("Failed to initialize server: %s", e.what()));
41  return ServerPtr();
42  }
43 }
44 
46 {
47  m_isOpen = false;
48  m_acceptor.cancel();
49  m_acceptor.close();
50 }
51 
53 {
54  ConnectionPtr connection = ConnectionPtr(new Connection);
55  connection->m_connecting = true;
56  auto self = static_self_cast<Server>();
57  m_acceptor.async_accept(connection->m_socket, [=](const boost::system::error_code& error) {
58  if(!error) {
59  connection->m_connected = true;
60  connection->m_connecting = false;
61  }
62  self->callLuaField("onAccept", connection, error.message(), error.value());
63  });
64 }
ConnectionPtr
stdext::shared_object_ptr< Connection > ConnectionPtr
Definition: declarations.h:41
Server
Definition: server.h:29
Logger::error
void error(const std::string &what)
Definition: logger.h:54
stdext::format
std::string format()
Definition: format.h:82
Server::close
void close()
Definition: server.cpp:45
Server::Server
Server(int port)
Definition: server.cpp:28
Connection
Definition: connection.h:31
g_logger
Logger g_logger
Definition: logger.cpp:35
Server::acceptNext
void acceptNext()
Definition: server.cpp:52
Connection::m_socket
asio::ip::tcp::socket m_socket
Definition: connection.h:87
ServerPtr
stdext::shared_object_ptr< Server > ServerPtr
Definition: declarations.h:44
connection.h
stdext::shared_object_ptr
Definition: shared_object.h:39
g_ioService
asio::io_service g_ioService
Definition: connection.cpp:31
Connection::m_connecting
bool m_connecting
Definition: connection.h:93
server.h
Server::create
static ServerPtr create(int port)
Definition: server.cpp:33