Discovery.hxx 3.97 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Copyright (C) 2003-2014 The Music Player Daemon Project
 * 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 24 25
#include "Device.hxx"
#include "WorkQueue.hxx"
#include "thread/Mutex.hxx"
26 27
#include "util/Error.hxx"

28 29
#include <upnp/upnp.h>

30
#include <list>
31
#include <vector>
32
#include <string>
33

34
class LibUPnP;
35 36 37 38 39 40 41 42 43
class ContentDirectoryService;

/**
 * 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.
 */
class UPnPDeviceDirectory {
44 45 46 47 48 49 50 51
	/**
	 * 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;
		std::string deviceId;
52
		unsigned expires; // Seconds valid
53

54 55
		DiscoveredTask(const Upnp_Discovery *disco)
			:url(disco->Location),
56 57 58 59 60 61 62 63 64 65
			  deviceId(disco->DeviceId),
			  expires(disco->Expires) {}
	};

	/**
	 * 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 MonotonicClockS() time stamp when this device
72
		 * expires.
73
		 */
74
		unsigned expires;
75 76 77

		ContentDirectoryDescriptor() = default;

78 79 80
		ContentDirectoryDescriptor(std::string &&_id,
					   unsigned last, int exp)
			:id(std::move(_id)), expires(last + exp + 20) {}
81 82 83 84 85

		bool Parse(const std::string &url, const char *description,
			   Error &_error) {
			return device.Parse(url, description, _error);
		}
86 87
	};

88 89
	LibUPnP *const lib;

90
	Mutex mutex;
91
	std::list<ContentDirectoryDescriptor> directories;
92 93
	WorkQueue<DiscoveredTask *> discoveredQueue;

94 95 96 97 98 99 100
	/**
	 * 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.
	 */
	int m_searchTimeout;

101 102 103 104
	/**
	 * The MonotonicClockS() time stamp of the last search.
	 */
	unsigned m_lastSearch;
105 106

public:
107
	UPnPDeviceDirectory(LibUPnP *_lib);
108
	~UPnPDeviceDirectory();
109

110 111 112
	UPnPDeviceDirectory(const UPnPDeviceDirectory &) = delete;
	UPnPDeviceDirectory& operator=(const UPnPDeviceDirectory &) = delete;

113 114
	bool Start(Error &error);

115
	/** Retrieve the directory services currently seen on the network */
116
	bool getDirServices(std::vector<ContentDirectoryService> &, Error &);
117 118

	/**
119
	 * Get server by friendly name.
120 121
	 */
	bool getServer(const char *friendlyName,
122 123
		       ContentDirectoryService &server,
		       Error &error);
124 125

private:
126
	bool search(Error &error);
127 128 129 130 131 132

	/**
	 * 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.
	 */
133
	bool expireDevices(Error &error);
134

135
	void LockAdd(ContentDirectoryDescriptor &&d);
136 137
	void LockRemove(const std::string &id);

138 139 140 141 142 143 144 145 146 147 148
	/**
	 * Worker routine for the discovery queue. Get messages about
	 * devices appearing and disappearing, and update the
	 * directory pool accordingly.
	 */
	static void *discoExplorer(void *);
	void discoExplorer();

	int OnAlive(Upnp_Discovery *disco);
	int OnByeBye(Upnp_Discovery *disco);
	int cluCallBack(Upnp_EventType et, void *evp);
149 150 151 152
};


#endif /* _UPNPPDISC_H_X_INCLUDED_ */