Manager.hxx 3.28 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 21 22 23 24
 * 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 "check.h"
#include "Connection.hxx"
25
#include "Compiler.h"
26
#include "event/IdleMonitor.hxx"
27

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

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

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

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

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

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

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

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

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

	Map connections;
81

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

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

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

100 101
	using IdleMonitor::GetEventLoop;

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

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

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

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

#endif