Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
714011c8
Commit
714011c8
authored
Nov 16, 2017
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lib/upnp: adapt to libupnp 1.8 API changes
Closes #155
parent
952ff420
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
98 additions
and
16 deletions
+98
-16
Makefile.am
Makefile.am
+1
-0
NEWS
NEWS
+2
-0
ClientInit.cxx
src/lib/upnp/ClientInit.cxx
+6
-1
Compat.hxx
src/lib/upnp/Compat.hxx
+69
-0
Discovery.cxx
src/lib/upnp/Discovery.cxx
+9
-9
Discovery.hxx
src/lib/upnp/Discovery.hxx
+11
-6
No files found.
Makefile.am
View file @
714011c8
...
...
@@ -243,6 +243,7 @@ CURL_SOURCES = \
src/lib/curl/Slist.hxx
UPNP_SOURCES
=
\
src/lib/upnp/Compat.hxx
\
src/lib/upnp/Init.cxx src/lib/upnp/Init.hxx
\
src/lib/upnp/ClientInit.cxx src/lib/upnp/ClientInit.hxx
\
src/lib/upnp/Device.cxx src/lib/upnp/Device.hxx
\
...
...
NEWS
View file @
714011c8
ver 0.20.12 (not yet released)
* database
- upnp: adapt to libupnp 1.8 API changes
* input
- cdio_paranoia, ffmpeg, file, smbclient: reduce lock contention,
fixing lots of xrun problems
...
...
src/lib/upnp/ClientInit.cxx
View file @
714011c8
...
...
@@ -33,7 +33,12 @@ static unsigned upnp_client_ref;
static
UpnpClient_Handle
upnp_client_handle
;
static
int
UpnpClientCallback
(
Upnp_EventType
et
,
void
*
evp
,
void
*
cookie
)
UpnpClientCallback
(
Upnp_EventType
et
,
#if UPNP_VERSION >= 10800
const
#endif
void
*
evp
,
void
*
cookie
)
{
if
(
cookie
==
nullptr
)
/* this is the cookie passed to UpnpRegisterClient();
...
...
src/lib/upnp/Compat.hxx
0 → 100644
View file @
714011c8
/*
* Copyright 2003-2017 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 MPD_UPNP_COMPAT_HXX
#define MPD_UPNP_COMPAT_HXX
#include <upnp/upnp.h>
#if UPNP_VERSION < 10800
#include "Compiler.h"
/* emulate the libupnp 1.8 API with older versions */
using
UpnpDiscovery
=
Upnp_Discovery
;
gcc_pure
static
inline
int
UpnpDiscovery_get_Expires
(
const
UpnpDiscovery
*
disco
)
noexcept
{
return
disco
->
Expires
;
}
gcc_pure
static
inline
const
char
*
UpnpDiscovery_get_DeviceID_cstr
(
const
UpnpDiscovery
*
disco
)
noexcept
{
return
disco
->
DeviceId
;
}
gcc_pure
static
inline
const
char
*
UpnpDiscovery_get_DeviceType_cstr
(
const
UpnpDiscovery
*
disco
)
noexcept
{
return
disco
->
DeviceType
;
}
gcc_pure
static
inline
const
char
*
UpnpDiscovery_get_ServiceType_cstr
(
const
UpnpDiscovery
*
disco
)
noexcept
{
return
disco
->
ServiceType
;
}
gcc_pure
static
inline
const
char
*
UpnpDiscovery_get_Location_cstr
(
const
UpnpDiscovery
*
disco
)
noexcept
{
return
disco
->
Location
;
}
#endif
#endif
src/lib/upnp/Discovery.cxx
View file @
714011c8
...
...
@@ -153,10 +153,10 @@ UPnPDeviceDirectory::Explore(void *ctx)
}
inline
int
UPnPDeviceDirectory
::
OnAlive
(
const
Upnp
_
Discovery
*
disco
)
UPnPDeviceDirectory
::
OnAlive
(
const
UpnpDiscovery
*
disco
)
{
if
(
isMSDevice
(
disco
->
DeviceType
)
||
isCDService
(
disco
->
ServiceType
))
{
if
(
isMSDevice
(
UpnpDiscovery_get_DeviceType_cstr
(
disco
)
)
||
isCDService
(
UpnpDiscovery_get_ServiceType_cstr
(
disco
)
))
{
DiscoveredTask
*
tp
=
new
DiscoveredTask
(
disco
);
if
(
queue
.
put
(
tp
))
return
UPNP_E_FINISH
;
...
...
@@ -166,12 +166,12 @@ UPnPDeviceDirectory::OnAlive(const Upnp_Discovery *disco)
}
inline
int
UPnPDeviceDirectory
::
OnByeBye
(
const
Upnp
_
Discovery
*
disco
)
UPnPDeviceDirectory
::
OnByeBye
(
const
UpnpDiscovery
*
disco
)
{
if
(
isMSDevice
(
disco
->
DeviceType
)
||
isCDService
(
disco
->
ServiceType
))
{
if
(
isMSDevice
(
UpnpDiscovery_get_DeviceType_cstr
(
disco
)
)
||
isCDService
(
UpnpDiscovery_get_ServiceType_cstr
(
disco
)
))
{
// Device signals it is going off.
LockRemove
(
disco
->
DeviceId
);
LockRemove
(
UpnpDiscovery_get_DeviceID_cstr
(
disco
)
);
}
return
UPNP_E_SUCCESS
;
...
...
@@ -188,13 +188,13 @@ UPnPDeviceDirectory::Invoke(Upnp_EventType et, const void *evp)
case
UPNP_DISCOVERY_SEARCH_RESULT
:
case
UPNP_DISCOVERY_ADVERTISEMENT_ALIVE
:
{
auto
*
disco
=
(
const
Upnp
_
Discovery
*
)
evp
;
auto
*
disco
=
(
const
UpnpDiscovery
*
)
evp
;
return
OnAlive
(
disco
);
}
case
UPNP_DISCOVERY_ADVERTISEMENT_BYEBYE
:
{
auto
*
disco
=
(
const
Upnp
_
Discovery
*
)
evp
;
auto
*
disco
=
(
const
UpnpDiscovery
*
)
evp
;
return
OnByeBye
(
disco
);
}
...
...
src/lib/upnp/Discovery.hxx
View file @
714011c8
...
...
@@ -20,6 +20,7 @@
#ifndef _UPNPPDISC_H_X_INCLUDED_
#define _UPNPPDISC_H_X_INCLUDED_
#include "Compat.hxx"
#include "Callback.hxx"
#include "Device.hxx"
#include "WorkQueue.hxx"
...
...
@@ -34,6 +35,10 @@
#include <memory>
#include <chrono>
#if UPNP_VERSION < 10800
#define UpnpDiscovery Upnp_Discovery
#endif
class
ContentDirectoryService
;
class
UPnPDiscoveryListener
{
...
...
@@ -59,10 +64,10 @@ class UPnPDeviceDirectory final : UpnpCallback {
std
::
string
device_id
;
std
::
chrono
::
steady_clock
::
duration
expires
;
DiscoveredTask
(
const
Upnp
_
Discovery
*
disco
)
:
url
(
disco
->
Location
),
device_id
(
disco
->
DeviceId
),
expires
(
std
::
chrono
::
seconds
(
disco
->
Expires
))
{}
DiscoveredTask
(
const
UpnpDiscovery
*
disco
)
:
url
(
UpnpDiscovery_get_Location_cstr
(
disco
)
),
device_id
(
UpnpDiscovery_get_DeviceID_cstr
(
disco
)
),
expires
(
std
::
chrono
::
seconds
(
UpnpDiscovery_get_Expires
(
disco
)
))
{}
};
/**
...
...
@@ -153,8 +158,8 @@ private:
static
void
*
Explore
(
void
*
);
void
Explore
();
int
OnAlive
(
const
Upnp
_
Discovery
*
disco
);
int
OnByeBye
(
const
Upnp
_
Discovery
*
disco
);
int
OnAlive
(
const
UpnpDiscovery
*
disco
);
int
OnByeBye
(
const
UpnpDiscovery
*
disco
);
/* virtual methods from class UpnpCallback */
virtual
int
Invoke
(
Upnp_EventType
et
,
const
void
*
evp
)
override
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment