]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/asio/example/cpp11/local/stream_server.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / asio / example / cpp11 / local / stream_server.cpp
1 //
2 // stream_server.cpp
3 // ~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
10
11 #include <array>
12 #include <cstdio>
13 #include <iostream>
14 #include <memory>
15 #include <boost/asio.hpp>
16
17 #if defined(BOOST_ASIO_HAS_LOCAL_SOCKETS)
18
19 using boost::asio::local::stream_protocol;
20
21 class session
22 : public std::enable_shared_from_this<session>
23 {
24 public:
25 session(stream_protocol::socket sock)
26 : socket_(std::move(sock))
27 {
28 }
29
30 void start()
31 {
32 do_read();
33 }
34
35 private:
36 void do_read()
37 {
38 auto self(shared_from_this());
39 socket_.async_read_some(boost::asio::buffer(data_),
40 [this, self](boost::system::error_code ec, std::size_t length)
41 {
42 if (!ec)
43 do_write(length);
44 });
45 }
46
47 void do_write(std::size_t length)
48 {
49 auto self(shared_from_this());
50 boost::asio::async_write(socket_,
51 boost::asio::buffer(data_, length),
52 [this, self](boost::system::error_code ec, std::size_t /*length*/)
53 {
54 if (!ec)
55 do_read();
56 });
57 }
58
59 // The socket used to communicate with the client.
60 stream_protocol::socket socket_;
61
62 // Buffer used to store data received from the client.
63 std::array<char, 1024> data_;
64 };
65
66 class server
67 {
68 public:
69 server(boost::asio::io_context& io_context, const std::string& file)
70 : acceptor_(io_context, stream_protocol::endpoint(file))
71 {
72 do_accept();
73 }
74
75 private:
76 void do_accept()
77 {
78 acceptor_.async_accept(
79 [this](boost::system::error_code ec, stream_protocol::socket socket)
80 {
81 if (!ec)
82 {
83 std::make_shared<session>(std::move(socket))->start();
84 }
85
86 do_accept();
87 });
88 }
89
90 stream_protocol::acceptor acceptor_;
91 };
92
93 int main(int argc, char* argv[])
94 {
95 try
96 {
97 if (argc != 2)
98 {
99 std::cerr << "Usage: stream_server <file>\n";
100 std::cerr << "*** WARNING: existing file is removed ***\n";
101 return 1;
102 }
103
104 boost::asio::io_context io_context;
105
106 std::remove(argv[1]);
107 server s(io_context, argv[1]);
108
109 io_context.run();
110 }
111 catch (std::exception& e)
112 {
113 std::cerr << "Exception: " << e.what() << "\n";
114 }
115
116 return 0;
117 }
118
119 #else // defined(BOOST_ASIO_HAS_LOCAL_SOCKETS)
120 # error Local sockets not available on this platform.
121 #endif // defined(BOOST_ASIO_HAS_LOCAL_SOCKETS)