Manager.hxx 3.18 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 50 51 52 53 54 55
		NfsManager &manager;

	public:
		ManagedConnection(NfsManager &_manager, EventLoop &_loop,
				  const char *_server,
				  const char *_export_name)
			:NfsConnection(_loop, _server, _export_name),
			 manager(_manager) {}

	protected:
		/* virtual methods from NfsConnection */
56
		void OnNfsConnectionError(std::exception_ptr &&e) 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 92
public:
	NfsManager(EventLoop &_loop)
93
		:IdleMonitor(_loop) {}
94

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

100 101
	gcc_pure
	NfsConnection &GetConnection(const char *server,
102
				     const char *export_name) noexcept;
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117

private:
	void ScheduleDelete(ManagedConnection &c) {
		connections.erase(connections.iterator_to(c));
		garbage.push_front(c);
		IdleMonitor::Schedule();
	}

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

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

#endif