Don't use --target-macos-arm64 any more, since it's not supported.
[dcpomatic.git] / src / lib / dcpomatic_socket.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include <boost/asio.hpp>
22 #include <boost/noncopyable.hpp>
23
24 /** @class Socket
25  *  @brief A class to wrap a boost::asio::ip::tcp::socket with some things
26  *  that are useful for DCP-o-matic.
27  *
28  *  This class wraps some things that I could not work out how to do easily with boost;
29  *  most notably, sync read/write calls with timeouts.
30  */
31 class Socket : public boost::noncopyable
32 {
33 public:
34         explicit Socket (int timeout = 30);
35
36         /** @return Our underlying socket */
37         boost::asio::ip::tcp::socket& socket () {
38                 return _socket;
39         }
40
41         void connect (boost::asio::ip::tcp::endpoint);
42
43         void write (uint32_t n);
44         void write (uint8_t const * data, int size);
45
46         void read (uint8_t* data, int size);
47         uint32_t read_uint32 ();
48
49 private:
50         void check ();
51
52         Socket (Socket const &);
53
54         boost::asio::io_service _io_service;
55         boost::asio::deadline_timer _deadline;
56         boost::asio::ip::tcp::socket _socket;
57         int _timeout;
58 };