InputStream.hxx 9.07 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
 * 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

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

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

32 33
#include <assert.h>

34
struct Tag;
35
class InputStreamHandler;
36

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

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

47
public:
48 49 50 51 52 53 54 55
	/**
	 * 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.
	 */
56
	Mutex &mutex;
57

58
private:
59 60 61
	/**
	 * A cond that gets signalled when the state of this object
	 * changes from the I/O thread.  The client of this object may
62
	 * wait on it.
63 64 65 66
	 *
	 * This object is allocated by the client, and the client is
	 * responsible for freeing it.
	 */
67
	InputStreamHandler *handler = nullptr;
68

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

	/**
	 * if true, then the stream is fully seekable
	 */
79
	bool seekable = false;
80

81 82
	static constexpr offset_type UNKNOWN_SIZE = -1;

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

	/**
	 * the current offset within the stream
	 */
91
	offset_type offset = 0;
92

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

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

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

113 114 115 116
	/**
	 * Opens a new input stream.  You may not access it until the "ready"
	 * flag is set.
	 *
117 118
	 * Throws std::runtime_error on error.
	 *
119 120 121
	 * @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
122
	 * this object changes; may be nullptr if the caller doesn't want to get
123
	 * notifications
124
	 * @return an #InputStream object on success
125
	 */
126 127
	gcc_nonnull(1)
	static InputStreamPtr Open(const char *uri, Mutex &mutex);
128

129 130 131 132
	/**
	 * Just like Open(), but waits for the stream to become ready.
	 * It is a wrapper for Open(), WaitReady() and Check().
	 */
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
	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);
	}
153

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

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

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

175
	void SetReady() noexcept;
176

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

	gcc_pure
188
	bool HasMimeType() const noexcept {
189 190 191 192 193
		assert(ready);

		return !mime.empty();
	}

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

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

201
	void ClearMimeType() noexcept {
202 203 204
		mime.clear();
	}

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

		mime = _mime;
	}

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

		mime = std::move(_mime);
	}

218
	gcc_pure
219
	bool KnownSize() const noexcept {
220 221
		assert(ready);

222
		return size != UNKNOWN_SIZE;
223 224
	}

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

		return size;
	}

233
	void AddOffset(offset_type delta) noexcept {
234 235 236 237 238
		assert(ready);

		offset += delta;
	}

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

		return offset;
	}

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

		return size - offset;
	}

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

		return seekable;
	}

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

	/**
	 * 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.
	 *
273 274
	 * Throws std::runtime_error on error.
	 *
275 276
	 * @param offset the relative offset
	 */
277
	virtual void Seek(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 290
	void Rewind() {
		Seek(0);
291 292
	}

293 294
	void LockRewind() {
		LockSeek(0);
295
	}
296

297 298 299
	/**
	 * Skip input bytes.
	 */
300 301
	void Skip(offset_type _offset) {
		Seek(GetOffset() + _offset);
302 303
	}

304
	void LockSkip(offset_type _offset);
305

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

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

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

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

	/**
	 * 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
345
	virtual bool IsAvailable() noexcept;
346 347 348 349 350 351 352

	/**
	 * 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.
	 *
353 354
	 * Throws std::runtime_error on error.
	 *
355 356 357 358 359
	 * @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
360
	virtual size_t Read(void *ptr, size_t size) = 0;
361 362 363 364

	/**
	 * Wrapper for Read() which locks and unlocks the mutex;
	 * the caller must not be holding it already.
365 366
	 *
	 * Throws std::runtime_error on error.
367 368
	 */
	gcc_nonnull_all
369
	size_t LockRead(void *ptr, size_t size);
370 371 372 373 374 375

	/**
	 * Reads the whole data from the stream into the caller-supplied buffer.
	 *
	 * The caller must lock the mutex.
	 *
376 377
	 * Throws std::runtime_error on error.
	 *
378 379 380 381 382
	 * @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
383
	void ReadFull(void *ptr, size_t size);
384 385 386 387

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

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);
	}
417
};
418 419

#endif