random_access_index.hpp
来自「support vector clustering for vc++」· HPP 代码 · 共 921 行 · 第 1/2 页
HPP
921 行
void remove(value_param_type value)
{
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
difference_type n=
end()-make_iterator(
random_access_index_remove<node_type>(
ptrs,std::bind2nd(std::equal_to<value_type>(),value)));
while(n--)pop_back();
}
template<typename Predicate>
void remove_if(Predicate pred)
{
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
difference_type n=
end()-make_iterator(random_access_index_remove<node_type>(ptrs,pred));
while(n--)pop_back();
}
void unique()
{
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
difference_type n=
end()-make_iterator(
random_access_index_unique<node_type>(
ptrs,std::equal_to<value_type>()));
while(n--)pop_back();
}
template <class BinaryPredicate>
void unique(BinaryPredicate binary_pred)
{
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
difference_type n=
end()-make_iterator(
random_access_index_unique<node_type>(ptrs,binary_pred));
while(n--)pop_back();
}
void merge(random_access_index<SuperMeta,TagList>& x)
{
if(this!=&x){
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
size_type s=size();
splice(end(),x);
random_access_index_inplace_merge<node_type>(
get_allocator(),ptrs,ptrs.at(s),std::less<value_type>());
}
}
template <typename Compare>
void merge(random_access_index<SuperMeta,TagList>& x,Compare comp)
{
if(this!=&x){
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
size_type s=size();
splice(end(),x);
random_access_index_inplace_merge<node_type>(
get_allocator(),ptrs,ptrs.at(s),comp);
}
}
void sort()
{
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
random_access_index_sort<node_type>(
get_allocator(),ptrs,std::less<value_type>());
}
template <typename Compare>
void sort(Compare comp)
{
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
random_access_index_sort<node_type>(
get_allocator(),ptrs,comp);
}
void reverse()
{
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
random_access_index_node_impl::reverse(ptrs.begin(),ptrs.end());
}
/* rearrange operations */
void relocate(iterator position,iterator i)
{
BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(position);
BOOST_MULTI_INDEX_CHECK_IS_OWNER(position,*this);
BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(i);
BOOST_MULTI_INDEX_CHECK_DEREFERENCEABLE_ITERATOR(i);
BOOST_MULTI_INDEX_CHECK_IS_OWNER(i,*this);
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
if(position!=i)relocate(position.get_node(),i.get_node());
}
void relocate(iterator position,iterator first,iterator last)
{
BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(position);
BOOST_MULTI_INDEX_CHECK_IS_OWNER(position,*this);
BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(first);
BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(last);
BOOST_MULTI_INDEX_CHECK_IS_OWNER(first,*this);
BOOST_MULTI_INDEX_CHECK_IS_OWNER(last,*this);
BOOST_MULTI_INDEX_CHECK_VALID_RANGE(first,last);
BOOST_MULTI_INDEX_CHECK_OUTSIDE_RANGE(position,first,last);
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
if(position!=last)relocate(
position.get_node(),first.get_node(),last.get_node());
}
template<typename InputIterator>
void rearrange(InputIterator first)
{
BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT;
for(random_access_index_node_impl** p0=ptrs.begin(),** p0_end=ptrs.end();
p0!=p0_end;++first,++p0){
const value_type& v1=*first;
random_access_index_node_impl** p1=node_from_value<node_type>(&v1)->up();
std::swap(*p0,*p1);
(*p0)->up()=p0;
(*p1)->up()=p1;
}
}
BOOST_MULTI_INDEX_PROTECTED_IF_MEMBER_TEMPLATE_FRIENDS:
random_access_index(
const ctor_args_list& args_list,const allocator_type& al):
super(args_list.get_tail(),al),
ptrs(al,header()->impl(),0)
{
}
random_access_index(const random_access_index<SuperMeta,TagList>& x):
super(x),
#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
safe_super(),
#endif
ptrs(x.get_allocator(),header()->impl(),x.size())
{
/* The actual copying takes place in subsequent call to copy_().
*/
}
~random_access_index()
{
/* the container is guaranteed to be empty by now */
}
#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
iterator make_iterator(node_type* node){return iterator(node,this);}
const_iterator make_iterator(node_type* node)const
{return const_iterator(node,const_cast<random_access_index*>(this));}
#else
iterator make_iterator(node_type* node){return iterator(node);}
const_iterator make_iterator(node_type* node)const
{return const_iterator(node);}
#endif
void copy_(
const random_access_index<SuperMeta,TagList>& x,const copy_map_type& map)
{
for(random_access_index_node_impl** begin_org=x.ptrs.begin(),
** begin_cpy=ptrs.begin(),
** end_org=x.ptrs.end();
begin_org!=end_org;++begin_org,++begin_cpy){
*begin_cpy=
static_cast<node_type*>(
map.find(
static_cast<final_node_type*>(
node_type::from_impl(*begin_org))))->impl();
(*begin_cpy)->up()=begin_cpy;
}
super::copy_(x,map);
}
node_type* insert_(value_param_type v,node_type* x)
{
ptrs.room_for_one();
node_type* res=static_cast<node_type*>(super::insert_(v,x));
if(res==x)ptrs.push_back(x->impl());
return res;
}
node_type* insert_(value_param_type v,node_type* position,node_type* x)
{
ptrs.room_for_one();
node_type* res=static_cast<node_type*>(super::insert_(v,position,x));
if(res==x)ptrs.push_back(x->impl());
return res;
}
void erase_(node_type* x)
{
ptrs.erase(x->impl());
super::erase_(x);
#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
detach_iterators(x);
#endif
}
void delete_all_nodes_()
{
for(random_access_index_node_impl** x=ptrs.begin(),**x_end=ptrs.end();
x!=x_end;++x){
this->final_delete_node_(
static_cast<final_node_type*>(node_type::from_impl(*x)));
}
}
void clear_()
{
super::clear_();
ptrs.clear();
#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
safe_super::detach_dereferenceable_iterators();
#endif
}
void swap_(random_access_index<SuperMeta,TagList>& x)
{
ptrs.swap(x.ptrs);
#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
safe_super::swap(x);
#endif
super::swap_(x);
}
bool replace_(value_param_type v,node_type* x)
{
return super::replace_(v,x);
}
bool modify_(node_type* x)
{
BOOST_TRY{
if(!super::modify_(x)){
ptrs.erase(x->impl());
#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
detach_iterators(x);
#endif
return false;
}
else return true;
}
BOOST_CATCH(...){
ptrs.erase(x->impl());
#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
detach_iterators(x);
#endif
BOOST_RETHROW;
}
BOOST_CATCH_END
}
#if !defined(BOOST_MULTI_INDEX_DISABLE_SERIALIZATION)
/* serialization */
template<typename Archive>
void save_(
Archive& ar,const unsigned int version,const index_saver_type& sm)const
{
sm.save(begin(),end(),ar,version);
super::save_(ar,version,sm);
}
template<typename Archive>
void load_(
Archive& ar,const unsigned int version,const index_loader_type& lm)
{
{
typedef random_access_index_loader<node_type,allocator_type> loader;
loader ld(get_allocator(),ptrs);
lm.load(::boost::bind(&loader::rearrange,&ld,_1,_2),ar,version);
} /* exit scope so that ld frees its resources */
super::load_(ar,version,lm);
}
#endif
#if defined(BOOST_MULTI_INDEX_ENABLE_INVARIANT_CHECKING)
/* invariant stuff */
bool invariant_()const
{
if(size()>capacity())return false;
if(size()==0||begin()==end()){
if(size()!=0||begin()!=end())return false;
}
else{
size_type s=0;
for(const_iterator it=begin(),it_end=end();;++it,++s){
if(*(it.get_node()->up())!=it.get_node()->impl())return false;
if(it==it_end)break;
}
if(s!=size())return false;
}
return super::invariant_();
}
/* This forwarding function eases things for the boost::mem_fn construct
* in BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT. Actually,
* final_check_invariant is already an inherited member function of index.
*/
void check_invariant_()const{this->final_check_invariant_();}
#endif
private:
node_type* header()const{return this->final_header();}
static void relocate(node_type* position,node_type* x)
{
random_access_index_node_impl::relocate(position->up(),x->up());
}
static void relocate(node_type* position,node_type* first,node_type* last)
{
random_access_index_node_impl::relocate(
position->up(),first->up(),last->up());
}
#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
void detach_iterators(node_type* x)
{
iterator it=make_iterator(x);
safe_mode::detach_equivalent_iterators(it);
}
#endif
random_access_index_ptr_array<typename super::final_allocator_type> ptrs;
#if defined(BOOST_MULTI_INDEX_ENABLE_INVARIANT_CHECKING)&&\
BOOST_WORKAROUND(__MWERKS__,<=0x3003)
#pragma parse_mfunc_templ reset
#endif
};
/* comparison */
template<
typename SuperMeta1,typename TagList1,
typename SuperMeta2,typename TagList2
>
bool operator==(
const random_access_index<SuperMeta1,TagList1>& x,
const random_access_index<SuperMeta2,TagList2>& y)
{
return x.size()==y.size()&&std::equal(x.begin(),x.end(),y.begin());
}
template<
typename SuperMeta1,typename TagList1,
typename SuperMeta2,typename TagList2
>
bool operator<(
const random_access_index<SuperMeta1,TagList1>& x,
const random_access_index<SuperMeta2,TagList2>& y)
{
return std::lexicographical_compare(x.begin(),x.end(),y.begin(),y.end());
}
template<
typename SuperMeta1,typename TagList1,
typename SuperMeta2,typename TagList2
>
bool operator!=(
const random_access_index<SuperMeta1,TagList1>& x,
const random_access_index<SuperMeta2,TagList2>& y)
{
return !(x==y);
}
template<
typename SuperMeta1,typename TagList1,
typename SuperMeta2,typename TagList2
>
bool operator>(
const random_access_index<SuperMeta1,TagList1>& x,
const random_access_index<SuperMeta2,TagList2>& y)
{
return y<x;
}
template<
typename SuperMeta1,typename TagList1,
typename SuperMeta2,typename TagList2
>
bool operator>=(
const random_access_index<SuperMeta1,TagList1>& x,
const random_access_index<SuperMeta2,TagList2>& y)
{
return !(x<y);
}
template<
typename SuperMeta1,typename TagList1,
typename SuperMeta2,typename TagList2
>
bool operator<=(
const random_access_index<SuperMeta1,TagList1>& x,
const random_access_index<SuperMeta2,TagList2>& y)
{
return !(x>y);
}
/* specialized algorithms */
template<typename SuperMeta,typename TagList>
void swap(
random_access_index<SuperMeta,TagList>& x,
random_access_index<SuperMeta,TagList>& y)
{
x.swap(y);
}
} /* namespace multi_index::detail */
/* random access index specifier */
template <typename TagList>
struct random_access
{
BOOST_STATIC_ASSERT(detail::is_tag<TagList>::value);
template<typename Super>
struct node_class
{
typedef detail::random_access_index_node<Super> type;
};
template<typename SuperMeta>
struct index_class
{
typedef detail::random_access_index<
SuperMeta,typename TagList::type> type;
};
};
} /* namespace multi_index */
} /* namespace boost */
#undef BOOST_MULTI_INDEX_RND_INDEX_CHECK_INVARIANT
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?