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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <IceUtil/Timer.h>
#include <IceUtil/Random.h>
#include <TestHelper.h>
#include <vector>
using namespace IceUtil;
using namespace std;
template<typename T>
struct TargetLess
{
bool operator()(const T& lhs, const T& rhs) const
{
if(lhs && rhs)
{
return *lhs < *rhs;
}
else
{
return !lhs && rhs;
}
}
};
class TestTask : public IceUtil::TimerTask, IceUtil::Monitor<IceUtil::Mutex>
{
public:
TestTask() : _count(0)
{
}
TestTask(const IceUtil::Time& scheduledTime) : _scheduledTime(scheduledTime), _count(0)
{
}
virtual void
runTimerTask()
{
Lock sync(*this);
++_count;
_run = IceUtil::Time::now(IceUtil::Time::Monotonic);
//cerr << "run: " << _scheduledTime.toMilliSeconds() << " " << _run.toMilliSeconds() << endl;
notifyAll();
}
virtual bool
operator<(const TestTask& r) const
{
return _scheduledTime < r._scheduledTime;
}
virtual bool
hasRun() const
{
Lock sync(*this);
return _run != IceUtil::Time();
}
int
getCount() const
{
Lock sync(*this);
return _count;
}
virtual IceUtil::Time
getRunTime() const
{
Lock sync(*this);
return _run;
}
IceUtil::Time
getScheduledTime() const
{
return _scheduledTime;
}
virtual void
waitForRun()
{
Lock sync(*this);
while(_run == IceUtil::Time())
{
if(!timedWait(IceUtil::Time::seconds(10)))
{
test(false); // Timeout.
}
}
}
void
clear()
{
_run = IceUtil::Time();
_count = 0;
}
private:
IceUtil::Time _run;
IceUtil::Time _scheduledTime;
int _count;
};
ICE_DEFINE_PTR(TestTaskPtr, TestTask);
class DestroyTask : public IceUtil::TimerTask, IceUtil::Monitor<IceUtil::Mutex>
{
public:
DestroyTask(const IceUtil::TimerPtr& timer) : _timer(timer), _run(false)
{
}
virtual void
runTimerTask()
{
Lock sync(*this);
_timer->destroy();
_run = true;
notify();
}
virtual void
waitForRun()
{
Lock sync(*this);
while(!_run)
{
if(!timedWait(IceUtil::Time::seconds(10)))
{
test(false); // Timeout.
}
}
}
private:
IceUtil::TimerPtr _timer;
bool _run;
};
ICE_DEFINE_PTR(DestroyTaskPtr, DestroyTask);
class Client : public Test::TestHelper
{
public:
void run(int argc, char* argv[]);
};
void
Client::run(int, char*[])
{
cout << "testing timer... " << flush;
{
IceUtil::TimerPtr timer = new IceUtil::Timer();
{
TestTaskPtr task = ICE_MAKE_SHARED(TestTask);
timer->schedule(task, IceUtil::Time());
task->waitForRun();
task->clear();
//
// Verify that the same task cannot be scheduled more than once.
//
timer->schedule(task, IceUtil::Time::milliSeconds(100));
try
{
timer->schedule(task, IceUtil::Time());
}
catch(const IceUtil::IllegalArgumentException&)
{
// Expected.
}
task->waitForRun();
task->clear();
}
{
TestTaskPtr task = ICE_MAKE_SHARED(TestTask);
test(!timer->cancel(task));
timer->schedule(task, IceUtil::Time::seconds(1));
test(!task->hasRun() && timer->cancel(task) && !task->hasRun());
test(!timer->cancel(task));
IceUtil::ThreadControl::sleep(IceUtil::Time::milliSeconds(1100));
test(!task->hasRun());
}
{
vector<TestTaskPtr> tasks;
IceUtil::Time start = IceUtil::Time::now(IceUtil::Time::Monotonic) + IceUtil::Time::milliSeconds(500);
for(int i = 0; i < 20; ++i)
{
tasks.push_back(ICE_MAKE_SHARED(TestTask, IceUtil::Time::milliSeconds(500 + i * 50)));
}
IceUtilInternal::shuffle(tasks.begin(), tasks.end());
vector<TestTaskPtr>::const_iterator p;
for(p = tasks.begin(); p != tasks.end(); ++p)
{
timer->schedule(*p, (*p)->getScheduledTime());
}
for(p = tasks.begin(); p != tasks.end(); ++p)
{
(*p)->waitForRun();
}
test(IceUtil::Time::now(IceUtil::Time::Monotonic) > start);
#ifdef ICE_CPP11_MAPPING
sort(tasks.begin(), tasks.end(), TargetLess<shared_ptr<TestTask>>());
#else
sort(tasks.begin(), tasks.end());
#endif
for(p = tasks.begin(); p + 1 != tasks.end(); ++p)
{
if((*p)->getRunTime() > (*(p + 1))->getRunTime())
{
test(false);
}
}
}
{
TestTaskPtr task = ICE_MAKE_SHARED(TestTask);
timer->scheduleRepeated(task, IceUtil::Time::milliSeconds(20));
IceUtil::ThreadControl::sleep(IceUtil::Time::milliSeconds(500));
test(task->hasRun());
test(task->getCount() > 1);
test(task->getCount() < 26);
test(timer->cancel(task));
int count = task->getCount();
IceUtil::ThreadControl::sleep(IceUtil::Time::milliSeconds(100));
test(count == task->getCount() || count + 1 == task->getCount());
}
timer->destroy();
}
cout << "ok" << endl;
cout << "testing timer destroy... " << flush;
{
{
IceUtil::TimerPtr timer = new IceUtil::Timer();
DestroyTaskPtr destroyTask = ICE_MAKE_SHARED(DestroyTask, timer);
timer->schedule(destroyTask, IceUtil::Time());
destroyTask->waitForRun();
try
{
timer->schedule(destroyTask, IceUtil::Time());
}
catch(const IceUtil::IllegalArgumentException&)
{
// Expected;
}
}
{
IceUtil::TimerPtr timer = new IceUtil::Timer();
TestTaskPtr testTask = ICE_MAKE_SHARED(TestTask);
timer->schedule(testTask, IceUtil::Time());
timer->destroy();
try
{
timer->schedule(testTask, IceUtil::Time());
}
catch(const IceUtil::IllegalArgumentException&)
{
// Expected;
}
}
}
cout << "ok" << endl;
}
DEFINE_TEST(Client)
|