BufferedSocket.hxx 3.23 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2020 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef MPD_BUFFERED_SOCKET_HXX
#define MPD_BUFFERED_SOCKET_HXX

23
#include "SocketEvent.hxx"
24
#include "util/StaticFifoBuffer.hxx"
25

26
#include <cassert>
27
#include <cstdint>
28 29
#include <exception>

30
class EventLoop;
31

32
/**
33
 * A #SocketEvent specialization that adds an input buffer.
34
 */
35
class BufferedSocket {
36
	StaticFifoBuffer<uint8_t, 8192> input;
37

38 39 40
protected:
	SocketEvent event;

41
public:
42 43
	using ssize_t = SocketEvent::ssize_t;

44
	BufferedSocket(SocketDescriptor _fd, EventLoop &_loop) noexcept
45 46 47 48 49 50
		:event(_loop, BIND_THIS_METHOD(OnSocketReady), _fd) {
		event.ScheduleRead();
	}

	auto &GetEventLoop() const noexcept {
		return event.GetEventLoop();
51 52
	}

53 54 55 56 57 58 59 60 61 62 63
	bool IsDefined() const noexcept {
		return event.IsDefined();
	}

	auto GetSocket() const noexcept {
		return event.GetSocket();
	}

	void Close() noexcept {
		event.Close();
	}
64 65

private:
66 67 68 69 70
	/**
	 * @return the number of bytes read from the socket, 0 if the
	 * socket isn't ready for reading, -1 on error (the socket has
	 * been closed and probably destructed)
	 */
71
	ssize_t DirectRead(void *data, size_t length) noexcept;
72 73 74 75 76 77

	/**
	 * Receive data from the socket to the input buffer.
	 *
	 * @return false if the socket has been closed
	 */
78
	bool ReadToBuffer() noexcept;
79 80 81 82 83

protected:
	/**
	 * @return false if the socket has been closed
	 */
84
	bool ResumeInput() noexcept;
85 86 87 88 89 90 91

	/**
	 * Mark a portion of the input buffer "consumed".  Only
	 * allowed to be called from OnSocketInput().  This method
	 * does not invalidate the pointer passed to OnSocketInput()
	 * yet.
	 */
92
	void ConsumeInput(size_t nbytes) noexcept {
93 94 95 96
		assert(IsDefined());

		input.Consume(nbytes);
	}
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123

	enum class InputResult {
		/**
		 * The method was successful, and it is ready to
		 * read more data.
		 */
		MORE,

		/**
		 * The method does not want to get more data for now.
		 * It will call ResumeInput() when it's ready for
		 * more.
		 */
		PAUSE,

		/**
		 * The method wants to be called again immediately, if
		 * there's more data in the buffer.
		 */
		AGAIN,

		/**
		 * The method has closed the socket.
		 */
		CLOSED,
	};

124 125 126 127 128 129 130
	/**
	 * Data has been received on the socket.
	 *
	 * @param data a pointer to the beginning of the buffer; the
	 * buffer may be modified by the method while it processes the
	 * data
	 */
131
	virtual InputResult OnSocketInput(void *data, size_t length) noexcept = 0;
132

133 134
	virtual void OnSocketError(std::exception_ptr ep) noexcept = 0;
	virtual void OnSocketClosed() noexcept = 0;
135

136
	virtual void OnSocketReady(unsigned flags) noexcept;
137 138 139
};

#endif