1791f532e17f8b166f249b45fdb40ac7f066bb6c
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / network / published_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_PUBLISHEDSOCKETCONNECTOR_H
19 #define ANBOX_PUBLISHEDSOCKETCONNECTOR_H
20
21 #include <boost/asio/local/stream_protocol.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 PublishedSocketConnector : public DoNotCopyOrMove, public Connector {
32  public:
33   explicit PublishedSocketConnector(
34       const std::string& socket_file, const std::shared_ptr<Runtime>& rt,
35       const std::shared_ptr<ConnectionCreator<
36           boost::asio::local::stream_protocol>>& connection_creator);
37   ~PublishedSocketConnector() noexcept;
38
39   std::string socket_file() const { return socket_file_; }
40
41  private:
42   void start_accept();
43   void on_new_connection(
44       std::shared_ptr<boost::asio::local::stream_protocol::socket> const& socket,
45       boost::system::error_code const& err);
46
47   const std::string socket_file_;
48   std::shared_ptr<Runtime> runtime_;
49   std::shared_ptr<ConnectionCreator<boost::asio::local::stream_protocol>>
50       connection_creator_;
51   boost::asio::local::stream_protocol::acceptor acceptor_;
52 };
53 }  // namespace network
54 }  // namespace anbox
55
56 #endif