Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 /* Copyright 2003-2006 Joaquín M López Muñoz.
2 * Distributed under the Boost Software License, Version 1.0.
3 * (See accompanying file LICENSE_1_0.txt or copy at
4 * http://www.boost.org/LICENSE_1_0.txt)
6 * See http://www.boost.org/libs/multi_index for library home page.
9 #ifndef BOOST_MULTI_INDEX_DETAIL_SEQ_INDEX_OPS_HPP
10 #define BOOST_MULTI_INDEX_DETAIL_SEQ_INDEX_OPS_HPP
12 #if defined(_MSC_VER)&&(_MSC_VER>=1200)
16 #include <boost/config.hpp> /* keep it first to prevent nasty warns in MSVC */
17 #include <boost/detail/no_exceptions_support.hpp>
18 #include <boost/multi_index/detail/seq_index_node.hpp>
19 #include <boost/limits.hpp>
20 #include <boost/type_traits/aligned_storage.hpp>
21 #include <boost/type_traits/alignment_of.hpp>
26 namespace multi_index{
30 /* Common code for sequenced_index memfuns having templatized and
31 * non-templatized versions.
34 template <typename SequencedIndex,typename Predicate>
35 void sequenced_index_remove(SequencedIndex& x,Predicate pred)
37 typedef typename SequencedIndex::iterator iterator;
38 iterator first=x.begin(),last=x.end();
40 if(pred(*first))x.erase(first++);
45 template <typename SequencedIndex,class BinaryPredicate>
46 void sequenced_index_unique(SequencedIndex& x,BinaryPredicate binary_pred)
48 typedef typename SequencedIndex::iterator iterator;
49 iterator first=x.begin();
50 iterator last=x.end();
52 for(iterator middle=first;++middle!=last;middle=first){
53 if(binary_pred(*middle,*first))x.erase(middle);
59 template <typename SequencedIndex,typename Compare>
60 void sequenced_index_merge(SequencedIndex& x,SequencedIndex& y,Compare comp)
62 typedef typename SequencedIndex::iterator iterator;
64 iterator first0=x.begin(),last0=x.end();
65 iterator first1=y.begin(),last1=y.end();
66 while(first0!=last0&&first1!=last1){
67 if(comp(*first1,*first0))x.splice(first0,y,first1++);
70 x.splice(last0,y,first1,last1);
78 template<typename Node,typename Compare>
79 void sequenced_index_collate(
80 sequenced_index_node_impl* x,sequenced_index_node_impl* y,Compare comp
81 BOOST_APPEND_EXPLICIT_TEMPLATE_TYPE(Node))
83 sequenced_index_node_impl* first0=x->next();
84 sequenced_index_node_impl* last0=x;
85 sequenced_index_node_impl* first1=y->next();
86 sequenced_index_node_impl* last1=y;
87 while(first0!=last0&&first1!=last1){
89 Node::from_impl(first1)->value(),Node::from_impl(first0)->value())){
90 sequenced_index_node_impl* tmp=first1->next();
91 sequenced_index_node_impl::relink(first0,first1);
94 else first0=first0->next();
96 sequenced_index_node_impl::relink(last0,first1,last1);
99 /* Some versions of CGG require a bogus typename in counter_spc
100 * inside sequenced_index_sort if the following is defined
101 * also inside sequenced_index_sort.
104 BOOST_STATIC_CONSTANT(
106 sequenced_index_sort_max_fill=
107 (std::size_t)std::numeric_limits<std::size_t>::digits+1);
109 template<typename Node,typename Compare>
110 void sequenced_index_sort(Node* header,Compare comp)
112 /* Musser's mergesort, see http://www.cs.rpi.edu/~musser/gp/List/lists1.html.
113 * The implementation is a little convoluted: in the original code
114 * counter elements and carry are std::lists: here we do not want
115 * to use multi_index instead, so we do things at a lower level, managing
116 * directly the internal node representation.
117 * Incidentally, the implementations I've seen of this algorithm (SGI,
118 * Dinkumware, STLPort) are not exception-safe: this is. Moreover, we do not
119 * use any dynamic storage.
122 if(header->next()==header->impl()||
123 header->next()->next()==header->impl())return;
126 sizeof(sequenced_index_node_impl),
128 sequenced_index_node_impl>::value
130 sequenced_index_node_impl& carry=
131 *static_cast<sequenced_index_node_impl*>(static_cast<void*>(&carry_spc));
134 sequenced_index_node_impl
135 [sequenced_index_sort_max_fill]),
137 sequenced_index_node_impl
138 [sequenced_index_sort_max_fill]
141 sequenced_index_node_impl* counter=
142 static_cast<sequenced_index_node_impl*>(static_cast<void*>(&counter_spc));
145 carry.prior()=carry.next()=&carry;
146 counter[0].prior()=counter[0].next()=&counter[0];
149 while(header->next()!=header->impl()){
150 sequenced_index_node_impl::relink(carry.next(),header->next());
152 while(i<fill&&counter[i].next()!=&counter[i]){
153 sequenced_index_collate<Node>(&carry,&counter[i++],comp);
155 sequenced_index_node_impl::swap(&carry,&counter[i]);
158 counter[fill].prior()=counter[fill].next()=&counter[fill];
162 for(std::size_t i=1;i<fill;++i){
163 sequenced_index_collate<Node>(&counter[i],&counter[i-1],comp);
165 sequenced_index_node_impl::swap(header->impl(),&counter[fill-1]);
169 sequenced_index_node_impl::relink(header->impl(),carry.next(),&carry);
170 for(std::size_t i=0;i<=fill;++i){
171 sequenced_index_node_impl::relink(
172 header->impl(),counter[i].next(),&counter[i]);
179 } /* namespace multi_index::detail */
181 } /* namespace multi_index */
183 } /* namespace boost */