2014-11-15 15:16:18 +01:00
|
|
|
#pragma once
|
2014-11-16 00:05:28 +01:00
|
|
|
#ifndef FSPP_FUSE_IDLIST_H_
|
|
|
|
#define FSPP_FUSE_IDLIST_H_
|
2014-11-15 15:16:18 +01:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
|
|
|
#include <mutex>
|
2014-11-16 02:42:34 +01:00
|
|
|
#include <stdexcept>
|
2015-02-17 00:48:49 +01:00
|
|
|
#include "messmer/cpp-utils/macros.h"
|
2014-11-15 15:16:18 +01:00
|
|
|
|
2014-11-16 00:05:28 +01:00
|
|
|
namespace fspp {
|
2014-11-15 15:16:18 +01:00
|
|
|
|
|
|
|
template<class Entry>
|
|
|
|
class IdList {
|
|
|
|
public:
|
|
|
|
IdList();
|
|
|
|
virtual ~IdList();
|
|
|
|
|
|
|
|
int add(std::unique_ptr<Entry> entry);
|
|
|
|
Entry *get(int id);
|
|
|
|
const Entry *get(int id) const;
|
|
|
|
void remove(int id);
|
|
|
|
private:
|
|
|
|
std::map<int, std::unique_ptr<Entry>> _entries;
|
|
|
|
int _id_counter;
|
|
|
|
mutable std::mutex _mutex;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(IdList<Entry>)
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class Entry>
|
|
|
|
IdList<Entry>::IdList()
|
|
|
|
: _entries(), _id_counter(0), _mutex() {
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Entry>
|
|
|
|
IdList<Entry>::~IdList() {
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Entry>
|
|
|
|
int IdList<Entry>::add(std::unique_ptr<Entry> entry) {
|
|
|
|
std::lock_guard<std::mutex> lock(_mutex);
|
|
|
|
//TODO Reuse IDs (ids = descriptors)
|
|
|
|
int new_id = ++_id_counter;
|
|
|
|
_entries[new_id] = std::move(entry);
|
|
|
|
return new_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Entry>
|
|
|
|
Entry *IdList<Entry>::get(int id) {
|
|
|
|
return const_cast<Entry*>(const_cast<const IdList<Entry>*>(this)->get(id));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Entry>
|
|
|
|
const Entry *IdList<Entry>::get(int id) const {
|
|
|
|
std::lock_guard<std::mutex> lock(_mutex);
|
|
|
|
const Entry *result = _entries.at(id).get();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Entry>
|
|
|
|
void IdList<Entry>::remove(int id) {
|
|
|
|
std::lock_guard<std::mutex> lock(_mutex);
|
2014-11-16 02:42:34 +01:00
|
|
|
auto found_iter = _entries.find(id);
|
|
|
|
if (found_iter == _entries.end()) {
|
|
|
|
throw std::out_of_range("Called IdList::remove() with an invalid ID");
|
|
|
|
}
|
|
|
|
_entries.erase(found_iter);
|
2014-11-15 15:16:18 +01:00
|
|
|
}
|
|
|
|
|
2014-11-16 00:10:29 +01:00
|
|
|
} /* namespace fspp */
|
2014-11-15 15:16:18 +01:00
|
|
|
|
2014-11-16 00:05:28 +01:00
|
|
|
#endif /* FSPP_FUSE_IDLIST_H_ */
|