MusicPipe.hxx 2.9 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 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 = nullptr;
42

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

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

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

52
#ifndef NDEBUG
53
	AudioFormat audio_format = AudioFormat::Undefined();
54 55
#endif

56 57 58 59
public:
	/**
	 * Creates a new #MusicPipe object.  It is empty.
	 */
60
	MusicPipe() = default;
61

62 63
	MusicPipe(const MusicPipe &) = delete;

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

72 73
	MusicPipe &operator=(const MusicPipe &) = delete;

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

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

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

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

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

	/**
	 * Pushes a chunk to the tail of the pipe.
	 */
116
	void Push(MusicChunk *chunk) noexcept;
117 118 119 120 121

	/**
	 * Returns the number of chunks currently in this pipe.
	 */
	gcc_pure
122
	unsigned GetSize() const noexcept {
123 124 125 126
		return size;
	}

	gcc_pure
127
	bool IsEmpty() const noexcept {
128 129 130
		return GetSize() == 0;
	}
};
131

132
#endif