lumiera_/src/lib/diff/index-table.hpp

122 lines
2.9 KiB
C++
Raw Normal View History

/*
INDEX-TABLE.hpp - helper for lookup and membership check of sequence like data
Copyright: clarify and simplify the file headers * Lumiera source code always was copyrighted by individual contributors * there is no entity "Lumiera.org" which holds any copyrights * Lumiera source code is provided under the GPL Version 2+ == Explanations == Lumiera as a whole is distributed under Copyleft, GNU General Public License Version 2 or above. For this to become legally effective, the ''File COPYING in the root directory is sufficient.'' The licensing header in each file is not strictly necessary, yet considered good practice; attaching a licence notice increases the likeliness that this information is retained in case someone extracts individual code files. However, it is not by the presence of some text, that legally binding licensing terms become effective; rather the fact matters that a given piece of code was provably copyrighted and published under a license. Even reformatting the code, renaming some variables or deleting parts of the code will not alter this legal situation, but rather creates a derivative work, which is likewise covered by the GPL! The most relevant information in the file header is the notice regarding the time of the first individual copyright claim. By virtue of this initial copyright, the first author is entitled to choose the terms of licensing. All further modifications are permitted and covered by the License. The specific wording or format of the copyright header is not legally relevant, as long as the intention to publish under the GPL remains clear. The extended wording was based on a recommendation by the FSF. It can be shortened, because the full terms of the license are provided alongside the distribution, in the file COPYING.
2024-11-17 23:42:55 +01:00
Copyright (C)
2015, Hermann Vosseler <Ichthyostega@web.de>
Copyright: clarify and simplify the file headers * Lumiera source code always was copyrighted by individual contributors * there is no entity "Lumiera.org" which holds any copyrights * Lumiera source code is provided under the GPL Version 2+ == Explanations == Lumiera as a whole is distributed under Copyleft, GNU General Public License Version 2 or above. For this to become legally effective, the ''File COPYING in the root directory is sufficient.'' The licensing header in each file is not strictly necessary, yet considered good practice; attaching a licence notice increases the likeliness that this information is retained in case someone extracts individual code files. However, it is not by the presence of some text, that legally binding licensing terms become effective; rather the fact matters that a given piece of code was provably copyrighted and published under a license. Even reformatting the code, renaming some variables or deleting parts of the code will not alter this legal situation, but rather creates a derivative work, which is likewise covered by the GPL! The most relevant information in the file header is the notice regarding the time of the first individual copyright claim. By virtue of this initial copyright, the first author is entitled to choose the terms of licensing. All further modifications are permitted and covered by the License. The specific wording or format of the copyright header is not legally relevant, as long as the intention to publish under the GPL remains clear. The extended wording was based on a recommendation by the FSF. It can be shortened, because the full terms of the license are provided alongside the distribution, in the file COPYING.
2024-11-17 23:42:55 +01:00
  **Lumiera** 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. See the file COPYING for further details.
*/
/** @file index-table.hpp
** Generic lookup table for a sequence of unique values.
** This helper facility for detecting differences in data sequences
** takes a snapshot of the data at construction time and builds a lookup tree.
** This allows to find the index position of a given key element, and to detect
** membership.
**
** @see diff-index-table-test.cpp
** @see diff-list-generation-test.cpp
** @see DiffDetector
**
*/
#ifndef LIB_DIFF_INDEX_TABLE_H
#define LIB_DIFF_INDEX_TABLE_H
#include "lib/error.hpp"
#include "lib/util.hpp"
#include "lib/format-string.hpp"
#include <vector>
#include <map>
namespace lib {
namespace diff{
namespace error = lumiera::error;
using util::_Fmt;
/** data snapshot and lookup table */
template<typename VAL>
class IndexTable
{
std::vector<VAL> data_;
std::map<VAL,size_t> idx_;
public:
template<class SEQ>
IndexTable(SEQ const& seq)
{
size_t i = 0;
for (auto const& elm : seq)
{
__rejectDuplicate(elm);
data_.push_back (elm);
idx_[elm] = i++;
}
}
/* === forwarded sequence access === */
using iterator = std::vector<VAL>::iterator;
using const_iterator = std::vector<VAL>::const_iterator;
iterator begin() { return data_.begin(); }
iterator end() { return data_.end(); }
const_iterator begin() const { return data_.begin(); }
const_iterator end() const { return data_.end(); }
size_t size() const { return data_.size(); }
VAL const&
getElement (size_t i) const
{
REQUIRE (i < size());
return data_[i];
}
bool
contains (VAL const& elm) const
{
return pos(elm) != size();
}
size_t
pos (VAL const& elm) const
{
auto entry = idx_.find (elm);
return entry==idx_.end()? size()
: entry->second;
}
private:
void
__rejectDuplicate (VAL const& elm)
{
if (util::contains (idx_, elm))
throw error::Logic(_Fmt("Attempt to add duplicate %s to index table") % elm);
}
};
}} // namespace lib::diff
#endif /*LIB_DIFF_INDEX_TABLE_H*/