2009-07-28 17:17:23 +02:00
|
|
|
/*
|
2013-01-03 10:33:04 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-07-28 17:17:23 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-03 10:33:04 +01:00
|
|
|
#include "ClientInternal.hxx"
|
2013-01-09 08:36:52 +01:00
|
|
|
#include "Idle.hxx"
|
2009-07-28 17:17:23 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
2013-01-16 21:46:13 +01:00
|
|
|
void
|
|
|
|
Client::IdleNotify()
|
2009-07-28 17:17:23 +02:00
|
|
|
{
|
2013-01-16 21:46:13 +01:00
|
|
|
assert(idle_waiting);
|
|
|
|
assert(idle_flags != 0);
|
2009-07-28 17:17:23 +02:00
|
|
|
|
2013-01-16 21:46:13 +01:00
|
|
|
unsigned flags = idle_flags;
|
|
|
|
idle_flags = 0;
|
|
|
|
idle_waiting = false;
|
2009-07-28 17:17:23 +02:00
|
|
|
|
2013-01-16 21:46:13 +01:00
|
|
|
const char *const*idle_names = idle_get_names();
|
|
|
|
for (unsigned i = 0; idle_names[i]; ++i) {
|
|
|
|
if (flags & (1 << i) & idle_subscriptions)
|
|
|
|
client_printf(this, "changed: %s\n",
|
2009-07-28 17:17:23 +02:00
|
|
|
idle_names[i]);
|
|
|
|
}
|
|
|
|
|
2013-01-16 21:46:13 +01:00
|
|
|
client_puts(this, "OK\n");
|
2013-01-16 21:39:40 +01:00
|
|
|
|
|
|
|
TimeoutMonitor::ScheduleSeconds(client_timeout);
|
2009-07-28 17:17:23 +02:00
|
|
|
}
|
|
|
|
|
2011-01-29 10:24:20 +01:00
|
|
|
void
|
2013-01-16 21:46:13 +01:00
|
|
|
Client::IdleAdd(unsigned flags)
|
2009-07-28 17:17:23 +02:00
|
|
|
{
|
2013-01-16 21:46:13 +01:00
|
|
|
if (IsExpired())
|
2009-07-28 17:17:23 +02:00
|
|
|
return;
|
|
|
|
|
2013-01-16 21:46:13 +01:00
|
|
|
idle_flags |= flags;
|
|
|
|
if (idle_waiting && (idle_flags & idle_subscriptions))
|
|
|
|
IdleNotify();
|
2009-07-28 17:17:23 +02:00
|
|
|
}
|
|
|
|
|
2013-01-16 21:46:13 +01:00
|
|
|
bool
|
|
|
|
Client::IdleWait(unsigned flags)
|
2009-07-28 17:17:23 +02:00
|
|
|
{
|
2013-01-16 21:46:13 +01:00
|
|
|
assert(!idle_waiting);
|
2009-07-28 17:17:23 +02:00
|
|
|
|
2013-01-16 21:46:13 +01:00
|
|
|
idle_waiting = true;
|
|
|
|
idle_subscriptions = flags;
|
2009-07-28 17:17:23 +02:00
|
|
|
|
2013-01-16 21:46:13 +01:00
|
|
|
if (idle_flags & idle_subscriptions) {
|
|
|
|
IdleNotify();
|
2009-07-28 17:17:23 +02:00
|
|
|
return true;
|
2013-01-16 21:39:40 +01:00
|
|
|
} else {
|
|
|
|
/* disable timeouts while in "idle" */
|
|
|
|
TimeoutMonitor::Cancel();
|
2009-07-28 17:17:23 +02:00
|
|
|
return false;
|
2013-01-16 21:39:40 +01:00
|
|
|
}
|
2009-07-28 17:17:23 +02:00
|
|
|
}
|