92fa638ea5b13ff3b25f281022ce84665d3fae6b
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / network / connection_context.h
1 /*
2  * Copyright © 2014 Canonical Ltd.
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,
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Alan Griffiths <alan@octopull.co.uk>
17  */
18
19 #ifndef ANBOX_NETWORK_CONNECTION_CONTEXT_H_
20 #define ANBOX_NETWORK_CONNECTION_CONTEXT_H_
21
22 #include <functional>
23 #include <memory>
24
25 namespace anbox {
26 namespace network {
27 class Connector;
28
29 class ConnectionContext {
30  public:
31   ConnectionContext(Connector const* connector)
32       : ConnectionContext([]() {}, connector) {}
33   ConnectionContext(std::function<void()> const connect_handler,
34                     Connector const* connector);
35
36   int fd_for_new_client(std::function<void()> const& connect_handler) const;
37   void handle_client_connect() const { connect_handler(); }
38
39  private:
40   std::function<void()> const connect_handler;
41   Connector const* const connector;
42 };
43 }  // namespace anbox
44 }  // namespace network
45
46 #endif