UpnpNeighborPlugin.cxx 3.5 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 25 26 27 28 29 30
 * 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.
 */

#include "config.h"
#include "UpnpNeighborPlugin.hxx"
#include "lib/upnp/ClientInit.hxx"
#include "lib/upnp/Discovery.hxx"
#include "lib/upnp/ContentDirectoryService.hxx"
#include "neighbor/NeighborPlugin.hxx"
#include "neighbor/Explorer.hxx"
#include "neighbor/Listener.hxx"
#include "neighbor/Info.hxx"
#include "Log.hxx"

31 32
#include <stdexcept>

33 34 35 36 37 38 39 40 41 42 43 44 45
class UpnpNeighborExplorer final
	: public NeighborExplorer, UPnPDiscoveryListener {
	struct Server {
		std::string name, comment;

		bool alive;

		Server(std::string &&_name, std::string &&_comment)
			:name(std::move(_name)), comment(std::move(_comment)),
			 alive(true) {}
		Server(const Server &) = delete;

		gcc_pure
46
		bool operator==(const Server &other) const noexcept {
47 48 49 50
			return name == other.name;
		}

		gcc_pure
51
		NeighborInfo Export() const noexcept {
52 53 54 55
			return { "smb://" + name + "/", comment };
		}
	};

56 57
	EventLoop &event_loop;

58 59 60
	UPnPDeviceDirectory *discovery;

public:
61 62 63
	UpnpNeighborExplorer(EventLoop &_event_loop,
			     NeighborListener &_listener)
		:NeighborExplorer(_listener), event_loop(_event_loop) {}
64 65

	/* virtual methods from class NeighborExplorer */
66
	void Open() override;
67 68
	void Close() noexcept override;
	List GetList() const noexcept override;
69 70 71

private:
	/* virtual methods from class UPnPDiscoveryListener */
72 73
	void FoundUPnP(const ContentDirectoryService &service) override;
	void LostUPnP(const ContentDirectoryService &service) override;
74 75
};

76 77
void
UpnpNeighborExplorer::Open()
78 79
{
	UpnpClient_Handle handle;
80
	UpnpClientGlobalInit(handle);
81

82
	discovery = new UPnPDeviceDirectory(event_loop, handle, this);
83 84 85 86

	try {
		discovery->Start();
	} catch (...) {
87 88
		delete discovery;
		UpnpClientGlobalFinish();
89
		throw;
90 91 92 93
	}
}

void
94
UpnpNeighborExplorer::Close() noexcept
95 96 97 98 99 100
{
	delete discovery;
	UpnpClientGlobalFinish();
}

NeighborExplorer::List
101
UpnpNeighborExplorer::GetList() const noexcept
102 103 104
{
	std::vector<ContentDirectoryService> tmp;

105 106 107 108
	try {
		tmp = discovery->GetDirectories();
	} catch (const std::runtime_error &e) {
		LogError(e);
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
	}

	List result;
	for (const auto &i : tmp)
		result.emplace_front(i.GetURI(), i.getFriendlyName());
	return result;
}

void
UpnpNeighborExplorer::FoundUPnP(const ContentDirectoryService &service)
{
	const NeighborInfo n(service.GetURI(), service.getFriendlyName());
	listener.FoundNeighbor(n);
}

void
UpnpNeighborExplorer::LostUPnP(const ContentDirectoryService &service)
{
	const NeighborInfo n(service.GetURI(), service.getFriendlyName());
	listener.LostNeighbor(n);
}

static NeighborExplorer *
132
upnp_neighbor_create(EventLoop &event_loop,
133
		     NeighborListener &listener,
134
		     gcc_unused const ConfigBlock &block)
135
{
136
	return new UpnpNeighborExplorer(event_loop, listener);
137 138 139 140 141 142
}

const NeighborPlugin upnp_neighbor_plugin = {
	"upnp",
	upnp_neighbor_create,
};