summaryrefslogtreecommitdiffstats
path: root/lib/Socket.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2020-04-21 15:56:26 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2020-04-21 15:56:26 +0200
commitcd5ef5af74b7dbee8c27549cd219a4ce5a0999c5 (patch)
treecbbf0814c367f39af3ce549fe76f6f82bf9a044f /lib/Socket.h
parenta92840837bff745b499264ad5180232a1a9fc5d2 (diff)
downloaddabmux-cd5ef5af74b7dbee8c27549cd219a4ce5a0999c5.tar.gz
dabmux-cd5ef5af74b7dbee8c27549cd219a4ce5a0999c5.tar.bz2
dabmux-cd5ef5af74b7dbee8c27549cd219a4ce5a0999c5.zip
Common 33a8362: EDI TCP output: handle disconnects
Diffstat (limited to 'lib/Socket.h')
-rw-r--r--lib/Socket.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/Socket.h b/lib/Socket.h
index b9f6317..84def40 100644
--- a/lib/Socket.h
+++ b/lib/Socket.h
@@ -291,4 +291,32 @@ class TCPReceiveServer {
TCPSocket m_listener_socket;
};
+/* A TCP client that abstracts the handling of connects and disconnects.
+ */
+class TCPSendClient {
+ public:
+ TCPSendClient(const std::string& hostname, int port);
+ ~TCPSendClient();
+
+ /* Throws a runtime_error on error
+ */
+ void sendall(const std::vector<uint8_t>& buffer);
+
+ private:
+ void process();
+
+ std::string m_hostname;
+ int m_port;
+
+ bool m_is_connected = false;
+
+ TCPSocket m_sock;
+ static constexpr size_t MAX_QUEUE_SIZE = 1024;
+ ThreadsafeQueue<std::vector<uint8_t> > m_queue;
+ std::atomic<bool> m_running;
+ std::string m_exception_data;
+ std::thread m_sender_thread;
+ TCPSocket m_listener_socket;
+};
+
}