Discovery.hxx 5.23 KB
Newer Older
1
/*
2
 * Copyright 2003-2018 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
#include "util/Compiler.h"
32

33
#include <upnp.h>
34

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

37
#include <list>
38
#include <vector>
39
#include <string>
40
#include <memory>
41
#include <chrono>
42

43 44 45 46
#if UPNP_VERSION < 10800
#define UpnpDiscovery Upnp_Discovery
#endif

47 48
class ContentDirectoryService;

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

55 56 57 58 59 60
/**
 * 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.
 */
61
class UPnPDeviceDirectory final : UpnpCallback {
62 63 64 65 66 67
	/**
	 * Descriptor for one device having a Content Directory
	 * service found on the network.
	 */
	class ContentDirectoryDescriptor {
	public:
68 69
		std::string id;

70
		UPnPDevice device;
71 72

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

		ContentDirectoryDescriptor() = default;

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

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

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

		DeferEvent defer_start_event;
95 96 97 98 99 100 101 102 103 104 105 106 107

		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
108
			   const UpnpDiscovery &disco);
109

110
		void Start() noexcept {
111
			defer_start_event.Schedule();
112 113
		}

114
		void Destroy() noexcept;
115 116

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

125 126 127 128 129
		/* 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;
130
		void OnError(std::exception_ptr e) noexcept override;
131 132 133 134
	};

	CurlInit curl;

135
	const UpnpClient_Handle handle;
136
	UPnPDiscoveryListener *const listener;
137

138
	Mutex mutex;
139

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

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

151 152 153 154 155
	/**
	 * 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.
	 */
156
	int search_timeout = 2;
157

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

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

168 169 170
	UPnPDeviceDirectory(const UPnPDeviceDirectory &) = delete;
	UPnPDeviceDirectory& operator=(const UPnPDeviceDirectory &) = delete;

171
	EventLoop &GetEventLoop() noexcept;
172

173
	void Start();
174

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

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

private:
184
	void Search();
185 186 187 188 189

	/**
	 * 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.
190 191
	 *
	 * Caller must lock #mutex.
192
	 */
193
	void ExpireDevices();
194

195
	void LockAdd(ContentDirectoryDescriptor &&d);
196 197
	void LockRemove(const std::string &id);

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

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


#endif /* _UPNPPDISC_H_X_INCLUDED_ */