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
051eede1
Commit
051eede1
authored
Jan 18, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
db/upnp/Discovery: use monotonic clock instead of time()
parent
0696cac5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
10 deletions
+18
-10
Discovery.cxx
src/db/upnp/Discovery.cxx
+4
-3
Discovery.hxx
src/db/upnp/Discovery.hxx
+14
-7
No files found.
src/db/upnp/Discovery.cxx
View file @
051eede1
...
...
@@ -22,6 +22,7 @@
#include "Domain.hxx"
#include "ContentDirectoryService.hxx"
#include "upnpplib.hxx"
#include "system/Clock.hxx"
#include "Log.hxx"
#include <upnp/upnptools.h>
...
...
@@ -74,7 +75,7 @@ UPnPDeviceDirectory::discoExplorer()
}
// Update or insert the device
ContentDirectoryDescriptor
d
(
time
(
0
),
tsk
->
expires
);
ContentDirectoryDescriptor
d
(
MonotonicClockS
(
),
tsk
->
expires
);
{
Error
error2
;
...
...
@@ -164,7 +165,7 @@ bool
UPnPDeviceDirectory
::
expireDevices
(
Error
&
error
)
{
const
ScopeLock
protect
(
mutex
);
time_t
now
=
time
(
0
);
const
unsigned
now
=
MonotonicClockS
(
);
bool
didsomething
=
false
;
for
(
auto
it
=
directories
.
begin
();
...
...
@@ -208,7 +209,7 @@ UPnPDeviceDirectory::Start(Error &error)
bool
UPnPDeviceDirectory
::
search
(
Error
&
error
)
{
time_t
now
=
time
(
0
);
const
unsigned
now
=
MonotonicClockS
(
);
if
(
now
-
m_lastSearch
<
10
)
return
true
;
m_lastSearch
=
now
;
...
...
src/db/upnp/Discovery.hxx
View file @
051eede1
...
...
@@ -31,8 +31,6 @@
#include <vector>
#include <string>
#include <time.h>
class
LibUPnP
;
class
ContentDirectoryService
;
...
...
@@ -51,7 +49,7 @@ class UPnPDeviceDirectory {
struct
DiscoveredTask
{
std
::
string
url
;
std
::
string
deviceId
;
int
expires
;
// Seconds valid
unsigned
expires
;
// Seconds valid
DiscoveredTask
(
const
Upnp_Discovery
*
disco
)
:
url
(
disco
->
Location
),
...
...
@@ -66,12 +64,18 @@ class UPnPDeviceDirectory {
class
ContentDirectoryDescriptor
{
public
:
UPnPDevice
device
;
time_t
last_seen
;
int
expires
;
// seconds valid
/**
* The MonotonicClockS() time stamp when this device
* was last seen alive.
*/
unsigned
last_seen
;
unsigned
expires
;
// seconds valid
ContentDirectoryDescriptor
()
=
default
;
ContentDirectoryDescriptor
(
time_t
last
,
int
exp
)
ContentDirectoryDescriptor
(
unsigned
last
,
int
exp
)
:
last_seen
(
last
),
expires
(
exp
+
20
)
{}
bool
Parse
(
const
std
::
string
&
url
,
const
char
*
description
,
...
...
@@ -93,7 +97,10 @@ class UPnPDeviceDirectory {
*/
int
m_searchTimeout
;
time_t
m_lastSearch
;
/**
* The MonotonicClockS() time stamp of the last search.
*/
unsigned
m_lastSearch
;
public
:
UPnPDeviceDirectory
(
LibUPnP
*
_lib
);
...
...
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