InotifyQueue.cxx 2.61 KB
Newer Older
1
/*
2
 * Copyright 2003-2018 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.
 */

Max Kellermann's avatar
Max Kellermann committed
20
#include "InotifyQueue.hxx"
21
#include "InotifyDomain.hxx"
22
#include "Service.hxx"
23
#include "Log.hxx"
24
#include "protocol/Ack.hxx" // for class ProtocolError
25
#include "util/StringCompare.hxx"
26

27 28
/**
 * Wait this long after the last change before calling
29 30
 * UpdateService::Enqueue().  This increases the probability that
 * updates can be bundled.
31
 */
32 33
static constexpr std::chrono::steady_clock::duration INOTIFY_UPDATE_DELAY =
	std::chrono::seconds(5);
34

35
void
36
InotifyQueue::OnDelay() noexcept
37 38 39
{
	unsigned id;

40 41
	while (!queue.empty()) {
		const char *uri_utf8 = queue.front().c_str();
42

43
		try {
44 45 46 47 48 49 50 51 52 53 54
			try {
				id = update.Enqueue(uri_utf8, false);
			} catch (const ProtocolError &e) {
				if (e.GetCode() == ACK_ERROR_UPDATE_ALREADY) {
					/* retry later */
					delay_event.Schedule(INOTIFY_UPDATE_DELAY);
					return;
				}

				throw;
			}
55 56 57 58 59 60 61
		} catch (...) {
			FormatError(std::current_exception(),
				    "Failed to enqueue '%s'", uri_utf8);
			queue.pop_front();
			continue;
		}

62 63
		FormatDebug(inotify_domain, "updating '%s' job=%u",
			    uri_utf8, id);
64

65
		queue.pop_front();
66 67 68
	}
}

69
gcc_pure
70
static bool
71
path_in(const char *path, const char *possible_parent) noexcept
72
{
73 74
	if (StringIsEmpty(path))
		return true;
75

76 77 78
	auto rest = StringAfterPrefix(path, possible_parent);
	return rest != nullptr &&
		(StringIsEmpty(rest) || rest[0] == '/');
79 80 81
}

void
82
InotifyQueue::Enqueue(const char *uri_utf8)
83
{
84
	delay_event.Schedule(INOTIFY_UPDATE_DELAY);
85 86

	for (auto i = queue.begin(), end = queue.end(); i != end;) {
87
		const char *current_uri = i->c_str();
88

89
		if (path_in(uri_utf8, current_uri))
90 91 92 93 94 95 96
			/* already enqueued */
			return;

		if (path_in(current_uri, uri_utf8))
			/* existing path is a sub-path of the new
			   path; we can dequeue the existing path and
			   update the new path instead */
97
			i = queue.erase(i);
98
		else
99
			++i;
100 101
	}

102
	queue.emplace_back(uri_utf8);
103
}