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"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.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-01-03 10:12:41 +01:00
|
|
|
#include "TextFile.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
|
|
|
|
2013-10-02 08:11:58 +02:00
|
|
|
#include <glib.h>
|
|
|
|
|
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
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_save_database_song(FILE *fp, int idx, const Song &song)
|
2010-07-25 12:16:15 +02:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
const auto uri = song.GetURI();
|
2013-10-17 01:01:15 +02:00
|
|
|
fprintf(fp, "%i:%s\n", idx, uri.c_str());
|
2010-07-25 12:16:15 +02:00
|
|
|
}
|
|
|
|
|
2010-07-25 12:21:47 +02:00
|
|
|
static void
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_save_full_song(FILE *fp, const Song &song)
|
2010-07-25 12:21:47 +02:00
|
|
|
{
|
|
|
|
song_save(fp, song);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-10-19 18:48:38 +02:00
|
|
|
queue_save_song(FILE *fp, int idx, const Song &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
|
2014-01-20 08:57:22 +01: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
|
2014-01-20 08:57:22 +01: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;
|
|
|
|
if (g_str_has_prefix(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;
|
|
|
|
}
|
|
|
|
|
2013-01-03 00:30:15 +01:00
|
|
|
const Database *db = nullptr;
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song;
|
2013-01-03 00:30:15 +01:00
|
|
|
|
2010-07-25 12:21:47 +02:00
|
|
|
if (g_str_has_prefix(line, SONG_BEGIN)) {
|
|
|
|
const char *uri = line + sizeof(SONG_BEGIN) - 1;
|
2013-10-17 23:23:25 +02:00
|
|
|
if (!uri_has_scheme(uri) && !PathTraits::IsAbsoluteUTF8(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;
|
2013-10-19 18:19:03 +02:00
|
|
|
song = song_load(file, nullptr, uri, error);
|
|
|
|
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)) {
|
2013-07-28 13:25:12 +02:00
|
|
|
song = Song::NewRemote(uri);
|
2013-01-03 00:30:15 +01:00
|
|
|
} else {
|
2013-10-22 00:46:02 +02:00
|
|
|
db = GetDatabase();
|
2013-01-03 00:30:15 +01:00
|
|
|
if (db == nullptr)
|
|
|
|
return;
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
song = db->GetSong(uri, IgnoreError());
|
2013-01-03 00:30:15 +01:00
|
|
|
if (song == nullptr)
|
|
|
|
return;
|
|
|
|
}
|
2010-07-25 12:21:47 +02:00
|
|
|
}
|
2009-01-23 16:35:04 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
queue.Append(song, priority);
|
2012-08-15 23:28:19 +02:00
|
|
|
|
2013-01-03 00:30:15 +01:00
|
|
|
if (db != nullptr)
|
|
|
|
db->ReturnSong(song);
|
2013-10-18 01:12:47 +02:00
|
|
|
else
|
|
|
|
song->Free();
|
2009-01-23 16:35:04 +01:00
|
|
|
}
|