HttpdInternal.hxx 5.35 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 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 23 24 25 26 27
 * 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.
 */

/** \file
 *
 * Internal declarations for the "httpd" audio output plugin.
 */

#ifndef MPD_OUTPUT_HTTPD_INTERNAL_H
#define MPD_OUTPUT_HTTPD_INTERNAL_H

28
#include "HttpdClient.hxx"
29 30
#include "output/Internal.hxx"
#include "output/Timer.hxx"
31
#include "thread/Mutex.hxx"
32
#include "event/ServerSocket.hxx"
33
#include "event/DeferredMonitor.hxx"
34
#include "util/Cast.hxx"
35
#include "Compiler.h"
36

37 38
#include <boost/intrusive/list.hpp>

39 40
#include <queue>
#include <list>
41

42
struct ConfigBlock;
43
class EventLoop;
44
class ServerSocket;
45
class HttpdClient;
46
class Page;
47
class PreparedEncoder;
48
class Encoder;
Max Kellermann's avatar
Max Kellermann committed
49
struct Tag;
50

51
class HttpdOutput final : ServerSocket, DeferredMonitor {
52
	AudioOutput base;
53

54 55 56 57 58 59
	/**
	 * True if the audio output is open and accepts client
	 * connections.
	 */
	bool open;

60 61 62
	/**
	 * The configured encoder plugin.
	 */
63
	PreparedEncoder *prepared_encoder = nullptr;
64
	Encoder *encoder;
65

66 67 68 69 70 71 72 73
	/**
	 * Number of bytes which were fed into the encoder, without
	 * ever receiving new output.  This is used to estimate
	 * whether MPD should manually flush the encoder, to avoid
	 * buffer underruns in the client.
	 */
	size_t unflushed_input;

74
public:
75 76 77 78 79 80 81 82 83
	/**
	 * The MIME type produced by the #encoder.
	 */
	const char *content_type;

	/**
	 * This mutex protects the listener socket and the client
	 * list.
	 */
84
	mutable Mutex mutex;
85

86 87 88 89 90 91
	/**
	 * This condition gets signalled when an item is removed from
	 * #pages.
	 */
	Cond cond;

92
private:
93
	/**
94
	 * A #Timer object to synchronize this output with the
95 96
	 * wallclock.
	 */
97
	Timer *timer;
98 99 100 101

	/**
	 * The header page, which is sent to every client on connect.
	 */
Max Kellermann's avatar
Max Kellermann committed
102
	Page *header;
103

104 105 106
	/**
	 * The metadata, which is sent to every client.
	 */
Max Kellermann's avatar
Max Kellermann committed
107
	Page *metadata;
108

109 110 111 112 113 114 115 116
	/**
	 * The page queue, i.e. pages from the encoder to be
	 * broadcasted to all clients.  This container is necessary to
	 * pass pages from the OutputThread to the IOThread.  It is
	 * protected by #mutex, and removing signals #cond.
	 */
	std::queue<Page *, std::list<Page *>> pages;

117
 public:
118 119 120 121 122 123 124 125 126 127 128 129 130
	/**
	 * The configured name.
	 */
	char const *name;
	/**
	 * The configured genre.
	 */
	char const *genre;
	/**
	 * The configured website address.
	 */
	char const *website;

131
private:
132 133 134 135
	/**
	 * A linked list containing all clients which are currently
	 * connected.
	 */
136 137
	boost::intrusive::list<HttpdClient,
			       boost::intrusive::constant_time_size<true>> clients;
138 139 140 141 142 143

	/**
	 * A temporary buffer for the httpd_output_read_page()
	 * function.
	 */
	char buffer[32768];
144 145

	/**
146
	 * The maximum and current number of clients connected
147 148
	 * at the same time.
	 */
149
	unsigned clients_max;
150

151
public:
152
	HttpdOutput(EventLoop &_loop, const ConfigBlock &block);
153 154
	~HttpdOutput();

155 156 157 158
	operator AudioOutput *() {
		return &base;
	}

159
#if CLANG_OR_GCC_VERSION(4,7)
160
	constexpr
161
#endif
162 163
	static HttpdOutput *Cast(AudioOutput *ao) {
		return &ContainerCast(*ao, &HttpdOutput::base);
164 165
	}

166 167
	using DeferredMonitor::GetEventLoop;

168
	void Bind();
169
	void Unbind();
170

171 172
	/**
	 * Caller must lock the mutex.
173 174
	 *
	 * Throws #std::runtime_error on error.
175
	 */
176
	void OpenEncoder(AudioFormat &audio_format);
177 178 179 180

	/**
	 * Caller must lock the mutex.
	 */
181
	void Open(AudioFormat &audio_format);
182 183 184 185 186 187 188 189 190 191 192 193

	/**
	 * Caller must lock the mutex.
	 */
	void Close();

	/**
	 * Check whether there is at least one client.
	 *
	 * Caller must lock the mutex.
	 */
	gcc_pure
194
	bool HasClients() const noexcept {
195 196 197 198 199 200 201
		return !clients.empty();
	}

	/**
	 * Check whether there is at least one client.
	 */
	gcc_pure
202
	bool LockHasClients() const noexcept {
203
		const std::lock_guard<Mutex> protect(mutex);
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
		return HasClients();
	}

	void AddClient(int fd);

	/**
	 * Removes a client from the httpd_output.clients linked list.
	 */
	void RemoveClient(HttpdClient &client);

	/**
	 * Sends the encoder header to the client.  This is called
	 * right after the response headers have been sent.
	 */
	void SendHeader(HttpdClient &client) const;

220
	gcc_pure
221
	std::chrono::steady_clock::duration Delay() const noexcept;
222

223 224 225 226
	/**
	 * Reads data from the encoder (as much as available) and
	 * returns it as a new #page object.
	 */
Max Kellermann's avatar
Max Kellermann committed
227
	Page *ReadPage();
228 229 230 231 232 233

	/**
	 * Broadcasts a page struct to all clients.
	 *
	 * Mutext must not be locked.
	 */
Max Kellermann's avatar
Max Kellermann committed
234
	void BroadcastPage(Page *page);
235 236 237 238 239 240

	/**
	 * Broadcasts data from the encoder to all clients.
	 */
	void BroadcastFromEncoder();

241 242 243 244
	/**
	 * Throws #std::runtime_error on error.
	 */
	void EncodeAndPlay(const void *chunk, size_t size);
245

246
	void SendTag(const Tag &tag);
247

248
	size_t Play(const void *chunk, size_t size);
249 250 251

	void CancelAllClients();

252
private:
253 254
	virtual void RunDeferred() override;

255
	void OnAccept(int fd, SocketAddress address, int uid) override;
256
};
257

258 259
extern const class Domain httpd_output_domain;

260
#endif