2015-01-04 12:36:13 +01:00
|
|
|
/*
|
|
|
|
|
INDEX-TABLE.hpp - helper for lookup and membership check of sequence like data
|
|
|
|
|
|
|
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2015, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** @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
|
|
|
|
|
|
|
|
|
|
|
2015-01-04 13:23:57 +01:00
|
|
|
#include "lib/error.hpp"
|
2015-01-04 14:01:07 +01:00
|
|
|
#include "lib/util.hpp"
|
|
|
|
|
#include "lib/format-string.hpp"
|
2015-01-04 12:36:13 +01:00
|
|
|
|
|
|
|
|
#include <vector>
|
2015-01-04 13:23:57 +01:00
|
|
|
#include <map>
|
2015-01-04 12:36:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace lib {
|
|
|
|
|
namespace diff{
|
|
|
|
|
|
2015-01-04 14:01:07 +01:00
|
|
|
namespace error = lumiera::error;
|
2015-01-04 13:23:57 +01:00
|
|
|
|
2015-01-04 14:01:07 +01:00
|
|
|
using util::_Fmt;
|
2015-01-04 12:36:13 +01:00
|
|
|
|
2015-01-04 14:01:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/** data snapshot and lookup table */
|
2015-01-04 12:36:13 +01:00
|
|
|
template<typename VAL>
|
|
|
|
|
class IndexTable
|
|
|
|
|
{
|
2015-01-04 14:01:07 +01:00
|
|
|
std::vector<VAL> data_;
|
|
|
|
|
std::map<VAL,size_t> idx_;
|
|
|
|
|
|
2015-01-04 12:36:13 +01:00
|
|
|
public:
|
|
|
|
|
template<class SEQ>
|
|
|
|
|
IndexTable(SEQ const& seq)
|
|
|
|
|
{
|
2015-01-04 14:01:07 +01:00
|
|
|
size_t i = 0;
|
|
|
|
|
for (auto const& elm : seq)
|
|
|
|
|
{
|
|
|
|
|
__rejectDuplicate(elm);
|
|
|
|
|
data_.push_back (elm);
|
|
|
|
|
idx_[elm] = i++;
|
|
|
|
|
}
|
2015-01-04 12:36:13 +01:00
|
|
|
}
|
|
|
|
|
|
2015-01-04 14:23:12 +01:00
|
|
|
/* === forwarded sequence access === */
|
|
|
|
|
|
|
|
|
|
using iterator = typename std::vector<VAL>::iterator;
|
|
|
|
|
using const_iterator = typename 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(); }
|
|
|
|
|
|
|
|
|
|
|
2015-01-04 12:36:13 +01:00
|
|
|
|
2015-01-04 14:01:07 +01:00
|
|
|
|
2015-01-04 12:36:13 +01:00
|
|
|
VAL const&
|
|
|
|
|
getElement (size_t i) const
|
|
|
|
|
{
|
2015-01-04 14:01:07 +01:00
|
|
|
REQUIRE (i < size());
|
|
|
|
|
return data_[i];
|
2015-01-04 12:36:13 +01:00
|
|
|
}
|
|
|
|
|
|
2015-01-04 14:01:07 +01:00
|
|
|
|
2015-01-04 12:36:13 +01:00
|
|
|
bool
|
|
|
|
|
contains (VAL const& elm) const
|
|
|
|
|
{
|
2015-01-04 14:01:07 +01:00
|
|
|
return pos(elm) != size();
|
2015-01-04 12:36:13 +01:00
|
|
|
}
|
|
|
|
|
|
2015-01-04 14:01:07 +01:00
|
|
|
|
2015-01-04 12:36:13 +01:00
|
|
|
size_t
|
|
|
|
|
pos (VAL const& elm) const
|
|
|
|
|
{
|
2015-01-04 14:01:07 +01:00
|
|
|
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);
|
2015-01-04 12:36:13 +01:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}} // namespace lib::diff
|
|
|
|
|
#endif /*LIB_DIFF_INDEX_TABLE_H*/
|