mpd/src/queue/IdTable.hxx

112 lines
2.3 KiB
C++
Raw Normal View History

2013-01-08 16:11:25 +01:00
/*
2022-07-14 17:58:12 +02:00
* Copyright 2003-2022 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 <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
/**
* How many members of "data" are initialized?
*
* The initial value is 1 and not 0 because the first element
* of the array is never used, because 0 is not a valid song
* id.
*/
unsigned initialized = 1;
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]) {
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 {
return id < initialized
2013-01-08 16:11:25 +01:00
? 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 <= initialized);
2013-01-08 16:11:25 +01:00
while (true) {
unsigned id = next;
++next;
if (next == size)
next = 1;
if (id == initialized) {
/* the caller will initialize
data[id] */
++initialized;
return id;
}
assert(id < initialized);
2013-01-08 16:11:25 +01:00
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();
assert(id < initialized);
2013-01-08 16:11:25 +01:00
data[id] = position;
return id;
}
2017-11-26 12:23:46 +01:00
void Move(unsigned id, unsigned position) noexcept {
assert(id < initialized);
2013-01-08 16:11:25 +01:00
assert(data[id] >= 0);
data[id] = position;
}
2017-11-26 12:23:46 +01:00
void Erase(unsigned id) noexcept {
assert(id < initialized);
2013-01-08 16:11:25 +01:00
assert(data[id] >= 0);
data[id] = -1;
}
};
#endif