mpd/src/queue/IdTable.hxx

95 lines
1.9 KiB
C++
Raw Normal View History

2013-01-08 16:11:25 +01:00
/*
2021-01-01 19:54:25 +01:00
* Copyright 2003-2021 The Music Player Daemon Project
2013-01-08 16:11:25 +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_ID_TABLE_HXX
#define MPD_ID_TABLE_HXX
2018-08-20 16:19:17 +02:00
#include "util/Compiler.h"
2013-01-08 16:11:25 +01:00
#include <algorithm>
#include <cassert>
2013-01-08 16:11:25 +01:00
/**
* A table that maps id numbers to position numbers.
*/
class IdTable {
2021-11-19 15:51:04 +01:00
const unsigned size;
2013-01-08 16:11:25 +01:00
unsigned next;
int *const data;
2013-01-08 16:11:25 +01:00
public:
2017-11-26 12:23:46 +01:00
IdTable(unsigned _size) noexcept
:size(_size), next(1), data(new int[size]) {
std::fill_n(data, size, -1);
2013-01-08 16:11:25 +01:00
}
2017-11-26 12:23:46 +01:00
~IdTable() noexcept {
2013-01-08 16:11:25 +01:00
delete[] data;
}
2017-11-26 12:24:35 +01:00
IdTable(const IdTable &) = delete;
IdTable &operator=(const IdTable &) = delete;
2017-11-26 12:23:46 +01:00
int IdToPosition(unsigned id) const noexcept {
2013-01-08 16:11:25 +01:00
return id < size
? data[id]
: -1;
}
2017-11-26 12:23:46 +01:00
unsigned GenerateId() noexcept {
2013-01-08 16:11:25 +01:00
assert(next > 0);
assert(next < size);
while (true) {
unsigned id = next;
++next;
if (next == size)
next = 1;
if (data[id] < 0)
return id;
}
}
2017-11-26 12:23:46 +01:00
unsigned Insert(unsigned position) noexcept {
2013-01-08 16:11:25 +01:00
unsigned id = GenerateId();
data[id] = position;
return id;
}
2017-11-26 12:23:46 +01:00
void Move(unsigned id, unsigned position) noexcept {
2013-01-08 16:11:25 +01:00
assert(id < size);
assert(data[id] >= 0);
data[id] = position;
}
2017-11-26 12:23:46 +01:00
void Erase(unsigned id) noexcept {
2013-01-08 16:11:25 +01:00
assert(id < size);
assert(data[id] >= 0);
data[id] = -1;
}
};
#endif