94fa0a3fb62039b7023d88687857a686bbb37472
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / network / tcp_socket_connector.h
1 /*
2  * Copyright (C) 2016 Simon Fels <morphis@gravedo.de>
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 3, as published
6  * by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranties of
10  * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
11  * PURPOSE.  See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  */
17
18 #ifndef ANBOX_TCPSOCKETCONNECTOR_H
19 #define ANBOX_TCPSOCKETCONNECTOR_H
20
21 #include <boost/asio/ip/tcp.hpp>
22
23 #include "anbox/do_not_copy_or_move.h"
24 #include "anbox/runtime.h"
25
26 #include "anbox/network/connection_creator.h"
27 #include "anbox/network/connector.h"
28
29 namespace anbox {
30 namespace network {
31 class TcpSocketConnector : public DoNotCopyOrMove, public Connector {
32  public:
33   explicit TcpSocketConnector(
34       const boost::asio::ip::address_v4 &address, unsigned short port,
35       const std::shared_ptr<Runtime> &rt,
36       const std::shared_ptr<ConnectionCreator<boost::asio::ip::tcp>>
37           &connection_creator);
38   ~TcpSocketConnector() noexcept;
39
40   unsigned short port() const { return port_; }
41
42  private:
43   void start_accept();
44   void on_new_connection(
45       std::shared_ptr<boost::asio::ip::tcp::socket> const &socket,
46       boost::system::error_code const &err);
47
48   boost::asio::ip::address_v4 address_;
49   unsigned short port_;
50   std::shared_ptr<Runtime> runtime_;
51   std::shared_ptr<ConnectionCreator<boost::asio::ip::tcp>> connection_creator_;
52   boost::asio::ip::tcp::acceptor acceptor_;
53 };
54 }  // namespace network
55 }  // namespace anbox
56
57 #endif