2009-07-28 17:17:23 +02:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 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-09 08:08:36 +01:00
|
|
|
#include "ClientList.hxx"
|
2013-01-03 10:33:04 +01:00
|
|
|
#include "ClientInternal.hxx"
|
2015-10-19 15:57:00 +02:00
|
|
|
#include "util/DeleteDisposer.hxx"
|
2013-01-09 08:12:44 +01:00
|
|
|
|
2009-07-28 17:17:23 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
void
|
2013-01-16 22:55:33 +01:00
|
|
|
ClientList::Remove(Client &client)
|
2009-07-28 17:17:23 +02:00
|
|
|
{
|
2013-01-16 22:55:33 +01:00
|
|
|
assert(!list.empty());
|
2009-07-28 17:17:23 +02:00
|
|
|
|
2014-06-10 18:57:30 +02:00
|
|
|
list.erase(list.iterator_to(client));
|
2009-07-28 17:17:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-16 22:55:33 +01:00
|
|
|
ClientList::CloseAll()
|
2009-07-28 17:17:23 +02:00
|
|
|
{
|
2015-10-19 15:57:00 +02:00
|
|
|
list.clear_and_dispose(DeleteDisposer());
|
2009-07-28 17:17:23 +02:00
|
|
|
}
|
2013-01-16 22:56:52 +01:00
|
|
|
|
|
|
|
void
|
2013-01-16 22:55:33 +01:00
|
|
|
ClientList::IdleAdd(unsigned flags)
|
2013-01-16 22:56:52 +01:00
|
|
|
{
|
2013-01-16 22:55:33 +01:00
|
|
|
assert(flags != 0);
|
2013-01-16 22:56:52 +01:00
|
|
|
|
2014-06-10 18:57:30 +02:00
|
|
|
for (auto &client : list)
|
|
|
|
client.IdleAdd(flags);
|
2013-01-16 22:56:52 +01:00
|
|
|
}
|