mpd/src/queue/QueueSave.cxx

120 lines
2.8 KiB
C++
Raw Normal View History

/*
2014-01-13 22:30:36 +01:00
* Copyright (C) 2003-2014 The Music Player Daemon Project
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
2013-01-02 19:52:57 +01:00
#include "QueueSave.hxx"
#include "Queue.hxx"
#include "PlaylistError.hxx"
#include "DetachedSong.hxx"
2013-01-02 19:52:57 +01:00
#include "SongSave.hxx"
2014-02-03 22:25:54 +01:00
#include "SongLoader.hxx"
#include "playlist/PlaylistSong.hxx"
2013-12-06 22:22:58 +01:00
#include "fs/TextFile.hxx"
#include "util/StringUtil.hxx"
#include "util/Error.hxx"
#include "fs/Traits.hxx"
#include "Log.hxx"
#include <stdlib.h>
2012-08-21 19:17:14 +02:00
#define PRIO_LABEL "Prio: "
static void
queue_save_database_song(FILE *fp, int idx, const DetachedSong &song)
{
fprintf(fp, "%i:%s\n", idx, song.GetURI());
}
static void
queue_save_full_song(FILE *fp, const DetachedSong &song)
{
song_save(fp, song);
}
static void
queue_save_song(FILE *fp, int idx, const DetachedSong &song)
{
2013-10-19 18:48:38 +02:00
if (song.IsInDatabase())
queue_save_database_song(fp, idx, song);
else
queue_save_full_song(fp, song);
}
void
queue_save(FILE *fp, const Queue &queue)
{
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
}
}
void
2014-02-03 22:25:54 +01:00
queue_load_song(TextFile &file, const SongLoader &loader,
const char *line, Queue &queue)
{
2013-10-19 18:48:38 +02:00
if (queue.IsFull())
return;
2012-08-21 19:17:14 +02:00
uint8_t priority = 0;
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;
}
DetachedSong *song;
if (StringStartsWith(line, SONG_BEGIN)) {
const char *uri = line + sizeof(SONG_BEGIN) - 1;
Error error;
song = song_load(file, uri, error);
2013-10-19 18:19:03 +02:00
if (song == nullptr) {
LogError(error);
return;
}
} else {
char *endptr;
long ret = strtol(line, &endptr, 10);
if (ret < 0 || *endptr != ':' || endptr[1] == 0) {
LogError(playlist_domain,
"Malformed playlist line in state file");
return;
}
const char *uri = endptr + 1;
2014-02-03 22:25:54 +01:00
song = new DetachedSong(uri);
}
if (!playlist_check_translate_song(*song, nullptr, loader)) {
delete song;
return;
}
queue.Append(std::move(*song), priority);
delete song;
}