mpd/src/ClientIdle.cxx

89 lines
2.0 KiB
C++
Raw Normal View History

/*
2013-01-03 10:33:04 +01:00
* Copyright (C) 2003-2013 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.
*/
#include "config.h"
2013-01-03 10:33:04 +01:00
#include "ClientIdle.hxx"
#include "ClientInternal.hxx"
2013-01-09 08:08:36 +01:00
#include "ClientList.hxx"
2013-01-09 08:36:52 +01:00
#include "Idle.hxx"
#include <assert.h>
void
Client::IdleNotify()
{
assert(idle_waiting);
assert(idle_flags != 0);
unsigned flags = idle_flags;
idle_flags = 0;
idle_waiting = false;
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",
idle_names[i]);
}
client_puts(this, "OK\n");
g_timer_start(last_activity);
}
2011-01-29 10:24:20 +01:00
void
Client::IdleAdd(unsigned flags)
{
if (IsExpired())
return;
idle_flags |= flags;
if (idle_waiting && (idle_flags & idle_subscriptions))
IdleNotify();
}
2011-01-29 10:24:20 +01:00
static void
client_idle_callback(Client *client, gpointer user_data)
2011-01-29 10:24:20 +01:00
{
unsigned flags = GPOINTER_TO_UINT(user_data);
client->IdleAdd(flags);
2011-01-29 10:24:20 +01:00
}
void client_manager_idle_add(unsigned flags)
{
assert(flags != 0);
client_list_foreach(client_idle_callback, GUINT_TO_POINTER(flags));
}
bool
Client::IdleWait(unsigned flags)
{
assert(!idle_waiting);
idle_waiting = true;
idle_subscriptions = flags;
if (idle_flags & idle_subscriptions) {
IdleNotify();
return true;
} else
return false;
}