2013-11-29 09:38:48 +01:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2013-11-29 09:38:48 +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_EVENT_POLLRESULT_GENERIC_HXX
|
|
|
|
#define MPD_EVENT_POLLRESULT_GENERIC_HXX
|
|
|
|
|
2020-03-13 00:46:28 +01:00
|
|
|
#include <cstddef>
|
2013-11-29 09:38:48 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2020-10-08 19:38:26 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
/* damn you, windows.h! */
|
|
|
|
#ifdef GetObject
|
|
|
|
#undef GetObject
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2013-11-29 09:38:48 +01:00
|
|
|
class PollResultGeneric
|
|
|
|
{
|
|
|
|
struct Item
|
|
|
|
{
|
|
|
|
unsigned events;
|
|
|
|
void *obj;
|
|
|
|
|
|
|
|
Item() = default;
|
2018-01-29 21:46:07 +01:00
|
|
|
constexpr Item(unsigned _events, void *_obj) noexcept
|
2013-11-29 09:38:48 +01:00
|
|
|
: events(_events), obj(_obj) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<Item> items;
|
|
|
|
public:
|
2018-01-29 21:46:07 +01:00
|
|
|
size_t GetSize() const noexcept {
|
|
|
|
return items.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned GetEvents(size_t i) const noexcept {
|
|
|
|
return items[i].events;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *GetObject(size_t i) const noexcept {
|
|
|
|
return items[i].obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Reset() noexcept {
|
|
|
|
items.clear();
|
|
|
|
}
|
2013-11-29 09:38:48 +01:00
|
|
|
|
2018-01-29 21:46:07 +01:00
|
|
|
void Clear(void *obj) noexcept {
|
2013-11-29 09:38:48 +01:00
|
|
|
for (auto i = items.begin(); i != items.end(); ++i)
|
|
|
|
if (i->obj == obj)
|
|
|
|
i->events = 0;
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:46:07 +01:00
|
|
|
void Add(unsigned events, void *obj) noexcept {
|
2013-11-29 09:38:48 +01:00
|
|
|
items.emplace_back(events, obj);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|