InputStream.hxx 9.43 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2019 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
 * 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_INPUT_STREAM_HXX
#define MPD_INPUT_STREAM_HXX

23
#include "Offset.hxx"
24
#include "Ptr.hxx"
25
#include "thread/Mutex.hxx"
26
#include "util/Compiler.h"
27

28
#include <string>
29
#include <memory>
30

31 32
#include <assert.h>

33
struct Tag;
34
class InputStreamHandler;
35

36 37
class InputStream {
public:
38
	typedef ::offset_type offset_type;
39

40
private:
41
	/**
42
	 * The absolute URI which was used to open this stream.
43
	 */
44
	const std::string uri;
45

46
public:
47 48 49 50 51 52 53 54
	/**
	 * A mutex that protects the mutable attributes of this object
	 * and its implementation.  It must be locked before calling
	 * any of the public methods.
	 *
	 * This object is allocated by the client, and the client is
	 * responsible for freeing it.
	 */
55
	Mutex &mutex;
56

57
private:
58
	/**
59 60
	 * An (optional) object which gets receives events from this
	 * #InputStream.
61 62 63 64
	 *
	 * This object is allocated by the client, and the client is
	 * responsible for freeing it.
	 */
65
	InputStreamHandler *handler = nullptr;
66

67
protected:
68 69 70 71
	/**
	 * indicates whether the stream is ready for reading and
	 * whether the other attributes in this struct are valid
	 */
72
	bool ready = false;
73 74 75 76

	/**
	 * if true, then the stream is fully seekable
	 */
77
	bool seekable = false;
78

79
	static constexpr offset_type UNKNOWN_SIZE = ~offset_type(0);
80

81
	/**
82
	 * the size of the resource, or #UNKNOWN_SIZE if unknown
83
	 */
84
	offset_type size = UNKNOWN_SIZE;
85 86 87 88

	/**
	 * the current offset within the stream
	 */
89
	offset_type offset = 0;
90

91
private:
92
	/**
93
	 * the MIME content type of the resource, or empty if unknown.
94
	 */
95
	std::string mime;
96

97
public:
98
	InputStream(const char *_uri, Mutex &_mutex) noexcept
99
		:uri(_uri),
100
		 mutex(_mutex) {
101
		assert(_uri != nullptr);
102
	}
103

104 105 106 107 108
	/**
	 * Close the input stream and free resources.
	 *
	 * The caller must not lock the mutex.
	 */
109
	virtual ~InputStream() noexcept;
110

111 112 113 114
	/**
	 * Opens a new input stream.  You may not access it until the "ready"
	 * flag is set.
	 *
115 116
	 * Throws std::runtime_error on error.
	 *
117 118 119
	 * @param mutex a mutex that is used to protect this object; must be
	 * locked before calling any of the public methods
	 * @param cond a cond that gets signalled when the state of
120
	 * this object changes; may be nullptr if the caller doesn't want to get
121
	 * notifications
122
	 * @return an #InputStream object on success
123
	 */
124 125
	gcc_nonnull(1)
	static InputStreamPtr Open(const char *uri, Mutex &mutex);
126

127 128 129 130
	/**
	 * Just like Open(), but waits for the stream to become ready.
	 * It is a wrapper for Open(), WaitReady() and Check().
	 */
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
	gcc_nonnull(1)
	static InputStreamPtr OpenReady(const char *uri, Mutex &mutex);

	/**
	 * Install a new handler.
	 *
	 * The caller must lock the mutex.
	 */
	void SetHandler(InputStreamHandler *new_handler) noexcept {
		handler = new_handler;
	}

	/**
	 * Install a new handler and return the old one.
	 *
	 * The caller must lock the mutex.
	 */
	InputStreamHandler *ExchangeHandler(InputStreamHandler *new_handler) noexcept {
		return std::exchange(handler, new_handler);
	}
151

152 153 154 155 156
	/**
	 * The absolute URI which was used to open this stream.
	 *
	 * No lock necessary for this method.
	 */
157
	const char *GetURI() const noexcept {
158 159 160
		return uri.c_str();
	}

161 162
	/**
	 * Check for errors that may have occurred in the I/O thread.
163
	 * Throws std::runtime_error on error.
164
	 */
165
	virtual void Check();
166 167 168 169 170

	/**
	 * Update the public attributes.  Call before accessing attributes
	 * such as "ready" or "offset".
	 */
171
	virtual void Update() noexcept;
172

173
	void SetReady() noexcept;
174

175
	/**
176 177
	 * Return whether the stream is ready for reading and whether
	 * the other attributes in this struct are valid.
178 179 180
	 *
	 * The caller must lock the mutex.
	 */
181 182 183 184 185
	bool IsReady() const {
		return ready;
	}

	gcc_pure
186
	bool HasMimeType() const noexcept {
187 188 189 190 191
		assert(ready);

		return !mime.empty();
	}

192
	gcc_pure
193
	const char *GetMimeType() const noexcept {
194 195 196 197 198
		assert(ready);

		return mime.empty() ? nullptr : mime.c_str();
	}

199
	void ClearMimeType() noexcept {
200 201 202
		mime.clear();
	}

203
	gcc_nonnull_all
204
	void SetMimeType(const char *_mime) noexcept {
205 206 207 208 209
		assert(!ready);

		mime = _mime;
	}

210
	void SetMimeType(std::string &&_mime) noexcept {
211 212 213 214 215
		assert(!ready);

		mime = std::move(_mime);
	}

216
	gcc_pure
217
	bool KnownSize() const noexcept {
218 219
		assert(ready);

220
		return size != UNKNOWN_SIZE;
221 222
	}

223
	gcc_pure
224
	offset_type GetSize() const noexcept {
225
		assert(ready);
226
		assert(KnownSize());
227 228 229 230

		return size;
	}

231
	void AddOffset(offset_type delta) noexcept {
232 233 234 235 236
		assert(ready);

		offset += delta;
	}

237
	gcc_pure
238
	offset_type GetOffset() const noexcept {
239 240 241 242 243
		assert(ready);

		return offset;
	}

244
	gcc_pure
245
	offset_type GetRest() const noexcept {
246
		assert(ready);
247
		assert(KnownSize());
248 249 250 251

		return size - offset;
	}

252
	gcc_pure
253
	bool IsSeekable() const noexcept {
254 255 256 257 258 259 260 261 262
		assert(ready);

		return seekable;
	}

	/**
	 * Determines whether seeking is cheap.  This is true for local files.
	 */
	gcc_pure
263
	bool CheapSeeking() const noexcept;
264 265 266 267 268 269 270

	/**
	 * Seeks to the specified position in the stream.  This will most
	 * likely fail if the "seekable" flag is false.
	 *
	 * The caller must lock the mutex.
	 *
271 272
	 * Throws std::runtime_error on error.
	 *
273 274
	 * @param lock the locked mutex; may be used to wait on
	 * condition variables
275 276
	 * @param offset the relative offset
	 */
277
	virtual void Seek(std::unique_lock<Mutex> &lock, offset_type offset);
278 279 280 281 282

	/**
	 * Wrapper for Seek() which locks and unlocks the mutex; the
	 * caller must not be holding it already.
	 */
283
	void LockSeek(offset_type offset);
284

285 286
	/**
	 * Rewind to the beginning of the stream.  This is a wrapper
287
	 * for Seek(0, error).
288
	 */
289
	void Rewind(std::unique_lock<Mutex> &lock) {
290 291
		if (offset > 0)
			Seek(lock, 0);
292 293
	}

294
	void LockRewind() {
295 296
		std::unique_lock<Mutex> lock(mutex);
		Rewind(lock);
297
	}
298

299 300 301
	/**
	 * Skip input bytes.
	 */
302 303 304
	void Skip(std::unique_lock<Mutex> &lock,
		  offset_type _offset) {
		Seek(lock, GetOffset() + _offset);
305 306
	}

307
	void LockSkip(offset_type _offset);
308

309 310 311 312 313 314
	/**
	 * Returns true if the stream has reached end-of-file.
	 *
	 * The caller must lock the mutex.
	 */
	gcc_pure
315
	virtual bool IsEOF() const noexcept = 0;
316 317 318 319 320 321

	/**
	 * Wrapper for IsEOF() which locks and unlocks the mutex; the
	 * caller must not be holding it already.
	 */
	gcc_pure
322
	bool LockIsEOF() const noexcept;
323 324 325 326 327 328

	/**
	 * Reads the tag from the stream.
	 *
	 * The caller must lock the mutex.
	 *
329 330
	 * @return a tag object or nullptr if the tag has not changed
	 * since the last call
331
	 */
332
	virtual std::unique_ptr<Tag> ReadTag() noexcept;
333 334 335 336 337

	/**
	 * Wrapper for ReadTag() which locks and unlocks the mutex;
	 * the caller must not be holding it already.
	 */
338
	std::unique_ptr<Tag> LockReadTag() noexcept;
339 340 341 342 343 344 345 346 347

	/**
	 * Returns true if the next read operation will not block: either data
	 * is available, or end-of-stream has been reached, or an error has
	 * occurred.
	 *
	 * The caller must lock the mutex.
	 */
	gcc_pure
348
	virtual bool IsAvailable() const noexcept;
349 350 351 352 353 354 355

	/**
	 * Reads data from the stream into the caller-supplied buffer.
	 * Returns 0 on error or eof (check with IsEOF()).
	 *
	 * The caller must lock the mutex.
	 *
356 357
	 * Throws std::runtime_error on error.
	 *
358 359
	 * @param lock the locked mutex; may be used to wait on
	 * condition variables
360 361 362 363 364
	 * @param ptr the buffer to read into
	 * @param size the maximum number of bytes to read
	 * @return the number of bytes read
	 */
	gcc_nonnull_all
365 366
	virtual size_t Read(std::unique_lock<Mutex> &lock,
			    void *ptr, size_t size) = 0;
367 368 369 370

	/**
	 * Wrapper for Read() which locks and unlocks the mutex;
	 * the caller must not be holding it already.
371 372
	 *
	 * Throws std::runtime_error on error.
373 374
	 */
	gcc_nonnull_all
375
	size_t LockRead(void *ptr, size_t size);
376 377 378 379 380 381

	/**
	 * Reads the whole data from the stream into the caller-supplied buffer.
	 *
	 * The caller must lock the mutex.
	 *
382 383
	 * Throws std::runtime_error on error.
	 *
384 385 386 387 388
	 * @param ptr the buffer to read into
	 * @param size the number of bytes to read
	 * @return true if the whole data was read, false otherwise.
	 */
	gcc_nonnull_all
389
	void ReadFull(std::unique_lock<Mutex> &lock, void *ptr, size_t size);
390 391 392 393

	/**
	 * Wrapper for ReadFull() which locks and unlocks the mutex;
	 * the caller must not be holding it already.
394 395
	 *
	 * Throws std::runtime_error on error.
396 397
	 */
	gcc_nonnull_all
398
	void LockReadFull(void *ptr, size_t size);
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422

protected:
	void InvokeOnReady() noexcept;
	void InvokeOnAvailable() noexcept;
};

/**
 * Install an #InputStreamHandler during the scope in which this
 * variable lives, and restore the old handler afterwards.
 */
class ScopeExchangeInputStreamHandler {
	InputStream &is;
	InputStreamHandler *const old_handler;

public:
	ScopeExchangeInputStreamHandler(InputStream &_is,
					InputStreamHandler *new_handler) noexcept
		:is(_is), old_handler(is.ExchangeHandler(new_handler)) {}

	ScopeExchangeInputStreamHandler(const ScopeExchangeInputStreamHandler &) = delete;

	~ScopeExchangeInputStreamHandler() noexcept {
		is.SetHandler(old_handler);
	}
423
};
424 425

#endif