2009-02-04 20:31:53 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-02-04 20:31:53 +01:00
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-02-04 20:31:53 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions for editing the playlist (adding, removing, reordering
|
|
|
|
* songs in the queue).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-07 10:55:05 +01:00
|
|
|
#include "Playlist.hxx"
|
2016-03-10 20:10:14 +01:00
|
|
|
#include "Listener.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "PlaylistError.hxx"
|
2015-08-15 15:55:46 +02:00
|
|
|
#include "player/Control.hxx"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2014-02-02 14:37:52 +01:00
|
|
|
#include "SongLoader.hxx"
|
2013-01-03 00:30:15 +01:00
|
|
|
|
2016-02-28 11:00:59 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2009-02-04 20:31:53 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
void
|
|
|
|
playlist::OnModified()
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
2014-07-11 20:01:53 +02:00
|
|
|
if (bulk_edit) {
|
|
|
|
/* postponed to CommitBulk() */
|
|
|
|
bulk_modified = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
queue.IncrementVersion();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2016-03-10 20:10:14 +01:00
|
|
|
listener.OnQueueModified();
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2009-11-03 21:08:48 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::Clear(PlayerControl &pc)
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
Stop(pc);
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
queue.Clear();
|
|
|
|
current = -1;
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
OnModified();
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2014-07-11 20:01:53 +02:00
|
|
|
void
|
|
|
|
playlist::BeginBulk()
|
|
|
|
{
|
|
|
|
assert(!bulk_edit);
|
|
|
|
|
|
|
|
bulk_edit = true;
|
|
|
|
bulk_modified = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
playlist::CommitBulk(PlayerControl &pc)
|
|
|
|
{
|
|
|
|
assert(bulk_edit);
|
|
|
|
|
|
|
|
bulk_edit = false;
|
|
|
|
if (!bulk_modified)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (queued < 0)
|
|
|
|
/* if no song was queued, UpdateQueuedSong() is being
|
|
|
|
ignored in "bulk" edit mode; now that we have
|
|
|
|
shuffled all new songs, we can pick a random one
|
|
|
|
(instead of always picking the first one that was
|
|
|
|
added) */
|
|
|
|
UpdateQueuedSong(pc, nullptr);
|
|
|
|
|
|
|
|
OnModified();
|
|
|
|
}
|
|
|
|
|
2014-02-27 17:27:23 +01:00
|
|
|
unsigned
|
2016-02-28 10:51:07 +01:00
|
|
|
playlist::AppendSong(PlayerControl &pc, DetachedSong &&song)
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
|
|
|
unsigned id;
|
|
|
|
|
2016-02-28 10:51:07 +01:00
|
|
|
if (queue.IsFull())
|
|
|
|
throw PlaylistError(PlaylistResult::TOO_LARGE,
|
|
|
|
"Playlist is too large");
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
const DetachedSong *const queued_song = GetQueuedSong();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
id = queue.Append(std::move(song), 0);
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (queue.random) {
|
2014-07-11 21:37:06 +02:00
|
|
|
/* shuffle the new song into the list of remaining
|
2009-02-04 20:31:53 +01:00
|
|
|
songs to play */
|
|
|
|
|
|
|
|
unsigned start;
|
2013-01-07 10:55:05 +01:00
|
|
|
if (queued >= 0)
|
|
|
|
start = queued + 1;
|
2009-02-04 20:31:53 +01:00
|
|
|
else
|
2013-01-07 10:55:05 +01:00
|
|
|
start = current + 1;
|
|
|
|
if (start < queue.GetLength())
|
2017-12-02 17:08:20 +01:00
|
|
|
queue.ShuffleOrderLastWithPriority(start, queue.GetLength());
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
UpdateQueuedSong(pc, queued_song);
|
|
|
|
OnModified();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2014-02-27 17:27:23 +01:00
|
|
|
return id;
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2014-02-27 17:27:23 +01:00
|
|
|
unsigned
|
|
|
|
playlist::AppendURI(PlayerControl &pc, const SongLoader &loader,
|
2016-10-27 21:59:17 +02:00
|
|
|
const char *uri)
|
2009-07-14 21:28:36 +02:00
|
|
|
{
|
2016-10-27 21:59:17 +02:00
|
|
|
std::unique_ptr<DetachedSong> song(loader.LoadSong(uri));
|
2016-02-28 10:51:07 +01:00
|
|
|
return AppendSong(pc, std::move(*song));
|
2009-07-14 21:28:36 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::SwapPositions(PlayerControl &pc, unsigned song1, unsigned song2)
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
if (!queue.IsValidPosition(song1) || !queue.IsValidPosition(song2))
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::BadRange();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
const DetachedSong *const queued_song = GetQueuedSong();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
queue.SwapPositions(song1, song2);
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (queue.random) {
|
|
|
|
/* update the queue order, so that current
|
2009-02-04 20:31:53 +01:00
|
|
|
still points to the current song order */
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
queue.SwapOrders(queue.PositionToOrder(song1),
|
|
|
|
queue.PositionToOrder(song2));
|
2009-02-04 20:31:53 +01:00
|
|
|
} else {
|
|
|
|
/* correct the "current" song order */
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (current == (int)song1)
|
|
|
|
current = song2;
|
|
|
|
else if (current == (int)song2)
|
|
|
|
current = song1;
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
UpdateQueuedSong(pc, queued_song);
|
|
|
|
OnModified();
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::SwapIds(PlayerControl &pc, unsigned id1, unsigned id2)
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
int song1 = queue.IdToPosition(id1);
|
|
|
|
int song2 = queue.IdToPosition(id2);
|
2009-02-04 20:31:53 +01:00
|
|
|
|
|
|
|
if (song1 < 0 || song2 < 0)
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::NoSuchSong();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
SwapPositions(pc, song1, song2);
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::SetPriorityRange(PlayerControl &pc,
|
2013-01-07 10:55:05 +01:00
|
|
|
unsigned start, unsigned end,
|
|
|
|
uint8_t priority)
|
2011-07-19 00:34:33 +02:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
if (start >= GetLength())
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::BadRange();
|
2011-07-19 00:34:33 +02:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (end > GetLength())
|
|
|
|
end = GetLength();
|
2011-07-19 00:34:33 +02:00
|
|
|
|
|
|
|
if (start >= end)
|
2015-12-18 09:21:11 +01:00
|
|
|
return;
|
2011-07-19 00:34:33 +02:00
|
|
|
|
|
|
|
/* remember "current" and "queued" */
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
const int current_position = GetCurrentPosition();
|
2014-01-07 21:39:47 +01:00
|
|
|
const DetachedSong *const queued_song = GetQueuedSong();
|
2011-07-19 00:34:33 +02:00
|
|
|
|
|
|
|
/* apply the priority changes */
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
queue.SetPriorityRange(start, end, priority, current);
|
2011-07-19 00:34:33 +02:00
|
|
|
|
|
|
|
/* restore "current" and choose a new "queued" */
|
|
|
|
|
|
|
|
if (current_position >= 0)
|
2013-01-07 10:55:05 +01:00
|
|
|
current = queue.PositionToOrder(current_position);
|
2011-07-19 00:34:33 +02:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
UpdateQueuedSong(pc, queued_song);
|
|
|
|
OnModified();
|
2011-07-19 00:34:33 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::SetPriorityId(PlayerControl &pc,
|
2013-01-07 10:55:05 +01:00
|
|
|
unsigned song_id, uint8_t priority)
|
2011-07-19 00:34:33 +02:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
int song_position = queue.IdToPosition(song_id);
|
2011-07-19 00:34:33 +02:00
|
|
|
if (song_position < 0)
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::NoSuchSong();
|
2011-07-19 00:34:33 +02:00
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
SetPriorityRange(pc, song_position, song_position + 1, priority);
|
2011-07-19 00:34:33 +02:00
|
|
|
}
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::DeleteInternal(PlayerControl &pc,
|
2014-01-07 21:39:47 +01:00
|
|
|
unsigned song, const DetachedSong **queued_p)
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
assert(song < GetLength());
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
unsigned songOrder = queue.PositionToOrder(song);
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (playing && current == (int)songOrder) {
|
2013-09-27 22:07:20 +02:00
|
|
|
const bool paused = pc.GetState() == PlayerState::PAUSE;
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2014-04-09 23:10:14 +02:00
|
|
|
/* the current song is going to be deleted: see which
|
|
|
|
song is going to be played instead */
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
current = queue.GetNextOrder(current);
|
|
|
|
if (current == (int)songOrder)
|
|
|
|
current = -1;
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (current >= 0 && !paused)
|
2009-02-04 20:31:53 +01:00
|
|
|
/* play the song after the deleted one */
|
2016-09-08 10:29:49 +02:00
|
|
|
try {
|
|
|
|
PlayOrder(pc, current);
|
|
|
|
} catch (...) {
|
|
|
|
/* TODO: log error? */
|
|
|
|
}
|
2014-04-09 23:10:14 +02:00
|
|
|
else {
|
|
|
|
/* stop the player */
|
|
|
|
|
2015-11-11 16:50:57 +01:00
|
|
|
pc.LockStop();
|
2014-04-09 23:10:14 +02:00
|
|
|
playing = false;
|
|
|
|
}
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
*queued_p = nullptr;
|
2013-01-07 10:55:05 +01:00
|
|
|
} else if (current == (int)songOrder)
|
2009-02-10 17:55:08 +01:00
|
|
|
/* there's a "current song" but we're not playing
|
|
|
|
currently - clear "current" */
|
2013-01-07 10:55:05 +01:00
|
|
|
current = -1;
|
2009-02-04 20:31:53 +01:00
|
|
|
|
|
|
|
/* now do it: remove the song */
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
queue.DeletePosition(song);
|
2009-02-04 20:31:53 +01:00
|
|
|
|
|
|
|
/* update the "current" and "queued" variables */
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (current > (int)songOrder)
|
|
|
|
current--;
|
2009-09-30 23:10:15 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::DeletePosition(PlayerControl &pc, unsigned song)
|
2009-09-30 23:10:15 +02:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
if (song >= queue.GetLength())
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::BadRange();
|
2009-09-30 23:10:15 +02:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
const DetachedSong *queued_song = GetQueuedSong();
|
2009-09-30 23:10:15 +02:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
DeleteInternal(pc, song, &queued_song);
|
2009-09-30 23:10:15 +02:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
UpdateQueuedSong(pc, queued_song);
|
|
|
|
OnModified();
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::DeleteRange(PlayerControl &pc, unsigned start, unsigned end)
|
2009-09-30 23:13:13 +02:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
if (start >= queue.GetLength())
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::BadRange();
|
2009-09-30 23:13:13 +02:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (end > queue.GetLength())
|
|
|
|
end = queue.GetLength();
|
2009-09-30 23:13:13 +02:00
|
|
|
|
|
|
|
if (start >= end)
|
2015-12-18 09:21:11 +01:00
|
|
|
return;
|
2009-09-30 23:13:13 +02:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
const DetachedSong *queued_song = GetQueuedSong();
|
2009-09-30 23:13:13 +02:00
|
|
|
|
|
|
|
do {
|
2013-01-07 10:55:05 +01:00
|
|
|
DeleteInternal(pc, --end, &queued_song);
|
2009-09-30 23:13:13 +02:00
|
|
|
} while (end != start);
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
UpdateQueuedSong(pc, queued_song);
|
|
|
|
OnModified();
|
2009-09-30 23:13:13 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::DeleteId(PlayerControl &pc, unsigned id)
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
int song = queue.IdToPosition(id);
|
2009-02-04 20:31:53 +01:00
|
|
|
if (song < 0)
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::NoSuchSong();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
DeletePosition(pc, song);
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-03-18 18:01:01 +01:00
|
|
|
playlist::StaleSong(PlayerControl &pc, const char *uri)
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
2016-03-18 18:08:13 +01:00
|
|
|
/* don't remove the song if it's currently being played, to
|
|
|
|
avoid disrupting playback; a deleted file may still be
|
|
|
|
played if it's still open */
|
|
|
|
// TODO: mark the song as "stale" and postpone deletion
|
|
|
|
int current_position = playing
|
|
|
|
? GetCurrentPosition()
|
|
|
|
: -1;
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
for (int i = queue.GetLength() - 1; i >= 0; --i)
|
2016-03-18 18:08:13 +01:00
|
|
|
if (i != current_position && queue.Get(i).IsURI(uri))
|
2013-01-07 10:55:05 +01:00
|
|
|
DeletePosition(pc, i);
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::MoveRange(PlayerControl &pc, unsigned start, unsigned end, int to)
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
if (!queue.IsValidPosition(start) || !queue.IsValidPosition(end - 1))
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::BadRange();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if ((to >= 0 && to + end - start - 1 >= GetLength()) ||
|
|
|
|
(to < 0 && unsigned(abs(to)) > GetLength()))
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::BadRange();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2009-03-26 22:02:56 +01:00
|
|
|
if ((int)start == to)
|
|
|
|
/* nothing happens */
|
2015-12-18 09:21:11 +01:00
|
|
|
return;
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
const DetachedSong *const queued_song = GetQueuedSong();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* (to < 0) => move to offset from current song
|
|
|
|
* (-playlist.length == to) => move to position BEFORE current song
|
|
|
|
*/
|
2013-01-07 10:55:05 +01:00
|
|
|
const int currentSong = GetCurrentPosition();
|
2013-08-04 14:36:22 +02:00
|
|
|
if (to < 0) {
|
|
|
|
if (currentSong < 0)
|
|
|
|
/* can't move relative to current song,
|
|
|
|
because there is no current song */
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::BadRange();
|
2013-08-04 14:36:22 +02:00
|
|
|
|
2011-12-19 21:15:00 +01:00
|
|
|
if (start <= (unsigned)currentSong && (unsigned)currentSong < end)
|
2009-02-04 20:31:53 +01:00
|
|
|
/* no-op, can't be moved to offset of itself */
|
2015-12-18 09:21:11 +01:00
|
|
|
return;
|
2013-01-07 10:55:05 +01:00
|
|
|
to = (currentSong + abs(to)) % GetLength();
|
2009-03-26 22:02:56 +01:00
|
|
|
if (start < (unsigned)to)
|
|
|
|
to--;
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
queue.MoveRange(start, end, to);
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (!queue.random) {
|
2009-02-04 20:31:53 +01:00
|
|
|
/* update current/queued */
|
2013-01-07 10:55:05 +01:00
|
|
|
if ((int)start <= current && (unsigned)current < end)
|
|
|
|
current += to - start;
|
|
|
|
else if (current >= (int)end && current <= to)
|
|
|
|
current -= end - start;
|
|
|
|
else if (current >= to && current < (int)start)
|
|
|
|
current += end - start;
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
UpdateQueuedSong(pc, queued_song);
|
|
|
|
OnModified();
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::MoveId(PlayerControl &pc, unsigned id1, int to)
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
int song = queue.IdToPosition(id1);
|
2009-02-04 20:31:53 +01:00
|
|
|
if (song < 0)
|
2015-12-18 09:21:11 +01:00
|
|
|
throw PlaylistError::NoSuchSong();
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2015-12-18 09:21:11 +01:00
|
|
|
MoveRange(pc, song, song + 1, to);
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2009-07-14 21:28:36 +02:00
|
|
|
void
|
2013-10-28 10:12:21 +01:00
|
|
|
playlist::Shuffle(PlayerControl &pc, unsigned start, unsigned end)
|
2009-02-04 20:31:53 +01:00
|
|
|
{
|
2013-01-07 10:55:05 +01:00
|
|
|
if (end > GetLength())
|
2009-02-13 11:12:31 +01:00
|
|
|
/* correct the "end" offset */
|
2013-01-07 10:55:05 +01:00
|
|
|
end = GetLength();
|
2009-02-13 11:12:31 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (start + 1 >= end)
|
2009-02-13 11:12:31 +01:00
|
|
|
/* needs at least two entries. */
|
2009-02-04 20:31:53 +01:00
|
|
|
return;
|
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
const DetachedSong *const queued_song = GetQueuedSong();
|
2013-01-07 10:55:05 +01:00
|
|
|
if (playing && current >= 0) {
|
|
|
|
unsigned current_position = queue.OrderToPosition(current);
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (current_position >= start && current_position < end) {
|
2009-02-04 20:31:53 +01:00
|
|
|
/* put current playing song first */
|
2013-01-07 10:55:05 +01:00
|
|
|
queue.SwapPositions(start, current_position);
|
2009-02-13 10:38:32 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
if (queue.random) {
|
|
|
|
current = queue.PositionToOrder(start);
|
2009-02-13 10:38:32 +01:00
|
|
|
} else
|
2013-01-07 10:55:05 +01:00
|
|
|
current = start;
|
2009-02-13 10:38:32 +01:00
|
|
|
|
|
|
|
/* start shuffle after the current song */
|
|
|
|
start++;
|
|
|
|
}
|
2009-02-04 20:31:53 +01:00
|
|
|
} else {
|
2013-01-07 10:55:05 +01:00
|
|
|
/* no playback currently: reset current */
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
current = -1;
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
queue.ShuffleRange(start, end);
|
2009-02-04 20:31:53 +01:00
|
|
|
|
2013-01-07 10:55:05 +01:00
|
|
|
UpdateQueuedSong(pc, queued_song);
|
|
|
|
OnModified();
|
2009-02-04 20:31:53 +01:00
|
|
|
}
|
2014-07-12 03:00:01 +02:00
|
|
|
|
2016-02-28 10:51:07 +01:00
|
|
|
void
|
2014-07-12 03:00:01 +02:00
|
|
|
playlist::SetSongIdRange(PlayerControl &pc, unsigned id,
|
2016-02-28 10:51:07 +01:00
|
|
|
SongTime start, SongTime end)
|
2014-07-12 03:00:01 +02:00
|
|
|
{
|
2014-08-28 12:53:48 +02:00
|
|
|
assert(end.IsZero() || start < end);
|
2014-07-12 03:00:01 +02:00
|
|
|
|
|
|
|
int position = queue.IdToPosition(id);
|
2016-02-28 10:51:07 +01:00
|
|
|
if (position < 0)
|
|
|
|
throw PlaylistError::NoSuchSong();
|
2014-07-12 03:00:01 +02:00
|
|
|
|
|
|
|
if (playing) {
|
2016-02-28 10:51:07 +01:00
|
|
|
if (position == current)
|
|
|
|
throw PlaylistError(PlaylistResult::DENIED,
|
|
|
|
"Cannot edit the current song");
|
2014-07-12 03:00:01 +02:00
|
|
|
|
|
|
|
if (position == queued) {
|
|
|
|
/* if we're manipulating the "queued" song,
|
|
|
|
the decoder thread may be decoding it
|
|
|
|
already; cancel that */
|
2015-11-11 16:50:57 +01:00
|
|
|
pc.LockCancel();
|
2014-07-12 03:00:01 +02:00
|
|
|
queued = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DetachedSong &song = queue.Get(position);
|
2014-08-29 12:14:27 +02:00
|
|
|
|
|
|
|
const auto duration = song.GetTag().duration;
|
|
|
|
if (!duration.IsNegative()) {
|
2014-07-12 03:00:01 +02:00
|
|
|
/* validate the offsets */
|
|
|
|
|
2016-02-28 10:51:07 +01:00
|
|
|
if (start > duration)
|
|
|
|
throw PlaylistError(PlaylistResult::BAD_RANGE,
|
|
|
|
"Invalid start offset");
|
2014-07-12 03:00:01 +02:00
|
|
|
|
2014-08-29 12:14:27 +02:00
|
|
|
if (end >= duration)
|
2014-08-28 12:53:48 +02:00
|
|
|
end = SongTime::zero();
|
2014-07-12 03:00:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* edit it */
|
2014-08-28 12:53:48 +02:00
|
|
|
song.SetStartTime(start);
|
|
|
|
song.SetEndTime(end);
|
2014-07-12 03:00:01 +02:00
|
|
|
|
|
|
|
/* announce the change to all interested subsystems */
|
|
|
|
UpdateQueuedSong(pc, nullptr);
|
|
|
|
queue.ModifyAtPosition(position);
|
|
|
|
OnModified();
|
|
|
|
}
|