Manager.hxx 3.27 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2019 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
 * 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.
 */

#ifndef MPD_NFS_MANAGER_HXX
#define MPD_NFS_MANAGER_HXX

#include "Connection.hxx"
24
#include "util/Compiler.h"
25
#include "event/IdleMonitor.hxx"
26

27
#include <boost/intrusive/set.hpp>
28
#include <boost/intrusive/slist.hpp>
29 30 31 32 33

/**
 * A manager for NFS connections.  Handles multiple connections to
 * multiple NFS servers.
 */
34
class NfsManager final : IdleMonitor {
35 36 37 38 39 40 41
	struct LookupKey {
		const char *server;
		const char *export_name;
	};

	class ManagedConnection final
		: public NfsConnection,
42
		  public boost::intrusive::slist_base_hook<boost::intrusive::link_mode<boost::intrusive::normal_link>>,
43
		  public boost::intrusive::set_base_hook<boost::intrusive::link_mode<boost::intrusive::normal_link>> {
44 45 46 47 48
		NfsManager &manager;

	public:
		ManagedConnection(NfsManager &_manager, EventLoop &_loop,
				  const char *_server,
49
				  const char *_export_name) noexcept
50 51 52 53 54
			:NfsConnection(_loop, _server, _export_name),
			 manager(_manager) {}

	protected:
		/* virtual methods from NfsConnection */
55
		void OnNfsConnectionError(std::exception_ptr &&e) noexcept override;
56 57
	};

58 59 60
	struct Compare {
		gcc_pure
		bool operator()(const LookupKey a,
61
				const ManagedConnection &b) const noexcept;
62 63 64

		gcc_pure
		bool operator()(const ManagedConnection &a,
65
				const LookupKey b) const noexcept;
66 67 68

		gcc_pure
		bool operator()(const ManagedConnection &a,
69
				const ManagedConnection &b) const noexcept;
70 71
	};

72
	/**
73
	 * Maps server and export_name to #ManagedConnection.
74
	 */
75 76 77 78 79
	typedef boost::intrusive::set<ManagedConnection,
				      boost::intrusive::compare<Compare>,
				      boost::intrusive::constant_time_size<false>> Map;

	Map connections;
80

81 82 83 84 85 86 87 88 89
	typedef boost::intrusive::slist<ManagedConnection> List;

	/**
	 * A list of "garbage" connection objects.  Their destruction
	 * is postponed because they were thrown into the garbage list
	 * when callers on the stack were still using them.
	 */
	List garbage;

90
public:
91
	explicit NfsManager(EventLoop &_loop) noexcept
92
		:IdleMonitor(_loop) {}
93

94 95 96
	/**
	 * Must be run from EventLoop's thread.
	 */
97
	~NfsManager() noexcept;
98

99 100
	using IdleMonitor::GetEventLoop;

101 102
	gcc_pure
	NfsConnection &GetConnection(const char *server,
103
				     const char *export_name) noexcept;
104 105

private:
106
	void ScheduleDelete(ManagedConnection &c) noexcept {
107 108 109 110 111 112 113 114
		connections.erase(connections.iterator_to(c));
		garbage.push_front(c);
		IdleMonitor::Schedule();
	}

	/**
	 * Delete all connections on the #garbage list.
	 */
115
	void CollectGarbage() noexcept;
116 117

	/* virtual methods from IdleMonitor */
118
	void OnIdle() noexcept override;
119 120 121
};

#endif