safe_mode.hpp
来自「Boost provides free peer-reviewed portab」· HPP 代码 · 共 569 行 · 第 1/2 页
HPP
569 行
/* Copyright 2003-2008 Joaquin M Lopez Munoz. * 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. */#ifndef BOOST_MULTI_INDEX_DETAIL_SAFE_MODE_HPP#define BOOST_MULTI_INDEX_DETAIL_SAFE_MODE_HPP#if defined(_MSC_VER)&&(_MSC_VER>=1200)#pragma once#endif/* Safe mode machinery, in the spirit of Cay Hortmann's "Safe STL" * (http://www.horstmann.com/safestl.html). * In this mode, containers of type Container are derived from * safe_container<Container>, and their corresponding iterators * are wrapped with safe_iterator. These classes provide * an internal record of which iterators are at a given moment associated * to a given container, and properly mark the iterators as invalid * when the container gets destroyed. * Iterators are chained in a single attached list, whose header is * kept by the container. More elaborate data structures would yield better * performance, but I decided to keep complexity to a minimum since * speed is not an issue here. * Safe mode iterators automatically check that only proper operations * are performed on them: for instance, an invalid iterator cannot be * dereferenced. Additionally, a set of utilty macros and functions are * provided that serve to implement preconditions and cooperate with * the framework within the container. * Iterators can also be unchecked, i.e. they do not have info about * which container they belong in. This situation arises when the iterator * is restored from a serialization archive: only information on the node * is available, and it is not possible to determine to which container * the iterator is associated to. The only sensible policy is to assume * unchecked iterators are valid, though this can certainly generate false * positive safe mode checks. * This is not a full-fledged safe mode framework, and is only intended * for use within the limits of Boost.MultiIndex. *//* Assertion macros. These resolve to no-ops if * !defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE). */#if !defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)#undef BOOST_MULTI_INDEX_SAFE_MODE_ASSERT#define BOOST_MULTI_INDEX_SAFE_MODE_ASSERT(expr,error_code) ((void)0)#else#if !defined(BOOST_MULTI_INDEX_SAFE_MODE_ASSERT)#include <boost/assert.hpp>#define BOOST_MULTI_INDEX_SAFE_MODE_ASSERT(expr,error_code) BOOST_ASSERT(expr)#endif#endif#define BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(it) \ BOOST_MULTI_INDEX_SAFE_MODE_ASSERT( \ safe_mode::check_valid_iterator(it), \ safe_mode::invalid_iterator);#define BOOST_MULTI_INDEX_CHECK_DEREFERENCEABLE_ITERATOR(it) \ BOOST_MULTI_INDEX_SAFE_MODE_ASSERT( \ safe_mode::check_dereferenceable_iterator(it), \ safe_mode::not_dereferenceable_iterator);#define BOOST_MULTI_INDEX_CHECK_INCREMENTABLE_ITERATOR(it) \ BOOST_MULTI_INDEX_SAFE_MODE_ASSERT( \ safe_mode::check_incrementable_iterator(it), \ safe_mode::not_incrementable_iterator);#define BOOST_MULTI_INDEX_CHECK_DECREMENTABLE_ITERATOR(it) \ BOOST_MULTI_INDEX_SAFE_MODE_ASSERT( \ safe_mode::check_decrementable_iterator(it), \ safe_mode::not_decrementable_iterator);#define BOOST_MULTI_INDEX_CHECK_IS_OWNER(it,cont) \ BOOST_MULTI_INDEX_SAFE_MODE_ASSERT( \ safe_mode::check_is_owner(it,cont), \ safe_mode::not_owner);#define BOOST_MULTI_INDEX_CHECK_SAME_OWNER(it0,it1) \ BOOST_MULTI_INDEX_SAFE_MODE_ASSERT( \ safe_mode::check_same_owner(it0,it1), \ safe_mode::not_same_owner);#define BOOST_MULTI_INDEX_CHECK_VALID_RANGE(it0,it1) \ BOOST_MULTI_INDEX_SAFE_MODE_ASSERT( \ safe_mode::check_valid_range(it0,it1), \ safe_mode::invalid_range);#define BOOST_MULTI_INDEX_CHECK_OUTSIDE_RANGE(it,it0,it1) \ BOOST_MULTI_INDEX_SAFE_MODE_ASSERT( \ safe_mode::check_outside_range(it,it0,it1), \ safe_mode::inside_range);#define BOOST_MULTI_INDEX_CHECK_IN_BOUNDS(it,n) \ BOOST_MULTI_INDEX_SAFE_MODE_ASSERT( \ safe_mode::check_in_bounds(it,n), \ safe_mode::out_of_bounds);#define BOOST_MULTI_INDEX_CHECK_DIFFERENT_CONTAINER(cont0,cont1) \ BOOST_MULTI_INDEX_SAFE_MODE_ASSERT( \ safe_mode::check_different_container(cont0,cont1), \ safe_mode::same_container);#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)#include <boost/config.hpp> /* keep it first to prevent nasty warns in MSVC */#include <algorithm>#include <boost/detail/iterator.hpp>#include <boost/multi_index/detail/access_specifier.hpp>#include <boost/multi_index/detail/iter_adaptor.hpp>#include <boost/multi_index/safe_mode_errors.hpp>#include <boost/noncopyable.hpp>#if !defined(BOOST_MULTI_INDEX_DISABLE_SERIALIZATION)#include <boost/serialization/split_member.hpp>#endif#if defined(BOOST_HAS_THREADS)#include <boost/detail/lightweight_mutex.hpp>#endifnamespace boost{namespace multi_index{namespace safe_mode{/* Checking routines. Assume the best for unchecked iterators * (i.e. they pass the checking when there is not enough info * to know.) */template<typename Iterator>inline bool check_valid_iterator(const Iterator& it){ return it.valid()||it.unchecked();}template<typename Iterator>inline bool check_dereferenceable_iterator(const Iterator& it){ return it.valid()&&it!=it.owner()->end()||it.unchecked();}template<typename Iterator>inline bool check_incrementable_iterator(const Iterator& it){ return it.valid()&&it!=it.owner()->end()||it.unchecked();}template<typename Iterator>inline bool check_decrementable_iterator(const Iterator& it){ return it.valid()&&it!=it.owner()->begin()||it.unchecked();}template<typename Iterator>inline bool check_is_owner( const Iterator& it,const typename Iterator::container_type& cont){ return it.valid()&&it.owner()==&cont||it.unchecked();}template<typename Iterator>inline bool check_same_owner(const Iterator& it0,const Iterator& it1){ return it0.valid()&&it1.valid()&&it0.owner()==it1.owner()|| it0.unchecked()||it1.unchecked();}template<typename Iterator>inline bool check_valid_range(const Iterator& it0,const Iterator& it1){ if(!check_same_owner(it0,it1))return false; if(it0.valid()){ Iterator last=it0.owner()->end(); if(it1==last)return true; for(Iterator first=it0;first!=last;++first){ if(first==it1)return true; } return false; } return true;}template<typename Iterator>inline bool check_outside_range( const Iterator& it,const Iterator& it0,const Iterator& it1){ if(!check_same_owner(it0,it1))return false; if(it0.valid()){ Iterator last=it0.owner()->end(); bool found=false; Iterator first=it0; for(;first!=last;++first){ if(first==it1)break; /* crucial that this check goes after previous break */ if(first==it)found=true; } if(first!=it1)return false; return !found; } return true;}template<typename Iterator,typename Difference>inline bool check_in_bounds(const Iterator& it,Difference n){ if(it.unchecked())return true; if(!it.valid()) return false; if(n>0) return it.owner()->end()-it>=n; else return it.owner()->begin()-it<=n;}template<typename Container>inline bool check_different_container( const Container& cont0,const Container& cont1){ return &cont0!=&cont1;}/* Invalidates all iterators equivalent to that given. Safe containers * must call this when deleting elements: the safe mode framework cannot * perform this operation automatically without outside help. */template<typename Iterator>inline void detach_equivalent_iterators(Iterator& it){ if(it.valid()){ Iterator *prev_,*next_; for( prev_=static_cast<Iterator*>(&it.cont->header); (next_=static_cast<Iterator*>(prev_->next))!=0;){ if(next_!=&it&&*next_==it){ prev_->next=next_->next; next_->cont=0; } else prev_=next_; } it.detach(); }}template<typename Container> class safe_container; /* fwd decl. */} /* namespace multi_index::safe_mode */namespace detail{class safe_container_base; /* fwd decl. */class safe_iterator_base{public: bool valid()const{return cont!=0;} bool unchecked()const{return unchecked_;} inline void detach(); void uncheck() { detach(); unchecked_=true; }protected: safe_iterator_base():cont(0),next(0),unchecked_(false){} explicit safe_iterator_base(safe_container_base* cont_): unchecked_(false) { attach(cont_); } safe_iterator_base(const safe_iterator_base& it):
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?