Update contrib.
1 /***********************************************************************************
5 * Mark of the Unicorn, Inc.
7 * Permission to use, copy, modify, distribute and sell this software
8 * and its documentation for any purpose is hereby granted without fee,
9 * provided that the above copyright notice appear in all copies and
10 * that both that copyright notice and this permission notice appear
11 * in supporting documentation. Mark of the Unicorn makes no
12 * representations about the suitability of this software for any
13 * purpose. It is provided "as is" without express or implied warranty.
15 ***********************************************************************************/
17 #include "LeakCheck.h"
18 #include "SortClass.h"
20 #if defined (EH_NEW_HEADERS)
28 #if defined (EH_NEW_IOSTREAMS)
31 # include <iostream.h>
35 // SortBuffer -- a buffer of SortClass objects that can be used to test sorting.
39 enum { kBufferSize = 100 };
41 SortClass* begin() { return items; }
42 const SortClass* begin() const { return items; }
43 SortClass* end() { return items + kBufferSize; }
44 const SortClass* end() const { return items + kBufferSize; }
46 // Sort each half of the buffer and reset the address of each element
47 // so that merge() can be tested for stability.
50 EH_STD::sort( begin(), begin() + ( end() - begin() )/2 );
51 EH_STD::sort( begin() + ( end() - begin() )/2, end() );
52 for ( SortClass* p = begin(); p != end(); p++ )
61 SortBuffer( const SortBuffer& rhs )
63 SortClass* q = begin();
64 for ( const SortClass* p = rhs.begin() ; p != rhs.end(); p++,q++ )
69 SortClass items[kBufferSize];
73 // less_by_reference -- a functor for comparing objects against a
77 struct less_by_reference
79 less_by_reference( const T& arg ) : fArg(arg) {}
80 bool operator()( const T& x ) const { return x < fArg; }
85 struct test_stable_partition
87 test_stable_partition( const SortBuffer& buf )
88 : orig( buf ), partitionPoint(SortClass::kRange / 2) {
89 gTestController.SetCurrentTestName("stable_partition()");
92 void operator()( SortBuffer& buf ) const
94 less_by_reference<SortClass> throw_cmp( partitionPoint );
96 SortClass* d = EH_STD::stable_partition( buf.begin(), buf.end(), throw_cmp );
98 // If we get here no exception occurred during the operation.
99 // Stop any potential failures that might occur during verification.
100 gTestController.CancelFailureCountdown();
102 // Prepare an array of counts of the occurrence of each value in
104 unsigned counts[SortClass::kRange];
105 EH_STD::fill_n( counts, (int)SortClass::kRange, 0 );
106 for ( const SortClass *q = orig.begin(); q != orig.end(); q++ )
107 counts[ q->value() ]++;
109 less_by_reference<TestClass> cmp( partitionPoint );
110 for ( const SortClass* p = buf.begin(); p != buf.end(); p++ )
112 // Check that adjacent items with the same value haven't been
113 // reordered. This could be a more thorough test.
114 if ( p != buf.begin() && p->value() == p[-1].value() )
115 EH_ASSERT( p->GetAddress() > p[-1].GetAddress() );
117 // Check that the partitioning worked.
118 EH_ASSERT( (p < d) == cmp( *p ) );
120 // Decrement the appropriate count for each value.
121 counts[ p->value() ]--;
124 // Check that the values were only rearranged, and none were lost.
125 for ( unsigned j = 0; j < SortClass::kRange; j++ )
126 EH_ASSERT( counts[j] == 0 );
130 const SortBuffer& orig;
131 SortClass partitionPoint;
134 void assert_sorted_version( const SortBuffer& orig, const SortBuffer& buf );
136 /*===================================================================================
137 assert_sorted_version
139 EFFECTS: Asserts that buf is a stable-sorted version of orig.
140 ====================================================================================*/
141 void assert_sorted_version( const SortBuffer& orig, const SortBuffer& buf )
143 // Stop any potential failures that might occur during verification.
144 gTestController.CancelFailureCountdown();
146 // Prepare an array of counts of the occurrence of each value in
148 unsigned counts[SortClass::kRange];
149 EH_STD::fill_n( counts, (int)SortClass::kRange, 0 );
150 for ( const SortClass *q = orig.begin(); q != orig.end(); q++ )
151 counts[ q->value() ]++;
153 // Check that each element is greater than the previous one, or if they are
154 // equal, that their order has been preserved.
155 for ( const SortClass* p = buf.begin(); p != buf.end(); p++ )
157 if ( p != buf.begin() )
158 EH_ASSERT( p->value() > p[-1].value()
159 || p->value() == p[-1].value() && p->GetAddress() > p[-1].GetAddress() );
160 // Decrement the appropriate count for each value.
161 counts[ p->value() ]--;
164 // Check that the values were only rearranged, and none were lost.
165 for ( unsigned j = 0; j < SortClass::kRange; j++ )
166 EH_ASSERT( counts[j] == 0 );
170 // The test operators
172 struct test_stable_sort_1
174 test_stable_sort_1( const SortBuffer& buf )
176 gTestController.SetCurrentTestName("stable_sort() #1");
179 void operator()( SortBuffer& buf ) const
181 EH_STD::stable_sort( buf.begin(), buf.end() );
182 assert_sorted_version( orig, buf );
186 const SortBuffer& orig;
189 struct test_stable_sort_2
191 test_stable_sort_2( const SortBuffer& buf )
193 gTestController.SetCurrentTestName("stable_sort() #2");
196 void operator()( SortBuffer& buf ) const
198 EH_STD::stable_sort( buf.begin(), buf.end(), EH_STD::less<SortClass>() );
199 assert_sorted_version( orig, buf );
203 const SortBuffer& orig;
206 struct test_inplace_merge_1
208 test_inplace_merge_1( SortBuffer& buf )
210 gTestController.SetCurrentTestName("inplace_merge #1()");
213 void operator()( SortBuffer& buf ) const
215 EH_STD::inplace_merge( buf.begin(), buf.begin() + ( buf.end() - buf.begin() )/2, buf.end() );
216 assert_sorted_version( orig, buf );
220 const SortBuffer& orig;
223 struct test_inplace_merge_2
225 test_inplace_merge_2( SortBuffer& buf )
227 gTestController.SetCurrentTestName("inplace_merge() #2");
230 void operator()( SortBuffer& buf ) const
232 EH_STD::inplace_merge( buf.begin(), buf.begin() + ( buf.end() - buf.begin() )/2, buf.end(),
233 EH_STD::less<SortClass>() );
234 assert_sorted_version( orig, buf );
238 const SortBuffer& orig;
244 mergeBuf.PrepareMerge();
246 EH_STD::cerr<<"EH test : testing algo.h"<<EH_STD::endl;
247 WeakCheck( mergeBuf, test_inplace_merge_1( mergeBuf ) );
248 WeakCheck( mergeBuf, test_inplace_merge_2( mergeBuf ) );
251 WeakCheck( buf, test_stable_sort_1( buf ) );
252 WeakCheck( buf, test_stable_sort_2( buf ) );
253 WeakCheck( buf, test_stable_partition( buf ) );