Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[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
23 /** @class Socket
24  *  @brief A class to wrap a boost::asio::ip::tcp::socket with some things
25  *  that are useful for DCP-o-matic.
26  *
27  *  This class wraps some things that I could not work out how to do easily with boost;
28  *  most notably, sync read/write calls with timeouts.
29  */
30 class Socket : public boost::noncopyable
31 {
32 public:
33         Socket (int timeout = 30);
34
35         /** @return Our underlying socket */
36         boost::asio::ip::tcp::socket& socket () {
37                 return _socket;
38         }
39
40         void connect (boost::asio::ip::tcp::endpoint);
41
42         void write (uint32_t n);
43         void write (uint8_t const * data, int size);
44
45         void read (uint8_t* data, int size);
46         uint32_t read_uint32 ();
47
48 private:
49         void check ();
50
51         Socket (Socket const &);
52
53         boost::asio::io_service _io_service;
54         boost::asio::deadline_timer _deadline;
55         boost::asio::ip::tcp::socket _socket;
56         int _timeout;
57 };