2013-01-10 19:05:47 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
|
|
|
* 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
|
|
|
|
|
|
|
|
#include "check.h"
|
|
|
|
#include "SocketMonitor.hxx"
|
2013-10-15 10:28:52 +02:00
|
|
|
#include "util/FifoBuffer.hxx"
|
2013-10-15 09:21:13 +02:00
|
|
|
#include "Compiler.h"
|
2013-01-10 19:05:47 +01:00
|
|
|
|
2013-10-15 10:28:52 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-01-10 19:05:47 +01:00
|
|
|
struct fifo_buffer;
|
2013-08-10 18:02:44 +02:00
|
|
|
class Error;
|
2013-01-10 19:05:47 +01:00
|
|
|
|
2013-01-30 10:36:47 +01:00
|
|
|
/**
|
|
|
|
* A #SocketMonitor specialization that adds an input buffer.
|
|
|
|
*/
|
|
|
|
class BufferedSocket : protected SocketMonitor {
|
2013-10-15 10:28:52 +02:00
|
|
|
FifoBuffer<uint8_t, 8192> input;
|
2013-01-10 19:05:47 +01:00
|
|
|
|
|
|
|
public:
|
2013-01-30 10:36:47 +01:00
|
|
|
BufferedSocket(int _fd, EventLoop &_loop)
|
2013-10-15 10:28:52 +02:00
|
|
|
:SocketMonitor(_fd, _loop) {
|
2013-01-10 19:05:47 +01:00
|
|
|
ScheduleRead();
|
|
|
|
}
|
|
|
|
|
|
|
|
using SocketMonitor::IsDefined;
|
|
|
|
using SocketMonitor::Close;
|
2013-01-30 10:36:47 +01:00
|
|
|
using SocketMonitor::Write;
|
2013-01-10 19:05:47 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
ssize_t DirectRead(void *data, size_t length);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Receive data from the socket to the input buffer.
|
|
|
|
*
|
|
|
|
* @return false if the socket has been closed
|
|
|
|
*/
|
|
|
|
bool ReadToBuffer();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* @return false if the socket has been closed
|
|
|
|
*/
|
|
|
|
bool ResumeInput();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-10-15 10:28:52 +02:00
|
|
|
void ConsumeInput(size_t nbytes) {
|
|
|
|
assert(IsDefined());
|
|
|
|
|
|
|
|
input.Consume(nbytes);
|
|
|
|
}
|
2013-01-10 19:05:47 +01:00
|
|
|
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual InputResult OnSocketInput(const void *data, size_t length) = 0;
|
2013-08-10 18:02:44 +02:00
|
|
|
virtual void OnSocketError(Error &&error) = 0;
|
2013-01-10 19:05:47 +01:00
|
|
|
virtual void OnSocketClosed() = 0;
|
|
|
|
|
2013-01-30 10:53:32 +01:00
|
|
|
virtual bool OnSocketReady(unsigned flags) override;
|
2013-01-10 19:05:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|