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
|
#include <ptlib.h>
#include "SortedListTest.h"
#include <ptclib/random.h>
PCREATE_PROCESS(SortedListTest);
PMutex coutMutex;
SortedListTest::SortedListTest():PProcess("Reitek S.p.A.", "SortedListTest", 0, 0, BetaCode, 0)
{
}
void SortedListTest::Main() {
PINDEX i;
for (i = 0; i < 10; i++) {
new DoSomeThing(i);
}
for (PINDEX j = i; j < i + 5; j++) {
new DoSomeThing2(j);
}
Suspend();
}
DoSomeThing::DoSomeThing(PINDEX _index)
:PThread(1000, AutoDeleteThread, NormalPriority, psprintf("DoSomeThing %u", _index)), index(_index) {
Resume();
}
void DoSomeThing::Main() {
list.AllowDeleteObjects();
PRandom rand(PRandom::Number());
PINDEX i;
for (i = 0; i < 5000; i++) {
PString * p = new PString(rand.Generate());
list.Append(p);
// coutMutex.Wait();
// cout << GetThreadName() << ": Added " << *p << " element to sorted list" << endl;
// coutMutex.Signal();
}
for (;;) {
PINDEX remove = rand.Generate() % (list.GetSize() + 1);
for (i = 0; i < remove; i++) {
PINDEX index = rand.Generate() % list.GetSize();
coutMutex.Wait();
cout << GetThreadName() << ": Removing element " << list[index] << " at index position " << index << endl;
coutMutex.Signal();
if (index%2)
list.Remove(&list[index]);
else
list.RemoveAt(index);
}
PINDEX add = rand.Generate() % 1000 + 300;
for (i = 0; i < add; i++) {
PString * p = new PString(rand.Generate());
coutMutex.Wait();
cout << GetThreadName() << ": Adding element " << *p << "to sorted list" << endl;
coutMutex.Signal();
list.Append(p);
}
}
}
PSafeString::PSafeString(const PString & _string):string(_string) {
}
void PSafeString::PrintOn(ostream &strm) const {
strm << string;
}
DoSomeThing2::DoSomeThing2(PINDEX _index)
:PThread(1000, AutoDeleteThread, NormalPriority, psprintf("DoSomeThing2 %u", _index)), index(_index) {
Resume();
}
void DoSomeThing2::Main() {
PRandom rand(PRandom::Number());
PINDEX i;
for (i = 0; i < 5000; i++) {
PSafeString * p = new PSafeString(rand.Generate());
list.Append(p);
// coutMutex.Wait();
// cout << GetThreadName() << ": Added " << *p << " element to sorted list" << endl;
// coutMutex.Signal();
}
for (;;) {
PINDEX remove = rand.Generate() % (list.GetSize() + 1);
for (i = 0; i < remove; i++) {
PINDEX index = rand.Generate() % list.GetSize();
coutMutex.Wait();
PSafePtr<PSafeString> str = list.GetWithLock(index, PSafeReference);
cout << GetThreadName() << ": Removing element " << *str << " at index position " << index << endl;
coutMutex.Signal();
list.Remove(&(*str));
}
PINDEX add = rand.Generate() % 1000 + 300;
for (i = 0; i < add; i++) {
PSafeString * p = new PSafeString(rand.Generate());
coutMutex.Wait();
cout << GetThreadName() << ": Adding element " << *p << "to sorted list" << endl;
coutMutex.Signal();
list.Append(p);
}
list.DeleteObjectsToBeRemoved();
}
}
|