Manager.hxx 3.33 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
 * 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 "event/IdleEvent.hxx"
25

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

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

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

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

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

57
	struct Compare {
58
		[[gnu::pure]]
59
		bool operator()(const LookupKey a,
60
				const ManagedConnection &b) const noexcept;
61

62
		[[gnu::pure]]
63
		bool operator()(const ManagedConnection &a,
64
				const LookupKey b) const noexcept;
65

66
		[[gnu::pure]]
67
		bool operator()(const ManagedConnection &a,
68
				const ManagedConnection &b) const noexcept;
69 70
	};

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

	Map connections;
79

80 81 82 83 84 85 86 87 88
	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;

89 90
	IdleEvent idle_event;

91
public:
92
	explicit NfsManager(EventLoop &_loop) noexcept
93
		:idle_event(_loop, BIND_THIS_METHOD(OnIdle)) {}
94

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

100 101 102
	auto &GetEventLoop() const noexcept {
		return idle_event.GetEventLoop();
	}
103

104
	[[gnu::pure]]
105
	NfsConnection &GetConnection(const char *server,
106
				     const char *export_name) noexcept;
107 108

private:
109
	void ScheduleDelete(ManagedConnection &c) noexcept {
110 111
		connections.erase(connections.iterator_to(c));
		garbage.push_front(c);
112
		idle_event.Schedule();
113 114 115 116 117
	}

	/**
	 * Delete all connections on the #garbage list.
	 */
118
	void CollectGarbage() noexcept;
119 120

	/* virtual methods from IdleMonitor */
121
	void OnIdle() noexcept;
122 123 124
};

#endif