Supporters update.
[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 "digester.h"
22 #include <boost/asio.hpp>
23 #include <boost/scoped_ptr.hpp>
24
25 /** @class Socket
26  *  @brief A class to wrap a boost::asio::ip::tcp::socket with some things
27  *  that are useful for DCP-o-matic.
28  *
29  *  This class wraps some things that I could not work out how to do easily with boost;
30  *  most notably, sync read/write calls with timeouts.
31  */
32 class Socket
33 {
34 public:
35         explicit Socket (int timeout = 30);
36
37         Socket (Socket const&) = delete;
38         Socket& operator= (Socket const&) = delete;
39
40         /** @return Our underlying socket */
41         boost::asio::ip::tcp::socket& socket () {
42                 return _socket;
43         }
44
45         void set_send_buffer_size (int size);
46         void connect (boost::asio::ip::tcp::endpoint);
47
48         void write (uint32_t n);
49         void write (uint8_t const * data, int size);
50
51         void read (uint8_t* data, int size);
52         uint32_t read_uint32 ();
53
54         class ReadDigestScope
55         {
56         public:
57                 ReadDigestScope (std::shared_ptr<Socket> socket);
58                 bool check ();
59         private:
60                 std::weak_ptr<Socket> _socket;
61         };
62
63         /** After one of these is created everything that is sent from the socket will be
64          *  added to a digest.  When the DigestScope is destroyed the digest will be sent
65          *  from the socket.
66          */
67         class WriteDigestScope
68         {
69         public:
70                 WriteDigestScope (std::shared_ptr<Socket> socket);
71                 ~WriteDigestScope ();
72         private:
73                 std::weak_ptr<Socket> _socket;
74         };
75
76 private:
77         friend class DigestScope;
78
79         void check ();
80         void start_read_digest ();
81         bool check_read_digest ();
82         void start_write_digest ();
83         void finish_write_digest ();
84
85         boost::asio::io_service _io_service;
86         boost::asio::deadline_timer _deadline;
87         boost::asio::ip::tcp::socket _socket;
88         int _timeout;
89         boost::scoped_ptr<Digester> _read_digester;
90         boost::scoped_ptr<Digester> _write_digester;
91         boost::optional<int> _send_buffer_size;
92 };