/* Boost.MultiIndex test for iterators. * * Copyright 2003-2005 Joaquín M López Muñoz. * 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) * * See http://www.boost.org/libs/multi_index for library home page. */ #include "test_iterators.hpp" #include /* keep it first to prevent nasty warns in MSVC */ #include "pre_multi_index.hpp" #include "employee.hpp" #include using namespace boost::multi_index; template void test_non_const_iterators(Index& i,int target) { typedef typename Index::iterator iterator; typedef typename Index::reverse_iterator reverse_iterator; int n=0; for(iterator it=i.begin();it!=i.end();++it){ n+=it->id; } int m=0; for(reverse_iterator rit=i.rbegin();rit!=i.rend();++rit){ m+=rit->id; } int p=0; for(iterator it2=i.end();it2!=i.begin();){ --it2; p+=it2->id; } int q=0; for(reverse_iterator rit2=i.rend();rit2!=i.rbegin();){ --rit2; q+=rit2->id; } BOOST_CHECK(n==target&&n==m&&n==p&&n==q); } template void test_const_iterators(const Index& i,int target) { typedef typename Index::const_iterator const_iterator; typedef typename Index::const_reverse_iterator const_reverse_iterator; int n=0; for(const_iterator it=i.begin();it!=i.end();++it){ n+=it->id; } int m=0; for(const_reverse_iterator rit=i.rbegin();rit!=i.rend();++rit){ m+=rit->id; } int p=0; for(const_iterator it2=i.end();it2!=i.begin();){ --it2; p+=it2->id; } int q=0; for(const_reverse_iterator rit2=i.rend();rit2!=i.rbegin();){ --rit2; q+=rit2->id; } BOOST_CHECK(n==target&&n==m&&n==p&&n==q); } template void test_non_const_hashed_iterators(Index& i,int target) { typedef typename Index::iterator iterator; typedef typename Index::local_iterator local_iterator; typedef typename Index::size_type size_type; int n=0; for(iterator it=i.begin();it!=i.end();++it){ n+=it->id; } int m=0; for(size_type buc=0;bucid; } } BOOST_CHECK(n==target&&n==m); } template void test_const_hashed_iterators(Index& i,int target) { typedef typename Index::const_iterator const_iterator; typedef typename Index::const_local_iterator const_local_iterator; typedef typename Index::size_type size_type; int n=0; for(const_iterator it=i.begin();it!=i.end();++it){ n+=it->id; } int m=0; for(size_type buc=0;bucid; } } BOOST_CHECK(n==target&&n==m); } void test_iterators() { employee_set es; es.insert(employee(0,"Joe",31,1123)); es.insert(employee(1,"Robert",27,5601)); es.insert(employee(2,"John",40,7889)); es.insert(employee(3,"Albert",20,9012)); es.insert(employee(4,"John",57,1002)); int target=0+1+2+3+4; test_non_const_iterators (es,target); test_const_iterators (es,target); test_non_const_hashed_iterators(get<1>(es),target); test_const_hashed_iterators (get<1>(es),target); test_non_const_iterators (get<2>(es),target); test_const_iterators (get<2>(es),target); test_non_const_iterators (get<3>(es),target); test_const_iterators (get<3>(es),target); test_non_const_hashed_iterators(get<4>(es),target); test_const_hashed_iterators (get<4>(es),target); }