mpd/src/PlaylistDatabase.cxx

71 lines
2.1 KiB
C++
Raw Normal View History

/*
2022-07-14 17:58:12 +02:00
* Copyright 2003-2022 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.
*/
2013-01-02 19:52:57 +01:00
#include "PlaylistDatabase.hxx"
2014-01-27 11:05:21 +01:00
#include "db/PlaylistVector.hxx"
#include "lib/fmt/RuntimeError.hxx"
2021-12-03 14:02:07 +01:00
#include "io/LineReader.hxx"
#include "io/BufferedOutputStream.hxx"
2019-05-08 15:47:58 +02:00
#include "time/ChronoUtil.hxx"
#include "util/StringStrip.hxx"
#include <fmt/format.h>
#include <cstring>
#include <stdlib.h>
void
playlist_vector_save(BufferedOutputStream &os, const PlaylistVector &pv)
{
for (const PlaylistInfo &pi : pv) {
2022-07-13 12:54:58 +02:00
os.Fmt(FMT_STRING(PLAYLIST_META_BEGIN "{}\n"), pi.name);
if (!IsNegative(pi.mtime))
2022-07-13 12:54:58 +02:00
os.Fmt(FMT_STRING("mtime: {}\n"),
std::chrono::system_clock::to_time_t(pi.mtime));
os.Write("playlist_end\n");
}
}
void
playlist_metadata_load(LineReader &file, PlaylistVector &pv, const char *name)
{
PlaylistInfo pm(name);
2013-01-02 19:52:57 +01:00
char *line, *colon;
const char *value;
2013-10-02 08:13:28 +02:00
while ((line = file.ReadLine()) != nullptr &&
std::strcmp(line, "playlist_end") != 0) {
colon = std::strchr(line, ':');
if (colon == nullptr || colon == line)
throw FmtRuntimeError("unknown line in db: {}", line);
*colon++ = 0;
value = StripLeft(colon);
if (std::strcmp(line, "mtime") == 0)
pm.mtime = std::chrono::system_clock::from_time_t(strtol(value, nullptr, 10));
else
throw FmtRuntimeError("unknown line in db: {}", line);
}
2013-01-02 22:16:52 +01:00
pv.UpdateOrInsert(std::move(pm));
}