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