2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-09 08:36:52 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-10-14 22:38:14 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2008-10-14 22:38:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Support library for the "idle" command.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-01-09 08:36:52 +01:00
|
|
|
#ifndef MPD_IDLE_HXX
|
|
|
|
#define MPD_IDLE_HXX
|
2008-10-14 22:38:14 +02:00
|
|
|
|
|
|
|
enum {
|
|
|
|
/** song database has been updated*/
|
|
|
|
IDLE_DATABASE = 0x1,
|
|
|
|
|
|
|
|
/** a stored playlist has been modified, created, deleted or
|
|
|
|
renamed */
|
|
|
|
IDLE_STORED_PLAYLIST = 0x2,
|
|
|
|
|
|
|
|
/** the current playlist has been modified */
|
|
|
|
IDLE_PLAYLIST = 0x4,
|
|
|
|
|
|
|
|
/** the player state has changed: play, stop, pause, seek, ... */
|
|
|
|
IDLE_PLAYER = 0x8,
|
|
|
|
|
|
|
|
/** the volume has been modified */
|
|
|
|
IDLE_MIXER = 0x10,
|
|
|
|
|
|
|
|
/** an audio output device has been enabled or disabled */
|
|
|
|
IDLE_OUTPUT = 0x20,
|
|
|
|
|
|
|
|
/** options have changed: crossfade, random, repeat, ... */
|
|
|
|
IDLE_OPTIONS = 0x40,
|
2009-01-25 16:23:02 +01:00
|
|
|
|
|
|
|
/** a sticker has been modified. */
|
|
|
|
IDLE_STICKER = 0x80,
|
2009-07-05 08:46:53 +02:00
|
|
|
|
|
|
|
/** a database update has started or finished. */
|
|
|
|
IDLE_UPDATE = 0x100,
|
2011-01-29 09:26:22 +01:00
|
|
|
|
|
|
|
/** a client has subscribed or unsubscribed to/from a channel */
|
|
|
|
IDLE_SUBSCRIPTION = 0x200,
|
|
|
|
|
2013-04-08 23:11:31 +02:00
|
|
|
/** a message on the subscribed channel was received */
|
2011-01-29 09:26:22 +01:00
|
|
|
IDLE_MESSAGE = 0x400,
|
2008-10-14 22:38:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds idle flag (with bitwise "or") and queues notifications to all
|
|
|
|
* clients.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
idle_add(unsigned flags);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Atomically reads and resets the global idle flags value.
|
|
|
|
*/
|
|
|
|
unsigned
|
|
|
|
idle_get(void);
|
|
|
|
|
2008-11-22 13:26:21 +01:00
|
|
|
/**
|
|
|
|
* Get idle names
|
|
|
|
*/
|
|
|
|
const char*const*
|
|
|
|
idle_get_names(void);
|
|
|
|
|
2008-10-14 22:38:14 +02:00
|
|
|
#endif
|