1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
|
//=============================================================================
/**
* @file Map_Test.cpp
*
* $Id: Map_Test.cpp 93638 2011-03-24 13:16:05Z johnnyw $
*
* This is a simple test of the <ACE_Map> and illustrates how to
* use the forward and reverse iterators.
*
*
* @author Irfan Pyarali <irfan@cs.wustl.edu>
*/
//=============================================================================
#include "test_config.h"
#include "Map_Test.h"
#include "ace/Map_T.h"
#include "ace/Profile_Timer.h"
#undef THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
#define THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL(X) \
((X) \
? static_cast<void>(0) \
: ACE_VERSIONED_NAMESPACE_NAME::__ace_assert(__FILE__, __LINE__, ACE_TEXT_CHAR_TO_TCHAR (#X)))
// Value type.
typedef size_t VALUE;
// Generic map type.
typedef ACE_Map<KEY, VALUE> TEST_MAP;
// Manager Manager adapter.
typedef ACE_Map_Manager_Adapter<KEY, VALUE, Key_Generator> MAP_MANAGER_ADAPTER;
// Hash Manager Manager adapter.
typedef ACE_Hash_Map_Manager_Ex_Adapter<KEY, VALUE, Hash_Key, ACE_Equal_To<KEY>, Key_Generator> HASH_MAP_MANAGER_ADAPTER;
// Active Manager Manager adapter.
typedef ACE_Active_Map_Manager_Adapter<KEY, VALUE, Key_Adapter> ACTIVE_MAP_MANAGER_ADAPTER;
static void
functionality_test (TEST_MAP &map,
size_t iterations)
{
size_t counter;
VALUE i;
KEY *original_keys = new KEY[iterations];
KEY *modified_keys = new KEY[iterations];
// Setup the keys to have some initial data.
for (i = 0;
i < iterations;
++i)
{
original_keys[i].size (sizeof i / sizeof (KEY::TYPE));
ACE_OS::memcpy (&original_keys[i][0],
&i,
sizeof i);
}
// Make a copy of the keys so that we can compare with the original
// keys later.
for (i = 0; i < iterations; ++i)
{
modified_keys[i] = original_keys[i];
}
// Add to the map, allowing keys to be modified.
counter = 0;
for (i = 0; i < iterations; ++i)
{
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.bind_modify_key (i, modified_keys[i]) == 0);
++counter;
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.current_size () == counter);
}
// Forward iteration...
{
counter = 0;
TEST_MAP::iterator end = map.end ();
for (TEST_MAP::iterator iter = map.begin ();
iter != end;
++iter, ++counter)
{
TEST_MAP::value_type entry = *iter;
// Recover original key.
KEY original_key;
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.recover_key (entry.first (),
original_key) == 0);
// Make sure recovering keys work.
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (original_keys[entry.second ()] == original_key);
// Obtain value from key.
VALUE original_value;
ACE_OS::memcpy (&original_value,
&original_key[0],
sizeof original_value);
// Debugging info.
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%d|%d|%d)"),
counter,
original_value,
entry.second ()));
}
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("\n")));
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (counter == iterations);
}
// Reverse iteration...
{
counter = iterations;
TEST_MAP::reverse_iterator end = map.rend ();
for (TEST_MAP::reverse_iterator iter = map.rbegin ();
iter != end;
++iter)
{
--counter;
TEST_MAP::value_type entry = *iter;
// Recover original key.
KEY original_key;
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.recover_key (entry.first (),
original_key) == 0);
// Make sure recovering keys work.
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (original_keys[entry.second ()] == original_key);
// Obtain value from key.
VALUE original_value;
ACE_OS::memcpy (&original_value,
&original_key[0],
sizeof original_value);
// Debugging info.
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%d|%d|%d)"),
counter,
original_value,
entry.second ()));
}
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("\n")));
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (counter == 0);
}
// Search using the modified keys.
for (i = 0; i < iterations; ++i)
{
VALUE j;
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.find (modified_keys[i], j) != -1);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (i == j);
}
// Rmoved keys from map.
counter = iterations;
for (i = 0; i < iterations; ++i)
{
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.unbind (modified_keys[i]) != -1);
--counter;
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.current_size () == counter);
}
// Cleanup.
delete[] modified_keys;
delete[] original_keys;
}
static void
insert_test (TEST_MAP &map,
size_t iterations,
KEY *keys)
{
// Add to the map, allowing keys to be created by the map.
size_t counter = 0;
for (VALUE i = 0; i < iterations; ++i)
{
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.bind_create_key (i, keys[i]) == 0);
++counter;
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.current_size () == counter);
}
}
static void
find_test (TEST_MAP &map,
size_t iterations,
KEY *keys)
{
// Find system generated keys.
for (VALUE i = 0; i < iterations; ++i)
{
VALUE j;
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.find (keys[i], j) != -1);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (i == j);
}
}
static void
unbind_test (TEST_MAP &map,
size_t iterations,
KEY *keys)
{
// Remove system generated keys.
size_t counter = iterations;
for (VALUE i = 0; i < iterations; ++i)
{
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.unbind (keys[i]) != -1);
--counter;
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (map.current_size () == counter);
}
}
static void
performance_test (void (*ptf) (TEST_MAP &, size_t, KEY *),
TEST_MAP &map,
size_t iterations,
KEY *keys,
size_t table_size,
const ACE_TCHAR *test_name)
{
ACE_Profile_Timer timer;
timer.start ();
(*ptf) (map, iterations, keys);
timer.stop ();
ACE_Profile_Timer::ACE_Elapsed_Time et;
timer.elapsed_time (et);
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("time to run %s of size %d for %d iterations\n"),
test_name,
table_size,
iterations));
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("real time = %f secs, user time = %f secs, system time = %f secs\n"),
et.real_time,
et.user_time,
et.system_time));
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("time per call = %f usecs\n"),
(et.real_time / ACE_timer_t (iterations)) * 1000000));
}
int
run_main (int argc, ACE_TCHAR *argv[])
{
ACE_START_TEST (ACE_TEXT ("Map_Test"));
ACE_LOG_MSG->clr_flags (ACE_Log_Msg::VERBOSE_LITE);
size_t table_size = ACE_MAX_ITERATIONS / 2;
size_t iterations = ACE_MAX_ITERATIONS;
size_t functionality_tests = 1;
if (argc > 1)
functionality_tests = ACE_OS::atoi (argv[1]);
if (argc > 2)
table_size = ACE_OS::atoi (argv[2]);
if (argc > 3)
iterations = ACE_OS::atoi (argv[3]);
MAP_MANAGER_ADAPTER map1 (table_size);
HASH_MAP_MANAGER_ADAPTER map2 (table_size);
ACTIVE_MAP_MANAGER_ADAPTER map3 (table_size);
if (functionality_tests)
{
// Functionality test of the maps.
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\nMap Manager functionality test\n")));
functionality_test (map1, iterations);
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\nHash Map Manager functionality test\n")));
functionality_test (map2, iterations);
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\nActive Map Manager functionality test\n")));
functionality_test (map3, iterations);
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\n")));
}
// Performance test of the maps.
KEY *keys = new KEY[iterations];
// Map Manager
performance_test (&insert_test,
map1,
iterations,
keys,
table_size,
ACE_TEXT ("Map Manager (insert test)"));
performance_test (&find_test,
map1,
iterations,
keys,
table_size,
ACE_TEXT ("Map Manager (find test)"));
performance_test (&unbind_test,
map1,
iterations,
keys,
table_size,
ACE_TEXT ("Map Manager (unbind test)"));
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\n")));
// Hash Map Manager
performance_test (&insert_test,
map2,
iterations,
keys,
table_size,
ACE_TEXT ("Hash Map Manager (insert test)"));
performance_test (&find_test,
map2,
iterations,
keys,
table_size,
ACE_TEXT ("Hash Map Manager (find test)"));
performance_test (&unbind_test,
map2,
iterations,
keys,
table_size,
ACE_TEXT ("Hash Map Manager (unbind test)"));
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\n")));
// Active Map Manager
performance_test (&insert_test,
map3,
iterations,
keys,
table_size,
ACE_TEXT ("Active Map Manager (insert test)"));
performance_test (&find_test,
map3,
iterations,
keys,
table_size,
ACE_TEXT ("Active Map Manager (find test)"));
performance_test (&unbind_test,
map3,
iterations,
keys,
table_size,
ACE_TEXT ("Active Map Manager (unbind test)"));
delete[] keys;
ACE_LOG_MSG->set_flags (ACE_Log_Msg::VERBOSE_LITE);
ACE_END_TEST;
return 0;
}
#undef THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
|