InputInternal.cxx 1.68 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2013 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * 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.
 */

#include "config.h"
21
#include "InputInternal.hxx"
22
#include "InputStream.hxx"
23

24 25
#include <assert.h>

26 27
void
input_stream_init(struct input_stream *is, const struct input_plugin *plugin,
28
		  const char *uri, Mutex &mutex, Cond &cond)
29
{
30 31 32 33
	assert(is != NULL);
	assert(plugin != NULL);
	assert(uri != NULL);

34 35
	is->plugin = plugin;
	is->uri = g_strdup(uri);
36 37
	is->mutex = &mutex;
	is->cond = &cond;
38 39 40 41 42 43 44 45 46 47
	is->ready = false;
	is->seekable = false;
	is->size = -1;
	is->offset = 0;
	is->mime = NULL;
}

void
input_stream_deinit(struct input_stream *is)
{
48 49 50
	assert(is != NULL);
	assert(is->plugin != NULL);

51 52 53
	g_free(is->uri);
	g_free(is->mime);
}
54 55 56 57 58

void
input_stream_signal_client(struct input_stream *is)
{
	if (is->cond != NULL)
59
		is->cond->broadcast();
60 61 62 63 64
}

void
input_stream_set_ready(struct input_stream *is)
{
65
	const ScopeLock protect(*is->mutex);
66 67 68 69 70 71

	if (!is->ready) {
		is->ready = true;
		input_stream_signal_client(is);
	}
}