MusicPipe.hxx 2.77 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2015 The Music Player Daemon Project
3
 * http://www.musicpd.org
4 5 6 7 8 9 10 11 12 13
 *
 * 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.
14 15 16 17
 *
 * 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.
18 19
 */

20 21
#ifndef MPD_PIPE_H
#define MPD_PIPE_H
22

23
#include "thread/Mutex.hxx"
24
#include "Compiler.h"
25

Andreas Wiese's avatar
Andreas Wiese committed
26
#ifndef NDEBUG
27
#include "AudioFormat.hxx"
28 29
#endif

30 31
#include <assert.h>

32
struct MusicChunk;
33
class MusicBuffer;
34

35
/**
36
 * A queue of #MusicChunk objects.  One party appends chunks at the
37
 * tail, and the other consumes them from the head.
Max Kellermann's avatar
Max Kellermann committed
38
 */
39 40
class MusicPipe {
	/** the first chunk */
41
	MusicChunk *head;
42

43
	/** a pointer to the tail of the chunk */
44
	MusicChunk **tail_r;
45

46 47
	/** the current number of chunks */
	unsigned size;
48

49 50
	/** a mutex which protects #head and #tail_r */
	mutable Mutex mutex;
51

52 53
#ifndef NDEBUG
	AudioFormat audio_format;
54 55
#endif

56 57 58 59 60 61 62 63 64 65
public:
	/**
	 * Creates a new #MusicPipe object.  It is empty.
	 */
	MusicPipe()
		:head(nullptr), tail_r(&head), size(0) {
#ifndef NDEBUG
		audio_format.Clear();
#endif
	}
66

67 68 69 70 71 72 73
	/**
	 * Frees the object.  It must be empty now.
	 */
	~MusicPipe() {
		assert(head == nullptr);
		assert(tail_r == &head);
	}
74

75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
#ifndef NDEBUG
	/**
	 * Checks if the audio format if the chunk is equal to the specified
	 * audio_format.
	 */
	gcc_pure
	bool CheckFormat(AudioFormat other) const {
		return !audio_format.IsDefined() ||
			audio_format == other;
	}

	/**
	 * Checks if the specified chunk is enqueued in the music pipe.
	 */
	gcc_pure
90
	bool Contains(const MusicChunk *chunk) const;
91
#endif
92

93
	/**
94
	 * Returns the first #MusicChunk from the pipe.  Returns
95 96 97
	 * nullptr if the pipe is empty.
	 */
	gcc_pure
98
	const MusicChunk *Peek() const {
99 100 101 102 103 104
		return head;
	}

	/**
	 * Removes the first chunk from the head, and returns it.
	 */
105
	MusicChunk *Shift();
106 107 108 109 110 111

	/**
	 * Clears the whole pipe and returns the chunks to the buffer.
	 *
	 * @param buffer the buffer object to return the chunks to
	 */
112
	void Clear(MusicBuffer &buffer);
113 114 115 116

	/**
	 * Pushes a chunk to the tail of the pipe.
	 */
117
	void Push(MusicChunk *chunk);
118 119 120 121 122 123 124 125 126 127 128 129 130 131

	/**
	 * Returns the number of chunks currently in this pipe.
	 */
	gcc_pure
	unsigned GetSize() const {
		return size;
	}

	gcc_pure
	bool IsEmpty() const {
		return GetSize() == 0;
	}
};
132

133
#endif