Rename TYPE_DEBUG_PLAYER to TYPE_DEBUG_VIDEO_VIEW.
[dcpomatic.git] / src / lib / dcpomatic_socket.h
index fa5250a1ad184225f6994f0c6767dd072c28e9c5..1fa0b046f0c1c7e2490865bfaa41a99114f8dcfb 100644 (file)
 
 */
 
+#include "digester.h"
 #include <boost/asio.hpp>
+#include <boost/noncopyable.hpp>
+#include <boost/scoped_ptr.hpp>
+#include <boost/weak_ptr.hpp>
 
 /** @class Socket
  *  @brief A class to wrap a boost::asio::ip::tcp::socket with some things
@@ -30,7 +34,7 @@
 class Socket : public boost::noncopyable
 {
 public:
-       Socket (int timeout = 30);
+       explicit Socket (int timeout = 30);
 
        /** @return Our underlying socket */
        boost::asio::ip::tcp::socket& socket () {
@@ -45,8 +49,36 @@ public:
        void read (uint8_t* data, int size);
        uint32_t read_uint32 ();
 
+       class ReadDigestScope
+       {
+       public:
+               ReadDigestScope (boost::shared_ptr<Socket> socket);
+               bool check ();
+       private:
+               boost::weak_ptr<Socket> _socket;
+       };
+
+       /** After one of these is created everything that is sent from the socket will be
+        *  added to a digest.  When the DigestScope is destroyed the digest will be sent
+        *  from the socket.
+        */
+       class WriteDigestScope
+       {
+       public:
+               WriteDigestScope (boost::shared_ptr<Socket> socket);
+               ~WriteDigestScope ();
+       private:
+               boost::weak_ptr<Socket> _socket;
+       };
+
 private:
+       friend class DigestScope;
+
        void check ();
+       void start_read_digest ();
+       bool check_read_digest ();
+       void start_write_digest ();
+       void finish_write_digest ();
 
        Socket (Socket const &);
 
@@ -54,4 +86,6 @@ private:
        boost::asio::deadline_timer _deadline;
        boost::asio::ip::tcp::socket _socket;
        int _timeout;
+       boost::scoped_ptr<Digester> _read_digester;
+       boost::scoped_ptr<Digester> _write_digester;
 };