Discovery.hxx 4.45 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
 * 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 "Callback.hxx"
24 25 26
#include "Device.hxx"
#include "WorkQueue.hxx"
#include "thread/Mutex.hxx"
27
#include "Compiler.h"
28

29 30
#include <upnp/upnp.h>

31
#include <list>
32
#include <vector>
33
#include <string>
34
#include <memory>
35
#include <chrono>
36 37 38

class ContentDirectoryService;

39 40 41 42 43 44
class UPnPDiscoveryListener {
public:
	virtual void FoundUPnP(const ContentDirectoryService &service) = 0;
	virtual void LostUPnP(const ContentDirectoryService &service) = 0;
};

45 46 47 48 49 50
/**
 * 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.
 */
51
class UPnPDeviceDirectory final : UpnpCallback {
52 53 54 55 56 57 58
	/**
	 * Each appropriate discovery event (executing in a libupnp thread
	 * context) queues the following task object for processing by the
	 * discovery thread.
	 */
	struct DiscoveredTask {
		std::string url;
59
		std::string device_id;
60
		std::chrono::steady_clock::duration expires;
61

62 63
		DiscoveredTask(const Upnp_Discovery *disco)
			:url(disco->Location),
64
			 device_id(disco->DeviceId),
65
			 expires(std::chrono::seconds(disco->Expires)) {}
66 67 68 69 70 71 72 73
	};

	/**
	 * Descriptor for one device having a Content Directory
	 * service found on the network.
	 */
	class ContentDirectoryDescriptor {
	public:
74 75
		std::string id;

76
		UPnPDevice device;
77 78

		/**
79
		 * The time stamp when this device expires.
80
		 */
81
		std::chrono::steady_clock::time_point expires;
82 83 84

		ContentDirectoryDescriptor() = default;

85
		ContentDirectoryDescriptor(std::string &&_id,
86 87 88 89
					   std::chrono::steady_clock::time_point last,
					   std::chrono::steady_clock::duration exp)
			:id(std::move(_id)),
			 expires(last + exp + std::chrono::seconds(20)) {}
90

91 92
		void Parse(const std::string &url, const char *description) {
			device.Parse(url, description);
93
		}
94 95
	};

96
	const UpnpClient_Handle handle;
97
	UPnPDiscoveryListener *const listener;
98

99
	Mutex mutex;
100
	std::list<ContentDirectoryDescriptor> directories;
101
	WorkQueue<std::unique_ptr<DiscoveredTask>> queue;
102

103 104 105 106 107
	/**
	 * 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.
	 */
108
	int search_timeout = 2;
109

110
	/**
111
	 * The time stamp of the last search.
112
	 */
113
	std::chrono::steady_clock::time_point last_search = std::chrono::steady_clock::time_point();
114 115

public:
116
	UPnPDeviceDirectory(UpnpClient_Handle _handle,
117
			    UPnPDiscoveryListener *_listener=nullptr);
118
	~UPnPDeviceDirectory();
119

120 121 122
	UPnPDeviceDirectory(const UPnPDeviceDirectory &) = delete;
	UPnPDeviceDirectory& operator=(const UPnPDeviceDirectory &) = delete;

123
	void Start();
124

125
	/** Retrieve the directory services currently seen on the network */
126
	std::vector<ContentDirectoryService> GetDirectories();
127 128

	/**
129
	 * Get server by friendly name.
130
	 */
131
	ContentDirectoryService GetServer(const char *friendly_name);
132 133

private:
134
	void Search();
135 136 137 138 139

	/**
	 * 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.
140 141
	 *
	 * Caller must lock #mutex.
142
	 */
143
	void ExpireDevices();
144

145
	void LockAdd(ContentDirectoryDescriptor &&d);
146 147
	void LockRemove(const std::string &id);

148 149 150 151 152
	/**
	 * Worker routine for the discovery queue. Get messages about
	 * devices appearing and disappearing, and update the
	 * directory pool accordingly.
	 */
153 154
	static void *Explore(void *);
	void Explore();
155 156 157

	int OnAlive(Upnp_Discovery *disco);
	int OnByeBye(Upnp_Discovery *disco);
158 159 160

	/* virtual methods from class UpnpCallback */
	virtual int Invoke(Upnp_EventType et, void *evp) override;
161 162 163 164
};


#endif /* _UPNPPDISC_H_X_INCLUDED_ */