Discovery.hxx 5.2 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2020 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
 * 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 _UPNPPDISC_H_X_INCLUDED_
#define _UPNPPDISC_H_X_INCLUDED_

23
#include "Compat.hxx"
24
#include "Callback.hxx"
25
#include "Device.hxx"
26 27 28
#include "lib/curl/Init.hxx"
#include "lib/curl/Handler.hxx"
#include "lib/curl/Request.hxx"
29
#include "thread/Mutex.hxx"
30
#include "event/DeferEvent.hxx"
31

32
#include <upnp.h>
33

34 35
#include <boost/intrusive/list.hpp>

36
#include <list>
37
#include <vector>
38
#include <string>
39
#include <chrono>
40

41 42 43 44
#if UPNP_VERSION < 10800
#define UpnpDiscovery Upnp_Discovery
#endif

45 46
class ContentDirectoryService;

47 48 49 50 51 52
class UPnPDiscoveryListener {
public:
	virtual void FoundUPnP(const ContentDirectoryService &service) = 0;
	virtual void LostUPnP(const ContentDirectoryService &service) = 0;
};

53 54 55 56 57 58
/**
 * Manage UPnP discovery and maintain a directory of active devices. Singleton.
 *
 * We are only interested in MediaServers with a ContentDirectory service
 * for now, but this could be made more general, by removing the filtering.
 */
59
class UPnPDeviceDirectory final : UpnpCallback {
60 61 62 63 64 65
	/**
	 * Descriptor for one device having a Content Directory
	 * service found on the network.
	 */
	class ContentDirectoryDescriptor {
	public:
66 67
		std::string id;

68
		UPnPDevice device;
69 70

		/**
71
		 * The time stamp when this device expires.
72
		 */
73
		std::chrono::steady_clock::time_point expires;
74 75 76

		ContentDirectoryDescriptor() = default;

77
		ContentDirectoryDescriptor(std::string &&_id,
78
					   std::chrono::steady_clock::time_point last,
79
					   std::chrono::steady_clock::duration exp) noexcept
80 81
			:id(std::move(_id)),
			 expires(last + exp + std::chrono::seconds(20)) {}
82

83 84
		void Parse(const std::string &url, const char *description) {
			device.Parse(url, description);
85
		}
86 87
	};

88 89
	class Downloader final
		: public boost::intrusive::list_base_hook<boost::intrusive::link_mode<boost::intrusive::normal_link>>,
90 91 92
		CurlResponseHandler {

		DeferEvent defer_start_event;
93 94 95 96 97 98 99 100 101 102 103 104 105

		UPnPDeviceDirectory &parent;

		std::string id;
		const std::string url;
		const std::chrono::steady_clock::duration expires;

		CurlRequest request;

		std::string data;

	public:
		Downloader(UPnPDeviceDirectory &_parent,
Max Kellermann's avatar
Max Kellermann committed
106
			   const UpnpDiscovery &disco);
107

108
		void Start() noexcept {
109
			defer_start_event.Schedule();
110 111
		}

112
		void Destroy() noexcept;
113 114

	private:
115
		void OnDeferredStart() noexcept {
116 117 118 119 120
			try {
				request.Start();
			} catch (...) {
				OnError(std::current_exception());
			}
121
		}
122

123 124 125 126 127
		/* virtual methods from CurlResponseHandler */
		void OnHeaders(unsigned status,
			       std::multimap<std::string, std::string> &&headers) override;
		void OnData(ConstBuffer<void> data) override;
		void OnEnd() override;
128
		void OnError(std::exception_ptr e) noexcept override;
129 130 131 132
	};

	CurlInit curl;

133
	const UpnpClient_Handle handle;
134
	UPnPDiscoveryListener *const listener;
135

136
	Mutex mutex;
137

138 139 140
	/**
	 * Protected by #mutex.
	 */
141 142 143
	boost::intrusive::list<Downloader,
			       boost::intrusive::constant_time_size<false>> downloaders;

144 145 146
	/**
	 * Protected by #mutex.
	 */
147
	std::list<ContentDirectoryDescriptor> directories;
148

149 150 151 152 153
	/**
	 * The UPnP device search timeout, which should actually be
	 * called delay because it's the base of a random delay that
	 * the devices apply to avoid responding all at the same time.
	 */
154
	int search_timeout = 2;
155

156
	/**
157
	 * The time stamp of the last search.
158
	 */
159
	std::chrono::steady_clock::time_point last_search = std::chrono::steady_clock::time_point();
160 161

public:
162
	UPnPDeviceDirectory(EventLoop &event_loop, UpnpClient_Handle _handle,
163
			    UPnPDiscoveryListener *_listener=nullptr);
164
	~UPnPDeviceDirectory() noexcept;
165

166 167 168
	UPnPDeviceDirectory(const UPnPDeviceDirectory &) = delete;
	UPnPDeviceDirectory& operator=(const UPnPDeviceDirectory &) = delete;

169
	EventLoop &GetEventLoop() const noexcept;
170

171
	void Start();
172

173
	/** Retrieve the directory services currently seen on the network */
174
	std::vector<ContentDirectoryService> GetDirectories();
175 176

	/**
177
	 * Get server by friendly name.
178
	 */
179
	ContentDirectoryService GetServer(const char *friendly_name);
180 181

private:
182
	void Search();
183 184 185 186 187

	/**
	 * Look at the devices and get rid of those which have not
	 * been seen for too long. We do this when listing the top
	 * directory.
188 189
	 *
	 * Caller must lock #mutex.
190
	 */
191
	void ExpireDevices();
192

193
	void LockAdd(ContentDirectoryDescriptor &&d);
194 195
	void LockRemove(const std::string &id);

Max Kellermann's avatar
Max Kellermann committed
196 197
	int OnAlive(const UpnpDiscovery *disco) noexcept;
	int OnByeBye(const UpnpDiscovery *disco) noexcept;
198 199

	/* virtual methods from class UpnpCallback */
Max Kellermann's avatar
Max Kellermann committed
200
	int Invoke(Upnp_EventType et, const void *evp) noexcept override;
201 202 203 204
};


#endif /* _UPNPPDISC_H_X_INCLUDED_ */