player_control.c 4.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* the Music Player Daemon (MPD)
 * Copyright (C) 2008 Max Kellermann <max@duempel.org>
 * This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

19 20 21
#include "player_control.h"
#include "path.h"
#include "log.h"
Max Kellermann's avatar
Max Kellermann committed
22
#include "tag.h"
23
#include "song.h"
24
#include "idle.h"
25 26
#include "os_compat.h"
#include "main_notify.h"
27 28

struct player_control pc;
29

30 31 32 33 34 35 36 37 38 39 40
void pc_init(unsigned int buffered_before_play)
{
	pc.buffered_before_play = buffered_before_play;
	notify_init(&pc.notify);
	pc.command = PLAYER_COMMAND_NONE;
	pc.error = PLAYER_ERROR_NOERROR;
	pc.state = PLAYER_STATE_STOP;
	pc.crossFade = 0;
	pc.softwareVolume = 1000;
}

41 42 43 44 45
void pc_deinit(void)
{
	notify_deinit(&pc.notify);
}

46 47 48 49 50 51 52 53 54
static void player_command(enum player_command cmd)
{
	pc.command = cmd;
	while (pc.command != PLAYER_COMMAND_NONE) {
		notify_signal(&pc.notify);
		wait_main_task();
	}
}

55 56
void
playerPlay(struct song *song)
57
{
58
	assert(song != NULL);
59 60 61 62

	if (pc.state != PLAYER_STATE_STOP)
		player_command(PLAYER_COMMAND_STOP);

63
	pc.next_song = song;
64
	player_command(PLAYER_COMMAND_PLAY);
65 66

	idle_add(IDLE_PLAYER);
67 68
}

69
void pc_cancel(void)
70
{
71 72
	player_command(PLAYER_COMMAND_CANCEL);
}
73

74 75
void playerWait(void)
{
76
	player_command(PLAYER_COMMAND_CLOSE_AUDIO);
77 78

	idle_add(IDLE_PLAYER);
79 80 81 82 83
}

void playerKill(void)
{
	player_command(PLAYER_COMMAND_EXIT);
84 85

	idle_add(IDLE_PLAYER);
86 87 88 89
}

void playerPause(void)
{
90
	if (pc.state != PLAYER_STATE_STOP) {
91
		player_command(PLAYER_COMMAND_PAUSE);
92 93
		idle_add(IDLE_PLAYER);
	}
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
}

void playerSetPause(int pause_flag)
{
	switch (pc.state) {
	case PLAYER_STATE_STOP:
		break;

	case PLAYER_STATE_PLAY:
		if (pause_flag)
			playerPause();
		break;
	case PLAYER_STATE_PAUSE:
		if (!pause_flag)
			playerPause();
		break;
	}
}

int getPlayerElapsedTime(void)
{
	return (int)(pc.elapsedTime + 0.5);
}

unsigned long getPlayerBitRate(void)
{
	return pc.bitRate;
}

int getPlayerTotalTime(void)
{
	return (int)(pc.totalTime + 0.5);
}

enum player_state getPlayerState(void)
{
	return pc.state;
}

void clearPlayerError(void)
{
	pc.error = 0;
}

int getPlayerError(void)
{
	return pc.error;
}

char *getPlayerErrorStr(void)
{
	/* static OK here, only one user in main task */
	static char error[MPD_PATH_MAX + 64]; /* still too much */
	static const size_t errorlen = sizeof(error);
	char path_max_tmp[MPD_PATH_MAX];
	*error = '\0'; /* likely */

	switch (pc.error) {
	case PLAYER_ERROR_FILENOTFOUND:
		snprintf(error, errorlen,
			 "file \"%s\" does not exist or is inaccessible",
Max Kellermann's avatar
Max Kellermann committed
155
			 song_get_url(pc.errored_song, path_max_tmp));
156 157 158
		break;
	case PLAYER_ERROR_FILE:
		snprintf(error, errorlen, "problems decoding \"%s\"",
Max Kellermann's avatar
Max Kellermann committed
159
			 song_get_url(pc.errored_song, path_max_tmp));
160 161 162 163 164 165 166 167 168
		break;
	case PLAYER_ERROR_AUDIO:
		strcpy(error, "problems opening audio device");
		break;
	case PLAYER_ERROR_SYSTEM:
		strcpy(error, "system error occured");
		break;
	case PLAYER_ERROR_UNKTYPE:
		snprintf(error, errorlen, "file type of \"%s\" is unknown",
Max Kellermann's avatar
Max Kellermann committed
169
			 song_get_url(pc.errored_song, path_max_tmp));
170 171 172 173
	}
	return *error ? error : NULL;
}

174 175
void
queueSong(struct song *song)
176
{
177
	assert(song != NULL);
178
	assert(pc.next_song == NULL);
179

180
	pc.next_song = song;
181
	player_command(PLAYER_COMMAND_QUEUE);
182 183
}

184 185
int
playerSeek(struct song *song, float seek_time)
186 187 188 189 190 191
{
	assert(song != NULL);

	if (pc.state == PLAYER_STATE_STOP)
		return -1;

192
	pc.next_song = song;
193 194 195 196

	if (pc.error == PLAYER_ERROR_NOERROR) {
		pc.seekWhere = seek_time;
		player_command(PLAYER_COMMAND_SEEK);
197 198

		idle_add(IDLE_PLAYER);
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
	}

	return 0;
}

float getPlayerCrossFade(void)
{
	return pc.crossFade;
}

void setPlayerCrossFade(float crossFadeInSeconds)
{
	if (crossFadeInSeconds < 0)
		crossFadeInSeconds = 0;
	pc.crossFade = crossFadeInSeconds;
214 215

	idle_add(IDLE_OPTIONS);
216 217 218 219 220 221 222 223 224 225 226 227 228 229
}

void setPlayerSoftwareVolume(int volume)
{
	volume = (volume > 1000) ? 1000 : (volume < 0 ? 0 : volume);
	pc.softwareVolume = volume;
}

double getPlayerTotalPlayTime(void)
{
	return pc.totalPlayTime;
}

/* this actually creates a dupe of the current metadata */
230 231
struct song *
playerCurrentDecodeSong(void)
232 233 234
{
	return NULL;
}