DatabaseSave.cxx 3.98 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2020 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * 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.
 */

20
#include "DatabaseSave.hxx"
21
#include "db/DatabaseLock.hxx"
22
#include "DirectorySave.hxx"
23 24
#include "fs/io/BufferedOutputStream.hxx"
#include "fs/io/TextFile.hxx"
25
#include "tag/ParseName.hxx"
26
#include "tag/Settings.hxx"
27
#include "fs/Charset.hxx"
28
#include "util/StringCompare.hxx"
29
#include "util/RuntimeError.hxx"
30
#include "Version.h"
31

32
#include <string.h>
33 34 35 36 37 38 39 40 41
#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: "

42
static constexpr unsigned DB_FORMAT = 2;
43

44 45 46 47 48
/**
 * The oldest database format understood by this MPD version.
 */
static constexpr unsigned OLDEST_DB_FORMAT = 1;

49
void
50
db_save_internal(BufferedOutputStream &os, const Directory &music_root)
51
{
52 53 54 55
	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());
56 57

	for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; ++i)
58
		if (IsTagEnabled(i))
59
			os.Format(DB_TAG_PREFIX "%s\n", tag_item_names[i]);
60

61
	os.Format("%s\n", DIRECTORY_INFO_END);
62

63
	directory_save(os, music_root);
64 65
}

66 67
void
db_load_internal(TextFile &file, Directory &music_root)
68 69
{
	char *line;
70
	unsigned format = 0;
71 72 73 74
	bool found_charset = false, found_version = false;
	bool tags[TAG_NUM_OF_ITEM_TYPES];

	/* get initial info */
75
	line = file.ReadLine();
76 77
	if (line == nullptr || strcmp(DIRECTORY_INFO_BEGIN, line) != 0)
		throw std::runtime_error("Database corrupted");
78 79 80

	memset(tags, false, sizeof(tags));

81
	while ((line = file.ReadLine()) != nullptr &&
82
	       strcmp(line, DIRECTORY_INFO_END) != 0) {
83 84 85 86
		const char *p;

		if ((p = StringAfterPrefix(line, DB_FORMAT_PREFIX))) {
			format = atoi(p);
87
		} else if (StringStartsWith(line, DIRECTORY_MPD_VERSION)) {
88 89
			if (found_version)
				throw std::runtime_error("Duplicate version line");
90 91

			found_version = true;
92
		} else if ((p = StringAfterPrefix(line, DIRECTORY_FS_CHARSET))) {
93 94
			if (found_charset)
				throw std::runtime_error("Duplicate charset line");
95 96 97

			found_charset = true;

98
			const char *new_charset = p;
99 100
			const char *const old_charset = GetFSCharset();
			if (*old_charset != 0
101 102 103 104 105
			    && strcmp(new_charset, old_charset) != 0)
				throw FormatRuntimeError("Existing database has charset "
							 "\"%s\" instead of \"%s\"; "
							 "discarding database file",
							 new_charset, old_charset);
106 107
		} else if ((p = StringAfterPrefix(line, DB_TAG_PREFIX))) {
			const char *name = p;
108
			TagType tag = tag_name_parse(name);
109 110 111 112
			if (tag == TAG_NUM_OF_ITEM_TYPES)
				throw FormatRuntimeError("Unrecognized tag '%s', "
							 "discarding database file",
							 name);
113 114 115

			tags[tag] = true;
		} else {
116
			throw FormatRuntimeError("Malformed line: %s", line);
117 118 119
		}
	}

120 121 122
	if (format < OLDEST_DB_FORMAT || format > DB_FORMAT)
		throw std::runtime_error("Database format mismatch, "
					 "discarding database file");
123

124 125 126 127
	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");
128

129
	const ScopeDatabaseLock protect;
130
	directory_load(file, music_root);
131
}