StorageState.cxx 4.46 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2021 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * 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.
 */

/*
 * Save and load mounts of the compound storage to/from the state file.
 *
 */

#include "StorageState.hxx"
26
#include "lib/fmt/ExceptionFormatter.hxx"
27 28 29 30 31 32 33 34 35 36
#include "fs/io/TextFile.hxx"
#include "fs/io/BufferedOutputStream.hxx"
#include "storage/Registry.hxx"
#include "storage/CompositeStorage.hxx"
#include "db/plugins/simple/SimpleDatabasePlugin.hxx"
#include "util/StringCompare.hxx"
#include "util/Domain.hxx"
#include "Instance.hxx"
#include "Log.hxx"

37 38 39 40 41 42
#ifdef __clang__
/* ignore -Wcomma due to strange code in boost/array.hpp (in Boost
   1.72) */
#pragma GCC diagnostic ignored "-Wcomma"
#endif

43 44
#include <boost/crc.hpp>

45 46
#include <set>

47 48 49 50 51 52 53 54 55 56
#define MOUNT_STATE_BEGIN        "mount_begin"
#define MOUNT_STATE_END          "mount_end"
#define MOUNT_STATE_STORAGE_URI  "uri: "
#define MOUNT_STATE_MOUNTED_URL  "mounted_url: "

static constexpr Domain storage_domain("storage");

void
storage_state_save(BufferedOutputStream &os, const Instance &instance)
{
57 58 59
	if (instance.storage == nullptr)
		return;

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
	const auto visitor = [&os](const char *mount_uri, const Storage &storage) {
		std::string uri = storage.MapUTF8("");
		if (uri.empty() || StringIsEmpty(mount_uri))
			return;

		os.Format(
			MOUNT_STATE_BEGIN "\n"
			MOUNT_STATE_STORAGE_URI "%s\n"
			MOUNT_STATE_MOUNTED_URL "%s\n"
			MOUNT_STATE_END "\n", mount_uri, uri.c_str());
	};

	((CompositeStorage*)instance.storage)->VisitMounts(visitor);
}

bool
storage_state_restore(const char *line, TextFile &file, Instance &instance)
{
	if (!StringStartsWith(line, MOUNT_STATE_BEGIN))
		return false;

	std::string url;
	std::string uri;
	const char* value;

	while ((line = file.ReadLine()) != nullptr) {
		if (StringStartsWith(line, MOUNT_STATE_END))
			break;

		if ((value = StringAfterPrefix(line, MOUNT_STATE_MOUNTED_URL)))
			url = value;
		else if ((value = StringAfterPrefix(line, MOUNT_STATE_STORAGE_URI)))
			uri = value;
		else
94 95 96
			FmtError(storage_domain,
				 "Unrecognized line in mountpoint state: {}",
				 line);
97 98
	}

99 100 101 102 103 104
	if (instance.storage == nullptr)
		/* without storage (a CompositeStorage instance), we
		   cannot mount, and therefore we silently ignore the
		   state file */
		return true;

105 106 107 108 109
	if (url.empty() || uri.empty()) {
		LogError(storage_domain, "Missing value in mountpoint state.");	
		return true;
	}

110
	FmtDebug(storage_domain, "Restoring mount {} => {}", uri, url);
111

112 113 114 115 116 117
	auto &composite_storage = *(CompositeStorage *)instance.storage;
	if (composite_storage.IsMountPoint(uri.c_str())) {
		LogError(storage_domain, "Mount point busy");
		return true;
	}

118 119 120 121 122
	if (composite_storage.IsMounted(url.c_str())) {
		LogError(storage_domain, "This storage is already mounted");
		return true;
	}

Max Kellermann's avatar
Max Kellermann committed
123
	auto &event_loop = instance.io_thread.GetEventLoop();
124
	auto storage = CreateStorageURI(event_loop, url.c_str());
125
	if (storage == nullptr) {
126
		FmtError(storage_domain, "Unrecognized storage URI: {}", url);
127 128 129
		return true;
	}

130
	if (auto *db = dynamic_cast<SimpleDatabase *>(instance.GetDatabase())) {
131
		try {
132
			db->Mount(uri.c_str(), url.c_str());
133
		} catch (...) {
134 135 136
			FmtError(storage_domain,
				 "Failed to restore mount to {}: {}",
				 url, std::current_exception());
137
			return true;
138 139 140
		}
	}

141
	composite_storage.Mount(uri.c_str(), std::move(storage));
142 143 144 145 146 147 148

	return true;
}

unsigned
storage_state_get_hash(const Instance &instance)
{
149 150 151
	if (instance.storage == nullptr)
		return 0;

152
	std::set<std::string> mounts;
153 154

	const auto visitor = [&mounts](const char *mount_uri, const Storage &storage) {
155
		mounts.emplace(std::string(mount_uri) + ":" + storage.MapUTF8(""));
156 157 158 159 160 161
	};

	((CompositeStorage*)instance.storage)->VisitMounts(visitor);

	boost::crc_32_type result;

162
	for (const auto& mount : mounts) {
163 164 165 166 167
		result.process_bytes(mount.c_str(), mount.length());
	}

	return result.checksum();
}