2015-09-03 17:32:29 +05:30
|
|
|
#include "base/rolling_hash.h"
|
|
|
|
|
|
|
|
using namespace base;
|
|
|
|
using namespace boost;
|
2015-09-04 15:40:19 +05:30
|
|
|
using namespace hash_detail;
|
2015-09-03 17:32:29 +05:30
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
rolling_hash::rolling_hash(unsigned window_size)
|
|
|
|
: a_(MULTIPLIER),
|
|
|
|
a_to_k_minus_1_(a_),
|
2015-09-04 15:58:33 +05:30
|
|
|
window_size_(window_size),
|
|
|
|
buffer_(window_size) {
|
2015-09-03 17:32:29 +05:30
|
|
|
|
|
|
|
for (unsigned i = 1; i < window_size_ - 1; i++)
|
|
|
|
a_to_k_minus_1_ *= a_;
|
|
|
|
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rolling_hash::reset()
|
|
|
|
{
|
|
|
|
// prime with zeroes
|
2015-09-04 15:58:33 +05:30
|
|
|
buffer_.clear();
|
2015-09-03 17:32:29 +05:30
|
|
|
|
|
|
|
hash_ = 0;
|
|
|
|
for (unsigned i = 0; i < window_size_; i++) {
|
|
|
|
hash_ = (hash_ * a_) + SEED;
|
2015-09-04 15:58:33 +05:30
|
|
|
buffer_.push_back(0);
|
2015-09-03 17:32:29 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------
|
|
|
|
|
|
|
|
content_based_hash::content_based_hash(unsigned window_size)
|
|
|
|
: rhash_(window_size),
|
|
|
|
|
|
|
|
// FIXME: hard coded values
|
|
|
|
backup_div_((window_size / 4) - 1),
|
|
|
|
div_((window_size / 2) - 1),
|
2015-09-04 18:18:02 +05:30
|
|
|
min_len_(window_size / 4),
|
2015-09-03 17:32:29 +05:30
|
|
|
max_len_(window_size),
|
|
|
|
len_(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
content_based_hash::reset()
|
|
|
|
{
|
|
|
|
len_ = 0;
|
|
|
|
backup_break_.reset();
|
|
|
|
rhash_.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|