mpd/src/db/plugins/simple/DatabaseSave.cxx

133 lines
4.0 KiB
C++
Raw Normal View History

2011-09-10 07:33:13 +02:00
/*
2017-01-03 20:48:59 +01:00
* Copyright 2003-2017 The Music Player Daemon Project
2011-09-10 07:33:13 +02: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.
*
* 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 "DatabaseSave.hxx"
2014-02-26 09:17:41 +01:00
#include "db/DatabaseLock.hxx"
2013-01-02 22:52:08 +01:00
#include "Directory.hxx"
2013-01-02 19:52:57 +01:00
#include "DirectorySave.hxx"
2014-08-07 18:35:57 +02:00
#include "fs/io/BufferedOutputStream.hxx"
#include "fs/io/TextFile.hxx"
#include "tag/ParseName.hxx"
2015-08-24 11:19:19 +02:00
#include "tag/Settings.hxx"
#include "fs/Charset.hxx"
#include "util/StringCompare.hxx"
#include "util/RuntimeError.hxx"
2011-09-10 07:33:13 +02:00
2013-10-17 22:07:59 +02:00
#include <string.h>
2011-09-10 07:33:13 +02:00
#include <stdlib.h>
#define DIRECTORY_INFO_BEGIN "info_begin"
#define DIRECTORY_INFO_END "info_end"
#define DB_FORMAT_PREFIX "format: "
#define DIRECTORY_MPD_VERSION "mpd_version: "
#define DIRECTORY_FS_CHARSET "fs_charset: "
#define DB_TAG_PREFIX "tag: "
static constexpr unsigned DB_FORMAT = 2;
2011-09-10 07:33:13 +02:00
/**
* The oldest database format understood by this MPD version.
*/
static constexpr unsigned OLDEST_DB_FORMAT = 1;
2011-09-10 07:33:13 +02:00
void
db_save_internal(BufferedOutputStream &os, const Directory &music_root)
2011-09-10 07:33:13 +02:00
{
os.Format("%s\n", DIRECTORY_INFO_BEGIN);
os.Format(DB_FORMAT_PREFIX "%u\n", DB_FORMAT);
os.Format("%s%s\n", DIRECTORY_MPD_VERSION, VERSION);
os.Format("%s%s\n", DIRECTORY_FS_CHARSET, GetFSCharset());
2011-09-10 07:33:13 +02:00
for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; ++i)
if (IsTagEnabled(i))
os.Format(DB_TAG_PREFIX "%s\n", tag_item_names[i]);
2011-09-10 07:33:13 +02:00
os.Format("%s\n", DIRECTORY_INFO_END);
2011-09-10 07:33:13 +02:00
directory_save(os, music_root);
2011-09-10 07:33:13 +02:00
}
void
db_load_internal(TextFile &file, Directory &music_root)
2011-09-10 07:33:13 +02:00
{
char *line;
unsigned format = 0;
2011-09-10 07:33:13 +02:00
bool found_charset = false, found_version = false;
bool tags[TAG_NUM_OF_ITEM_TYPES];
/* get initial info */
2013-01-03 10:16:05 +01:00
line = file.ReadLine();
if (line == nullptr || strcmp(DIRECTORY_INFO_BEGIN, line) != 0)
throw std::runtime_error("Database corrupted");
2011-09-10 07:33:13 +02:00
memset(tags, false, sizeof(tags));
2013-10-19 18:19:03 +02:00
while ((line = file.ReadLine()) != nullptr &&
2011-09-10 07:33:13 +02:00
strcmp(line, DIRECTORY_INFO_END) != 0) {
const char *p;
if ((p = StringAfterPrefix(line, DB_FORMAT_PREFIX))) {
format = atoi(p);
} else if (StringStartsWith(line, DIRECTORY_MPD_VERSION)) {
if (found_version)
throw std::runtime_error("Duplicate version line");
2011-09-10 07:33:13 +02:00
found_version = true;
} else if ((p = StringAfterPrefix(line, DIRECTORY_FS_CHARSET))) {
if (found_charset)
throw std::runtime_error("Duplicate charset line");
2011-09-10 07:33:13 +02:00
found_charset = true;
const char *new_charset = p;
const char *const old_charset = GetFSCharset();
if (*old_charset != 0
&& strcmp(new_charset, old_charset) != 0)
throw FormatRuntimeError("Existing database has charset "
"\"%s\" instead of \"%s\"; "
"discarding database file",
new_charset, old_charset);
} else if ((p = StringAfterPrefix(line, DB_TAG_PREFIX))) {
const char *name = p;
TagType tag = tag_name_parse(name);
if (tag == TAG_NUM_OF_ITEM_TYPES)
throw FormatRuntimeError("Unrecognized tag '%s', "
"discarding database file",
name);
2011-09-10 07:33:13 +02:00
tags[tag] = true;
} else {
throw FormatRuntimeError("Malformed line: %s", line);
2011-09-10 07:33:13 +02:00
}
}
if (format < OLDEST_DB_FORMAT || format > DB_FORMAT)
throw std::runtime_error("Database format mismatch, "
"discarding database file");
2011-09-10 07:33:13 +02:00
for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; ++i)
if (IsTagEnabled(i) && !tags[i])
throw std::runtime_error("Tag list mismatch, "
"discarding database file");
2011-09-10 07:33:13 +02:00
2015-12-15 23:27:05 +01:00
const ScopeDatabaseLock protect;
directory_load(file, music_root);
2011-09-10 07:33:13 +02:00
}