forked from boostorg/unordered
Remove deprecated headers, move hash_fwd.hpp into hash subdirectory. And several minor internal changes. Mostly minor internal details. Merged revisions 51262-51263,51407-51409,51504-51505,51644-51646,51667 via svnmerge from https://svn.boost.org/svn/boost/trunk ........ r51262 | danieljames | 2009-02-15 19:32:04 +0000 (Sun, 15 Feb 2009) | 1 line Use the new 'boost:' links for the hash, unordered and quickbook documentation. ........ r51263 | danieljames | 2009-02-15 19:32:19 +0000 (Sun, 15 Feb 2009) | 2 lines Don't copy images for the standalone hash and unordered documentation, was only really required before the libraries were integrated into boost. ........ r51407 | danieljames | 2009-02-22 23:49:51 +0000 (Sun, 22 Feb 2009) | 1 line Fix the hash dirname. ........ r51408 | danieljames | 2009-02-22 23:50:04 +0000 (Sun, 22 Feb 2009) | 1 line Make copy_buckets and move_buckets member functions - so that calling them is a bit simpler. ........ r51409 | danieljames | 2009-02-22 23:50:20 +0000 (Sun, 22 Feb 2009) | 1 line Move some of the data structure classes out of hash table data. ........ r51504 | danieljames | 2009-03-01 14:15:09 +0000 (Sun, 01 Mar 2009) | 1 line Add missing return for operator=. ........ r51505 | danieljames | 2009-03-01 14:15:39 +0000 (Sun, 01 Mar 2009) | 3 lines Make the sort stable. Doesn't really matter, but it might as well be. ........ r51644 | danieljames | 2009-03-08 09:44:51 +0000 (Sun, 08 Mar 2009) | 1 line Detab. ........ r51645 | danieljames | 2009-03-08 09:45:11 +0000 (Sun, 08 Mar 2009) | 4 lines Move hash_fwd into the hash subdirectory. I should have done this in the last release. But now all of the hash implementation is in the hash subdirectory. ........ r51646 | danieljames | 2009-03-08 09:45:30 +0000 (Sun, 08 Mar 2009) | 3 lines Remove deprecated headers. Fixes #2412. ........ r51667 | danieljames | 2009-03-09 20:56:23 +0000 (Mon, 09 Mar 2009) | 1 line Update copyright dates in hash and unordered. ........ [SVN r51729]
238 lines
7.1 KiB
C++
238 lines
7.1 KiB
C++
|
|
// Copyright 2006-2009 Daniel James.
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#include "./containers.hpp"
|
|
#include <string>
|
|
#include "../helpers/random_values.hpp"
|
|
#include "../helpers/invariants.hpp"
|
|
#include "../helpers/strong.hpp"
|
|
#include "../helpers/input_iterator.hpp"
|
|
#include <boost/utility.hpp>
|
|
#include <cmath>
|
|
|
|
test::seed_t seed(747373);
|
|
|
|
template <class T>
|
|
struct insert_test_base : public test::exception_base
|
|
{
|
|
test::random_values<T> values;
|
|
insert_test_base(unsigned int count = 5) : values(count) {}
|
|
|
|
typedef T data_type;
|
|
typedef test::strong<T> strong_type;
|
|
|
|
data_type init() const {
|
|
return T();
|
|
}
|
|
|
|
void check(T const& x, strong_type const& strong) const {
|
|
std::string scope(test::scope);
|
|
|
|
if(scope.find("hash::operator()") == std::string::npos)
|
|
strong.test(x);
|
|
test::check_equivalent_keys(x);
|
|
}
|
|
};
|
|
|
|
#if defined(BOOST_HAS_RVALUE_REFS) && defined(BOOST_HAS_VARIADIC_TMPL)
|
|
|
|
template <class T>
|
|
struct emplace_test1 : public insert_test_base<T>
|
|
{
|
|
typedef BOOST_DEDUCED_TYPENAME insert_test_base<T>::strong_type strong_type;
|
|
|
|
void run(T& x, strong_type& strong) const {
|
|
for(BOOST_DEDUCED_TYPENAME test::random_values<T>::const_iterator
|
|
it = this->values.begin(), end = this->values.end(); it != end; ++it)
|
|
{
|
|
strong.store(x);
|
|
x.emplace(*it);
|
|
}
|
|
}
|
|
};
|
|
|
|
#endif
|
|
|
|
template <class T>
|
|
struct insert_test1 : public insert_test_base<T>
|
|
{
|
|
typedef BOOST_DEDUCED_TYPENAME insert_test_base<T>::strong_type strong_type;
|
|
|
|
void run(T& x, strong_type& strong) const {
|
|
for(BOOST_DEDUCED_TYPENAME test::random_values<T>::const_iterator
|
|
it = this->values.begin(), end = this->values.end(); it != end; ++it)
|
|
{
|
|
strong.store(x);
|
|
x.insert(*it);
|
|
}
|
|
}
|
|
};
|
|
|
|
template <class T>
|
|
struct insert_test2 : public insert_test_base<T>
|
|
{
|
|
typedef BOOST_DEDUCED_TYPENAME insert_test_base<T>::strong_type strong_type;
|
|
|
|
void run(T& x, strong_type& strong) const {
|
|
for(BOOST_DEDUCED_TYPENAME test::random_values<T>::const_iterator
|
|
it = this->values.begin(), end = this->values.end(); it != end; ++it)
|
|
{
|
|
strong.store(x);
|
|
x.insert(x.begin(), *it);
|
|
}
|
|
}
|
|
};
|
|
|
|
template <class T>
|
|
struct insert_test3 : public insert_test_base<T>
|
|
{
|
|
void run(T& x) const {
|
|
x.insert(this->values.begin(), this->values.end());
|
|
}
|
|
|
|
void check(T const& x) const {
|
|
test::check_equivalent_keys(x);
|
|
}
|
|
};
|
|
|
|
template <class T>
|
|
struct insert_test4 : public insert_test_base<T>
|
|
{
|
|
typedef BOOST_DEDUCED_TYPENAME insert_test_base<T>::strong_type strong_type;
|
|
|
|
void run(T& x, strong_type& strong) const {
|
|
for(BOOST_DEDUCED_TYPENAME test::random_values<T>::const_iterator
|
|
it = this->values.begin(), end = this->values.end(); it != end; ++it)
|
|
{
|
|
strong.store(x);
|
|
x.insert(it, boost::next(it));
|
|
}
|
|
}
|
|
};
|
|
|
|
template <class T>
|
|
struct insert_test_rehash1 : public insert_test_base<T>
|
|
{
|
|
typedef BOOST_DEDUCED_TYPENAME insert_test_base<T>::strong_type strong_type;
|
|
|
|
insert_test_rehash1() : insert_test_base<T>(1000) {}
|
|
|
|
T init() const {
|
|
using namespace std;
|
|
typedef BOOST_DEDUCED_TYPENAME T::size_type size_type;
|
|
|
|
T x;
|
|
x.max_load_factor(0.25);
|
|
size_type bucket_count = x.bucket_count();
|
|
size_type initial_elements = static_cast<size_type>(
|
|
ceil(bucket_count * (double) x.max_load_factor()) - 1);
|
|
BOOST_REQUIRE(initial_elements < this->values.size());
|
|
x.insert(this->values.begin(),
|
|
boost::next(this->values.begin(), initial_elements));
|
|
BOOST_REQUIRE(bucket_count == x.bucket_count());
|
|
return x;
|
|
}
|
|
|
|
void run(T& x, strong_type& strong) const {
|
|
BOOST_DEDUCED_TYPENAME T::size_type bucket_count = x.bucket_count();
|
|
int count = 0;
|
|
BOOST_DEDUCED_TYPENAME T::const_iterator pos = x.cbegin();
|
|
|
|
for(BOOST_DEDUCED_TYPENAME test::random_values<T>::const_iterator
|
|
it = boost::next(this->values.begin(), x.size()), end = this->values.end();
|
|
it != end && count < 10; ++it, ++count)
|
|
{
|
|
strong.store(x);
|
|
pos = x.insert(pos, *it);
|
|
}
|
|
|
|
// This isn't actually a failure, but it means the test isn't doing its
|
|
// job.
|
|
BOOST_REQUIRE(x.bucket_count() != bucket_count);
|
|
}
|
|
};
|
|
|
|
template <class T>
|
|
struct insert_test_rehash2 : public insert_test_rehash1<T>
|
|
{
|
|
typedef BOOST_DEDUCED_TYPENAME insert_test_base<T>::strong_type strong_type;
|
|
|
|
void run(T& x, strong_type& strong) const {
|
|
BOOST_DEDUCED_TYPENAME T::size_type bucket_count = x.bucket_count();
|
|
int count = 0;
|
|
|
|
for(BOOST_DEDUCED_TYPENAME test::random_values<T>::const_iterator
|
|
it = boost::next(this->values.begin(), x.size()), end = this->values.end();
|
|
it != end && count < 10; ++it, ++count)
|
|
{
|
|
strong.store(x);
|
|
x.insert(*it);
|
|
}
|
|
|
|
// This isn't actually a failure, but it means the test isn't doing its
|
|
// job.
|
|
BOOST_REQUIRE(x.bucket_count() != bucket_count);
|
|
}
|
|
};
|
|
|
|
template <class T>
|
|
struct insert_test_rehash3 : public insert_test_base<T>
|
|
{
|
|
BOOST_DEDUCED_TYPENAME T::size_type mutable rehash_bucket_count, original_bucket_count;
|
|
|
|
insert_test_rehash3() : insert_test_base<T>(1000) {}
|
|
|
|
T init() const {
|
|
using namespace std;
|
|
typedef BOOST_DEDUCED_TYPENAME T::size_type size_type;
|
|
|
|
T x;
|
|
x.max_load_factor(0.25);
|
|
|
|
original_bucket_count = x.bucket_count();
|
|
rehash_bucket_count = static_cast<size_type>(
|
|
ceil(original_bucket_count * (double) x.max_load_factor())) - 1;
|
|
|
|
size_type initial_elements = rehash_bucket_count - 5;
|
|
|
|
BOOST_REQUIRE(initial_elements < this->values.size());
|
|
x.insert(this->values.begin(),
|
|
boost::next(this->values.begin(), initial_elements));
|
|
BOOST_REQUIRE(original_bucket_count == x.bucket_count());
|
|
return x;
|
|
}
|
|
|
|
void run(T& x) const {
|
|
BOOST_DEDUCED_TYPENAME T::size_type bucket_count = x.bucket_count();
|
|
|
|
x.insert(boost::next(this->values.begin(), x.size()),
|
|
boost::next(this->values.begin(), x.size() + 20));
|
|
|
|
// This isn't actually a failure, but it means the test isn't doing its
|
|
// job.
|
|
BOOST_REQUIRE(x.bucket_count() != bucket_count);
|
|
}
|
|
|
|
void check(T const& x) const {
|
|
if(x.size() < rehash_bucket_count) {
|
|
//BOOST_CHECK(x.bucket_count() == original_bucket_count);
|
|
}
|
|
test::check_equivalent_keys(x);
|
|
}
|
|
};
|
|
|
|
#define BASIC_TESTS \
|
|
(insert_test1)(insert_test2)(insert_test3)(insert_test4) \
|
|
(insert_test_rehash1)(insert_test_rehash2)(insert_test_rehash3)
|
|
|
|
#if defined(BOOST_HAS_RVALUE_REFS) && defined(BOOST_HAS_VARIADIC_TMPL)
|
|
#define ALL_TESTS (emplace_test1)BASIC_TESTS
|
|
#else
|
|
#define ALL_TESTS BASIC_TESTS
|
|
#endif
|
|
|
|
|
|
RUN_EXCEPTION_TESTS(ALL_TESTS, CONTAINER_SEQ)
|