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
|
//=============================================================================
/**
* @file Collection_Test.cpp
*
* This is a simple test of the ACE collection classes and its
* iterators.
*
* @author Irfan Pyarali <irfan@cs.wustl.edu>
*/
//=============================================================================
#include "test_config.h"
#include "ace/Containers.h"
#include "Collection_Test.h"
UglyThing::UglyThing (void* alloc, deletion_func dfunc)
: alloc_ (alloc)
, dfunc_ (dfunc)
{
}
bool
UglyThing::operator== (const UglyThing& r) const
{
return this->alloc_ == r.alloc_;
}
using DATA = UglyThing;
using UNBOUNDED_SET = ACE_Unbounded_Set<DATA>;
using UNBOUNDED_SET_ITERATOR = ACE_Unbounded_Set_Iterator<DATA>;
using UNBOUNDED_SET_CONST_ITERATOR = ACE_Unbounded_Set_Const_Iterator<DATA>;
using ARRAY_DATA = int;
using ARRAY = ACE_Array<ARRAY_DATA>;
using ARRAY_ITERATOR = ACE_Array_Iterator<ARRAY_DATA>;
void iterate_const(const UNBOUNDED_SET& set)
{
{
UNBOUNDED_SET_CONST_ITERATOR iterator (set);
while (!iterator.done ())
{
DATA *data = 0;
iterator.next (data);
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%x,%x\n"),
data->alloc_, (void *) data->dfunc_));
DATA data_second = *iterator;
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%x,%x\n"),
data_second.alloc_, (void *) data_second.dfunc_));
iterator.advance ();
}
}
}
struct DummyFunctor
{
int operator() () { return 0; }
};
int
run_main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("Collection_Test"));
deletion_func NO_DFUNC = (deletion_func)0;
DummyFunctor dummyfunc;
{
UNBOUNDED_SET unbounded_set;
unbounded_set.insert (UglyThing ((void*)&unbounded_set, NO_DFUNC));
unbounded_set.insert (UglyThing ((void*)&dummyfunc, NO_DFUNC));
{
for (UNBOUNDED_SET::iterator iterator = unbounded_set.begin ();
iterator != unbounded_set.end ();
++iterator)
{
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%x,%x\n"),
(*iterator).alloc_, (void *) (*iterator).dfunc_));
}
}
unbounded_set.insert (UglyThing (0, NO_DFUNC));
unbounded_set.remove (UglyThing ((void*)&dummyfunc, NO_DFUNC));
{
UNBOUNDED_SET_ITERATOR iterator (unbounded_set);
while (!iterator.done ())
{
DATA *data = 0;
iterator.next (data);
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%x,%x\n"),
data->alloc_, (void *) data->dfunc_));
iterator.advance ();
}
}
iterate_const (unbounded_set);
unbounded_set.reset ();
{
DATA *data;
UNBOUNDED_SET_ITERATOR i (unbounded_set);
while (i.next (data) != 0)
{
ACE_DEBUG ((LM_DEBUG, "%x,%x\n", data->alloc_, (void *) data->dfunc_));
i.advance ();
}
}
iterate_const (unbounded_set);
}
{
ARRAY array;
}
{
ARRAY array (0);
}
{
ARRAY array1;
array1.size (2);
array1[0] = 4;
array1[1] = 4;
ARRAY array2 (2, 4);
ARRAY array3 (array2);
ARRAY array4;
array4 = array2;
ACE_TEST_ASSERT (array1 == array2);
ACE_TEST_ASSERT (array1 == array3);
ACE_TEST_ASSERT (array1 == array4);
{
for (size_t i = 0;
i != array1.size ();
++i)
{
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%d\n"),
array1[i]));
ACE_TEST_ASSERT (array1[i] == 4);
}
}
{
ARRAY_ITERATOR iterator (array1);
while (!iterator.done ())
{
ARRAY_DATA *data = 0;
iterator.next (data);
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%d\n"),
(*data)));
ACE_TEST_ASSERT (*data == 4);
iterator.advance ();
}
}
}
ACE_END_TEST;
return 0;
}
|