2009-03-06 00:42:03 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-03-06 00:42:03 +01:00
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-06 00:42:03 +01:00
|
|
|
*/
|
|
|
|
|
2013-01-04 10:16:16 +01:00
|
|
|
#ifndef MPD_MUSIC_BUFFER_HXX
|
|
|
|
#define MPD_MUSIC_BUFFER_HXX
|
2009-03-06 00:42:03 +01:00
|
|
|
|
2013-09-26 22:09:42 +02:00
|
|
|
#include "util/SliceBuffer.hxx"
|
|
|
|
#include "thread/Mutex.hxx"
|
|
|
|
|
2014-08-12 15:56:41 +02:00
|
|
|
struct MusicChunk;
|
2013-09-26 22:09:42 +02:00
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
/**
|
2014-08-12 15:56:41 +02:00
|
|
|
* An allocator for #MusicChunk objects.
|
2009-03-06 00:42:03 +01:00
|
|
|
*/
|
2013-09-26 22:09:42 +02:00
|
|
|
class MusicBuffer {
|
|
|
|
/** a mutex which protects #buffer */
|
|
|
|
Mutex mutex;
|
2009-03-06 00:42:03 +01:00
|
|
|
|
2014-08-12 15:56:41 +02:00
|
|
|
SliceBuffer<MusicChunk> buffer;
|
2009-03-06 00:42:03 +01:00
|
|
|
|
2013-09-26 22:09:42 +02:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Creates a new #MusicBuffer object.
|
|
|
|
*
|
2014-08-12 15:56:41 +02:00
|
|
|
* @param num_chunks the number of #MusicChunk reserved in
|
2013-09-26 22:09:42 +02:00
|
|
|
* this buffer
|
|
|
|
*/
|
|
|
|
MusicBuffer(unsigned num_chunks);
|
2009-03-06 00:42:03 +01:00
|
|
|
|
2013-09-26 22:41:07 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
/**
|
|
|
|
* Check whether the buffer is empty. This call is not
|
|
|
|
* protected with the mutex, and may only be used while this
|
|
|
|
* object is inaccessible to other threads.
|
|
|
|
*/
|
|
|
|
bool IsEmptyUnsafe() const {
|
|
|
|
return buffer.IsEmpty();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-09-26 22:09:42 +02:00
|
|
|
/**
|
|
|
|
* Returns the total number of reserved chunks in this buffer. This
|
|
|
|
* is the same value which was passed to the constructor
|
|
|
|
* music_buffer_new().
|
|
|
|
*/
|
|
|
|
gcc_pure
|
|
|
|
unsigned GetSize() const {
|
|
|
|
return buffer.GetCapacity();
|
|
|
|
}
|
2009-03-06 00:42:03 +01:00
|
|
|
|
2013-09-26 22:09:42 +02:00
|
|
|
/**
|
|
|
|
* Allocates a chunk from the buffer. When it is not used anymore,
|
|
|
|
* call Return().
|
|
|
|
*
|
|
|
|
* @return an empty chunk or nullptr if there are no chunks
|
|
|
|
* available
|
|
|
|
*/
|
2014-08-12 15:56:41 +02:00
|
|
|
MusicChunk *Allocate();
|
2009-03-06 00:42:03 +01:00
|
|
|
|
2013-09-26 22:09:42 +02:00
|
|
|
/**
|
|
|
|
* Returns a chunk to the buffer. It can be reused by
|
|
|
|
* Allocate() then.
|
|
|
|
*/
|
2014-08-12 15:56:41 +02:00
|
|
|
void Return(MusicChunk *chunk);
|
2013-09-26 22:09:42 +02:00
|
|
|
};
|
2009-03-06 00:42:03 +01:00
|
|
|
|
|
|
|
#endif
|