/* Used in Boost.MultiIndex tests. * * Copyright 2003-2018 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_TEST_NON_STD_ALLOCATOR_HPP #define BOOST_MULTI_INDEX_TEST_NON_STD_ALLOCATOR_HPP #include /* keep it first to prevent nasty warns in MSVC */ #include #include #include #include template class non_raw_pointer { public: typedef std::ptrdiff_t difference_type; typedef T value_type; typedef T* pointer; typedef T& reference; typedef std::random_access_iterator_tag iterator_category; non_raw_pointer(){} explicit non_raw_pointer(T* p_):p(p_){} T& operator*()const { #if !defined(BOOST_NO_EXCEPTIONS) if(!p)boost::throw_exception(std::runtime_error("null indirection")); #endif return *p; } T* operator->()const{return p;} non_raw_pointer& operator++(){++p;return *this;} non_raw_pointer operator++(int){non_raw_pointer t(*this);++p;return t;} non_raw_pointer& operator--(){--p;return *this;} non_raw_pointer operator--(int){non_raw_pointer t(*this);--p;return t;} non_raw_pointer& operator+=(std::ptrdiff_t n){p+=n;return *this;} non_raw_pointer& operator-=(std::ptrdiff_t n){p-=n;return *this;} T& operator[](std::ptrdiff_t n)const{return p[n];} T* raw_ptr()const{return p;} private: T* p; }; template non_raw_pointer operator+(const non_raw_pointer& x,std::ptrdiff_t n) {return non_raw_pointer(x.raw_ptr()+n);} template non_raw_pointer operator+(std::ptrdiff_t n,const non_raw_pointer& x) {return non_raw_pointer(n+x.raw_ptr());} template non_raw_pointer operator-(const non_raw_pointer& x,std::ptrdiff_t n) {return non_raw_pointer(x.raw_ptr()-n);} template std::ptrdiff_t operator-( const non_raw_pointer& x,const non_raw_pointer& y) {return x.raw_ptr()-y.raw_ptr();} template bool operator==(const non_raw_pointer& x,const non_raw_pointer& y) {return x.raw_ptr()==y.raw_ptr();} template bool operator!=(const non_raw_pointer& x,const non_raw_pointer& y) {return x.raw_ptr()!=y.raw_ptr();} template bool operator<(const non_raw_pointer& x,const non_raw_pointer& y) {return x.raw_ptr() bool operator>(const non_raw_pointer& x,const non_raw_pointer& y) {return x.raw_ptr()>y.raw_ptr();} template bool operator>=(const non_raw_pointer& x,const non_raw_pointer& y) {return x.raw_ptr()>=y.raw_ptr();} template bool operator<=(const non_raw_pointer& x,const non_raw_pointer& y) {return x.raw_ptr()<=y.raw_ptr();} template class non_std_allocator { public: typedef std::size_t size_type; typedef std::ptrdiff_t difference_type; typedef non_raw_pointer pointer; typedef non_raw_pointer const_pointer; typedef void* void_pointer; typedef const void* const_void_pointer; typedef T& reference; typedef const T& const_reference; typedef T value_type; templatestruct rebind{typedef non_std_allocator other;}; non_std_allocator(){} non_std_allocator(const non_std_allocator&){} templatenon_std_allocator(const non_std_allocator&,int=0){} pointer allocate(size_type n) { return pointer((T*)(new char[n*sizeof(T)])); } void deallocate(pointer p,size_type) { delete[](char *)&*p; } size_type max_size() const{return (size_type )(-1);} friend bool operator==(const non_std_allocator&,const non_std_allocator&) { return true; } friend bool operator!=(const non_std_allocator&,const non_std_allocator&) { return false; } }; #endif