2013-01-09 08:08:36 +01:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 The Music Player Daemon Project
|
2013-01-09 08:08:36 +01: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPD_CLIENT_LIST_HXX
|
|
|
|
#define MPD_CLIENT_LIST_HXX
|
|
|
|
|
2014-06-10 18:57:30 +02:00
|
|
|
#include "Client.hxx"
|
2013-01-16 22:55:33 +01:00
|
|
|
|
2016-03-01 22:08:13 +01:00
|
|
|
#include <boost/intrusive/list.hpp>
|
2013-01-09 08:08:36 +01:00
|
|
|
|
2013-01-16 22:55:33 +01:00
|
|
|
class ClientList {
|
2014-06-10 18:57:30 +02:00
|
|
|
typedef boost::intrusive::list<Client,
|
|
|
|
boost::intrusive::constant_time_size<true>> List;
|
2014-06-10 18:58:02 +02:00
|
|
|
|
2013-01-16 22:55:33 +01:00
|
|
|
const unsigned max_size;
|
|
|
|
|
2014-06-10 18:58:02 +02:00
|
|
|
List list;
|
2013-01-16 22:55:33 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
ClientList(unsigned _max_size)
|
2014-06-10 18:57:30 +02:00
|
|
|
:max_size(_max_size) {}
|
2013-10-30 23:12:27 +01:00
|
|
|
~ClientList() {
|
|
|
|
CloseAll();
|
|
|
|
}
|
2013-01-16 22:55:33 +01:00
|
|
|
|
2014-06-10 18:58:02 +02:00
|
|
|
List::iterator begin() {
|
2013-01-16 22:55:33 +01:00
|
|
|
return list.begin();
|
|
|
|
}
|
|
|
|
|
2014-06-10 18:58:02 +02:00
|
|
|
List::iterator end() {
|
2013-01-16 22:55:33 +01:00
|
|
|
return list.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsFull() const {
|
2014-06-10 18:57:30 +02:00
|
|
|
return list.size() >= max_size;
|
2013-01-16 22:55:33 +01:00
|
|
|
}
|
2013-01-09 08:08:36 +01:00
|
|
|
|
2013-01-16 22:55:33 +01:00
|
|
|
void Add(Client &client) {
|
2014-06-10 18:57:30 +02:00
|
|
|
list.push_front(client);
|
2013-01-16 22:55:33 +01:00
|
|
|
}
|
2013-01-09 08:08:36 +01:00
|
|
|
|
2013-01-16 22:55:33 +01:00
|
|
|
void Remove(Client &client);
|
2013-01-09 08:08:36 +01:00
|
|
|
|
2013-01-16 22:55:33 +01:00
|
|
|
void CloseAll();
|
2013-01-09 08:08:36 +01:00
|
|
|
|
2013-01-16 22:55:33 +01:00
|
|
|
void IdleAdd(unsigned flags);
|
|
|
|
};
|
2013-01-16 22:56:52 +01:00
|
|
|
|
2013-01-09 08:08:36 +01:00
|
|
|
#endif
|