2009-01-23 16:35:04 +01:00
|
|
|
/*
|
2013-01-02 19:52:57 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-01-23 16:35:04 +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-01-23 16:35:04 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-02 19:52:57 +01:00
|
|
|
#include "QueueSave.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Queue.hxx"
|
|
|
|
#include "PlaylistError.hxx"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2013-01-02 19:52:57 +01:00
|
|
|
#include "SongSave.hxx"
|
2013-01-03 00:30:15 +01:00
|
|
|
#include "DatabasePlugin.hxx"
|
|
|
|
#include "DatabaseGlue.hxx"
|
2013-12-06 22:22:58 +01:00
|
|
|
#include "fs/TextFile.hxx"
|
2013-11-28 18:48:35 +01:00
|
|
|
#include "util/StringUtil.hxx"
|
2013-04-08 23:30:21 +02:00
|
|
|
#include "util/UriUtil.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-10-17 23:23:25 +02:00
|
|
|
#include "fs/Traits.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2009-01-23 16:35:04 +01:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-08-21 19:17:14 +02:00
|
|
|
#define PRIO_LABEL "Prio: "
|
|
|
|
|
2010-07-25 12:16:15 +02:00
|
|
|
static void
|
2014-01-07 21:39:47 +01:00
|
|
|
queue_save_database_song(FILE *fp, int idx, const DetachedSong &song)
|
2010-07-25 12:16:15 +02:00
|
|
|
{
|
2014-01-07 21:39:47 +01:00
|
|
|
fprintf(fp, "%i:%s\n", idx, song.GetURI());
|
2010-07-25 12:16:15 +02:00
|
|
|
}
|
|
|
|
|
2010-07-25 12:21:47 +02:00
|
|
|
static void
|
2014-01-07 21:39:47 +01:00
|
|
|
queue_save_full_song(FILE *fp, const DetachedSong &song)
|
2010-07-25 12:21:47 +02:00
|
|
|
{
|
|
|
|
song_save(fp, song);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-01-07 21:39:47 +01:00
|
|
|
queue_save_song(FILE *fp, int idx, const DetachedSong &song)
|
2010-07-25 12:21:47 +02:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
if (song.IsInDatabase())
|
2010-07-25 12:21:47 +02:00
|
|
|
queue_save_database_song(fp, idx, song);
|
|
|
|
else
|
|
|
|
queue_save_full_song(fp, song);
|
|
|
|
}
|
|
|
|
|
2009-01-23 16:35:04 +01:00
|
|
|
void
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_save(FILE *fp, const queue &queue)
|
2009-01-23 16:35:04 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
for (unsigned i = 0; i < queue.GetLength(); i++) {
|
|
|
|
uint8_t prio = queue.GetPriorityAtPosition(i);
|
2012-08-21 19:17:14 +02:00
|
|
|
if (prio != 0)
|
|
|
|
fprintf(fp, PRIO_LABEL "%u\n", prio);
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_save_song(fp, i, queue.Get(i));
|
2012-08-21 19:17:14 +02:00
|
|
|
}
|
2009-01-23 16:35:04 +01:00
|
|
|
}
|
|
|
|
|
2010-07-25 12:43:05 +02:00
|
|
|
void
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_load_song(TextFile &file, const char *line, queue &queue)
|
2009-01-23 16:35:04 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
if (queue.IsFull())
|
2010-07-25 12:43:05 +02:00
|
|
|
return;
|
2009-01-23 16:35:04 +01:00
|
|
|
|
2012-08-21 19:17:14 +02:00
|
|
|
uint8_t priority = 0;
|
2013-11-28 18:48:35 +01:00
|
|
|
if (StringStartsWith(line, PRIO_LABEL)) {
|
2013-10-19 18:19:03 +02:00
|
|
|
priority = strtoul(line + sizeof(PRIO_LABEL) - 1, nullptr, 10);
|
2012-08-21 19:17:14 +02:00
|
|
|
|
2013-01-03 10:16:05 +01:00
|
|
|
line = file.ReadLine();
|
2013-10-19 18:19:03 +02:00
|
|
|
if (line == nullptr)
|
2012-08-21 19:17:14 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
DetachedSong *song;
|
2013-01-03 00:30:15 +01:00
|
|
|
|
2013-11-28 18:48:35 +01:00
|
|
|
if (StringStartsWith(line, SONG_BEGIN)) {
|
2010-07-25 12:21:47 +02:00
|
|
|
const char *uri = line + sizeof(SONG_BEGIN) - 1;
|
2013-12-04 22:53:43 +01:00
|
|
|
if (!uri_has_scheme(uri) && !PathTraitsUTF8::IsAbsolute(uri))
|
2010-07-25 12:21:47 +02:00
|
|
|
return;
|
2009-01-23 16:35:04 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2014-01-07 21:39:47 +01:00
|
|
|
song = song_load(file, uri, error);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (song == nullptr) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2010-07-25 12:21:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
char *endptr;
|
|
|
|
long ret = strtol(line, &endptr, 10);
|
|
|
|
if (ret < 0 || *endptr != ':' || endptr[1] == 0) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(playlist_domain,
|
|
|
|
"Malformed playlist line in state file");
|
2010-07-25 12:21:47 +02:00
|
|
|
return;
|
|
|
|
}
|
2009-01-23 16:35:04 +01:00
|
|
|
|
2013-01-03 00:30:15 +01:00
|
|
|
const char *uri = endptr + 1;
|
2010-07-25 12:21:47 +02:00
|
|
|
|
2013-01-03 00:30:15 +01:00
|
|
|
if (uri_has_scheme(uri)) {
|
2014-01-07 21:39:47 +01:00
|
|
|
song = new DetachedSong(uri);
|
2013-01-03 00:30:15 +01:00
|
|
|
} else {
|
2014-01-07 21:39:47 +01:00
|
|
|
const Database *db = GetDatabase();
|
2013-01-03 00:30:15 +01:00
|
|
|
if (db == nullptr)
|
|
|
|
return;
|
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
Song *tmp = db->GetSong(uri, IgnoreError());
|
|
|
|
if (tmp == nullptr)
|
2013-01-03 00:30:15 +01:00
|
|
|
return;
|
2014-01-07 21:39:47 +01:00
|
|
|
|
|
|
|
song = new DetachedSong(*tmp);
|
|
|
|
db->ReturnSong(tmp);
|
2013-01-03 00:30:15 +01:00
|
|
|
}
|
2010-07-25 12:21:47 +02:00
|
|
|
}
|
2009-01-23 16:35:04 +01:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
queue.Append(std::move(*song), priority);
|
|
|
|
delete song;
|
2009-01-23 16:35:04 +01:00
|
|
|
}
|