playlist_edit.c 10.9 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2010 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13
 * 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.
14 15 16 17
 *
 * 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.
18 19 20 21 22 23 24 25
 */

/*
 * Functions for editing the playlist (adding, removing, reordering
 * songs in the queue).
 *
 */

26
#include "config.h"
27 28 29
#include "playlist_internal.h"
#include "player_control.h"
#include "database.h"
30
#include "uri.h"
31 32 33 34 35 36 37 38
#include "song.h"
#include "idle.h"

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdlib.h>

Max Kellermann's avatar
Max Kellermann committed
39
static void playlist_increment_version(struct playlist *playlist)
40 41 42 43 44 45
{
	queue_increment_version(&playlist->queue);

	idle_add(IDLE_PLAYLIST);
}

Max Kellermann's avatar
Max Kellermann committed
46
void playlist_clear(struct playlist *playlist)
47
{
48
	playlist_stop(playlist);
49 50 51 52 53 54 55 56 57 58 59 60 61

	/* make sure there are no references to allocated songs
	   anymore */
	for (unsigned i = 0; i < queue_length(&playlist->queue); i++) {
		const struct song *song = queue_get(&playlist->queue, i);
		if (!song_in_database(song))
			pc_song_deleted(song);
	}

	queue_clear(&playlist->queue);

	playlist->current = -1;

Max Kellermann's avatar
Max Kellermann committed
62
	playlist_increment_version(playlist);
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
}

#ifndef WIN32
enum playlist_result
playlist_append_file(struct playlist *playlist, const char *path, int uid,
		     unsigned *added_id)
{
	int ret;
	struct stat st;
	struct song *song;

	if (uid <= 0)
		/* unauthenticated client */
		return PLAYLIST_RESULT_DENIED;

	ret = stat(path, &st);
	if (ret < 0)
		return PLAYLIST_RESULT_ERRNO;

	if (st.st_uid != (uid_t)uid && (st.st_mode & 0444) != 0444)
		/* client is not owner */
		return PLAYLIST_RESULT_DENIED;

	song = song_file_load(path, NULL);
	if (song == NULL)
		return PLAYLIST_RESULT_NO_SUCH_SONG;

Max Kellermann's avatar
Max Kellermann committed
90
	return playlist_append_song(playlist, song, added_id);
91 92 93 94
}
#endif

enum playlist_result
Max Kellermann's avatar
Max Kellermann committed
95
playlist_append_song(struct playlist *playlist,
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
		  struct song *song, unsigned *added_id)
{
	const struct song *queued;
	unsigned id;

	if (queue_is_full(&playlist->queue))
		return PLAYLIST_RESULT_TOO_LARGE;

	queued = playlist_get_queued_song(playlist);

	id = queue_append(&playlist->queue, song);

	if (playlist->queue.random) {
		/* shuffle the new song into the list of remaining
		   songs to play */

		unsigned start;
		if (playlist->queued >= 0)
			start = playlist->queued + 1;
		else
			start = playlist->current + 1;
		if (start < queue_length(&playlist->queue))
			queue_shuffle_order_last(&playlist->queue, start,
						 queue_length(&playlist->queue));
	}

Max Kellermann's avatar
Max Kellermann committed
122
	playlist_increment_version(playlist);
123 124 125 126 127 128 129 130 131

	playlist_update_queued_song(playlist, queued);

	if (added_id)
		*added_id = id;

	return PLAYLIST_RESULT_SUCCESS;
}

Max Kellermann's avatar
Max Kellermann committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
static struct song *
song_by_uri(const char *uri)
{
	struct song *song;

	song = db_get_song(uri);
	if (song != NULL)
		return song;

	if (uri_has_scheme(uri))
		return song_remote_new(uri);

	return NULL;
}

147
enum playlist_result
Max Kellermann's avatar
Max Kellermann committed
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
playlist_append_uri(struct playlist *playlist, const char *uri,
		    unsigned *added_id)
{
	struct song *song;

	g_debug("add to playlist: %s", uri);

	song = song_by_uri(uri);
	if (song == NULL)
		return PLAYLIST_RESULT_NO_SUCH_SONG;

	return playlist_append_song(playlist, song, added_id);
}

enum playlist_result
playlist_swap_songs(struct playlist *playlist, unsigned song1, unsigned song2)
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
{
	const struct song *queued;

	if (!queue_valid_position(&playlist->queue, song1) ||
	    !queue_valid_position(&playlist->queue, song2))
		return PLAYLIST_RESULT_BAD_RANGE;

	queued = playlist_get_queued_song(playlist);

	queue_swap(&playlist->queue, song1, song2);

	if (playlist->queue.random) {
		/* update the queue order, so that playlist->current
		   still points to the current song order */

		queue_swap_order(&playlist->queue,
				 queue_position_to_order(&playlist->queue,
							 song1),
				 queue_position_to_order(&playlist->queue,
							 song2));
	} else {
		/* correct the "current" song order */

		if (playlist->current == (int)song1)
			playlist->current = song2;
		else if (playlist->current == (int)song2)
			playlist->current = song1;
	}

Max Kellermann's avatar
Max Kellermann committed
193
	playlist_increment_version(playlist);
194 195 196 197 198 199 200

	playlist_update_queued_song(playlist, queued);

	return PLAYLIST_RESULT_SUCCESS;
}

enum playlist_result
Max Kellermann's avatar
Max Kellermann committed
201
playlist_swap_songs_id(struct playlist *playlist, unsigned id1, unsigned id2)
202 203 204 205 206 207 208
{
	int song1 = queue_id_to_position(&playlist->queue, id1);
	int song2 = queue_id_to_position(&playlist->queue, id2);

	if (song1 < 0 || song2 < 0)
		return PLAYLIST_RESULT_NO_SUCH_SONG;

Max Kellermann's avatar
Max Kellermann committed
209
	return playlist_swap_songs(playlist, song1, song2);
210 211
}

212 213 214
static void
playlist_delete_internal(struct playlist *playlist, unsigned song,
			 const struct song **queued_p)
215 216 217
{
	unsigned songOrder;

218
	assert(song < queue_length(&playlist->queue));
219 220 221 222

	songOrder = queue_position_to_order(&playlist->queue, song);

	if (playlist->playing && playlist->current == (int)songOrder) {
223
		bool paused = pc_get_state() == PLAYER_STATE_PAUSE;
224 225 226

		/* the current song is going to be deleted: stop the player */

227
		pc_stop();
228 229 230 231 232 233 234 235 236 237 238
		playlist->playing = false;

		/* see which song is going to be played instead */

		playlist->current = queue_next_order(&playlist->queue,
						     playlist->current);
		if (playlist->current == (int)songOrder)
			playlist->current = -1;

		if (playlist->current >= 0 && !paused)
			/* play the song after the deleted one */
239
			playlist_play_order(playlist, playlist->current);
240 241 242
		else
			/* no songs left to play, stop playback
			   completely */
243
			playlist_stop(playlist);
244

245
		*queued_p = NULL;
246 247 248 249
	} else if (playlist->current == (int)songOrder)
		/* there's a "current song" but we're not playing
		   currently - clear "current" */
		playlist->current = -1;
250 251 252 253 254 255 256 257 258 259 260 261 262

	/* now do it: remove the song */

	if (!song_in_database(queue_get(&playlist->queue, song)))
		pc_song_deleted(queue_get(&playlist->queue, song));

	queue_delete(&playlist->queue, song);

	/* update the "current" and "queued" variables */

	if (playlist->current > (int)songOrder) {
		playlist->current--;
	}
263 264 265 266 267 268
}

enum playlist_result
playlist_delete(struct playlist *playlist, unsigned song)
{
	const struct song *queued;
269

270 271 272 273 274 275 276 277
	if (song >= queue_length(&playlist->queue))
		return PLAYLIST_RESULT_BAD_RANGE;

	queued = playlist_get_queued_song(playlist);

	playlist_delete_internal(playlist, song, &queued);

	playlist_increment_version(playlist);
278 279 280 281 282
	playlist_update_queued_song(playlist, queued);

	return PLAYLIST_RESULT_SUCCESS;
}

283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
enum playlist_result
playlist_delete_range(struct playlist *playlist, unsigned start, unsigned end)
{
	const struct song *queued;

	if (start >= queue_length(&playlist->queue))
		return PLAYLIST_RESULT_BAD_RANGE;

	if (end > queue_length(&playlist->queue))
		end = queue_length(&playlist->queue);

	if (start >= end)
		return PLAYLIST_RESULT_SUCCESS;

	queued = playlist_get_queued_song(playlist);

	do {
		playlist_delete_internal(playlist, --end, &queued);
	} while (end != start);

	playlist_increment_version(playlist);
	playlist_update_queued_song(playlist, queued);

	return PLAYLIST_RESULT_SUCCESS;
}

309
enum playlist_result
Max Kellermann's avatar
Max Kellermann committed
310
playlist_delete_id(struct playlist *playlist, unsigned id)
311 312 313 314 315
{
	int song = queue_id_to_position(&playlist->queue, id);
	if (song < 0)
		return PLAYLIST_RESULT_NO_SUCH_SONG;

Max Kellermann's avatar
Max Kellermann committed
316
	return playlist_delete(playlist, song);
317 318 319
}

void
Max Kellermann's avatar
Max Kellermann committed
320
playlist_delete_song(struct playlist *playlist, const struct song *song)
321 322 323
{
	for (int i = queue_length(&playlist->queue) - 1; i >= 0; --i)
		if (song == queue_get(&playlist->queue, i))
Max Kellermann's avatar
Max Kellermann committed
324
			playlist_delete(playlist, i);
325 326 327 328 329

	pc_song_deleted(song);
}

enum playlist_result
Max Kellermann's avatar
Max Kellermann committed
330 331
playlist_move_range(struct playlist *playlist,
		    unsigned start, unsigned end, int to)
332 333 334 335
{
	const struct song *queued;
	int currentSong;

336 337
	if (!queue_valid_position(&playlist->queue, start) ||
		!queue_valid_position(&playlist->queue, end - 1))
338 339
		return PLAYLIST_RESULT_BAD_RANGE;

340
	if ((to >= 0 && to + end - start - 1 >= queue_length(&playlist->queue)) ||
341 342 343
	    (to < 0 && abs(to) > (int)queue_length(&playlist->queue)))
		return PLAYLIST_RESULT_BAD_RANGE;

344 345
	if ((int)start == to)
		/* nothing happens */
346 347 348 349 350 351 352 353 354 355 356 357 358
		return PLAYLIST_RESULT_SUCCESS;

	queued = playlist_get_queued_song(playlist);

	/*
	 * (to < 0) => move to offset from current song
	 * (-playlist.length == to) => move to position BEFORE current song
	 */
	currentSong = playlist->current >= 0
		? (int)queue_order_to_position(&playlist->queue,
					      playlist->current)
		: -1;
	if (to < 0 && playlist->current >= 0) {
359
		if (start <= (unsigned)currentSong && (unsigned)currentSong <= end)
360 361 362
			/* no-op, can't be moved to offset of itself */
			return PLAYLIST_RESULT_SUCCESS;
		to = (currentSong + abs(to)) % queue_length(&playlist->queue);
363 364
		if (start < (unsigned)to)
			to--;
365 366
	}

367
	queue_move_range(&playlist->queue, start, end, to);
368 369 370

	if (!playlist->queue.random) {
		/* update current/queued */
371 372 373 374
		if ((int)start <= playlist->current &&
		    (unsigned)playlist->current < end)
			playlist->current += to - start;
		else if (playlist->current >= (int)end &&
375
			 playlist->current <= to) {
376
			playlist->current -= end - start;
377
		} else if (playlist->current >= to &&
378 379
			   playlist->current < (int)start) {
			playlist->current += end - start;
380 381 382
		}
	}

Max Kellermann's avatar
Max Kellermann committed
383
	playlist_increment_version(playlist);
384 385 386 387 388 389 390

	playlist_update_queued_song(playlist, queued);

	return PLAYLIST_RESULT_SUCCESS;
}

enum playlist_result
Max Kellermann's avatar
Max Kellermann committed
391
playlist_move_id(struct playlist *playlist, unsigned id1, int to)
392 393 394 395 396
{
	int song = queue_id_to_position(&playlist->queue, id1);
	if (song < 0)
		return PLAYLIST_RESULT_NO_SUCH_SONG;

Max Kellermann's avatar
Max Kellermann committed
397
	return playlist_move_range(playlist, song, song+1, to);
398 399
}

Max Kellermann's avatar
Max Kellermann committed
400 401
void
playlist_shuffle(struct playlist *playlist, unsigned start, unsigned end)
402 403 404
{
	const struct song *queued;

405 406 407 408 409 410
	if (end > queue_length(&playlist->queue))
		/* correct the "end" offset */
		end = queue_length(&playlist->queue);

	if ((start+1) >= end)
		/* needs at least two entries. */
411 412 413
		return;

	queued = playlist_get_queued_song(playlist);
414 415 416 417
	if (playlist->playing && playlist->current >= 0) {
		unsigned current_position;
		current_position = queue_order_to_position(&playlist->queue,
	                                                   playlist->current);
418

419 420
		if (current_position >= start && current_position < end)
		{
421
			/* put current playing song first */
422 423 424 425 426 427 428 429 430 431 432
			queue_swap(&playlist->queue, start, current_position);

			if (playlist->queue.random) {
				playlist->current =
					queue_position_to_order(&playlist->queue, start);
			} else
				playlist->current = start;

			/* start shuffle after the current song */
			start++;
		}
433
	} else {
434
		/* no playback currently: reset playlist->current */
435 436 437 438

		playlist->current = -1;
	}

439
	queue_shuffle_range(&playlist->queue, start, end);
440

Max Kellermann's avatar
Max Kellermann committed
441
	playlist_increment_version(playlist);
442 443 444

	playlist_update_queued_song(playlist, queued);
}