DatabaseSave.cxx 4 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * 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"
21
#include "DatabaseSave.hxx"
22
#include "db/DatabaseLock.hxx"
23
#include "Directory.hxx"
24
#include "DirectorySave.hxx"
25 26
#include "fs/io/BufferedOutputStream.hxx"
#include "fs/io/TextFile.hxx"
27
#include "tag/Tag.hxx"
28
#include "tag/Settings.hxx"
29
#include "fs/Charset.hxx"
30
#include "util/StringCompare.hxx"
31
#include "util/RuntimeError.hxx"
32

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

43
static constexpr unsigned DB_FORMAT = 2;
44

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

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

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

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

64
	directory_save(os, music_root);
65 66
}

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

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

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

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

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

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

			found_charset = true;

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

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

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

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

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