-
Notifications
You must be signed in to change notification settings - Fork 1
/
WaitableTimer.cpp
68 lines (53 loc) · 1.72 KB
/
WaitableTimer.cpp
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
//---------------------------------------------------------------------------
//#include <vcl.h>
//#pragma hdrstop
#include <System.SysUtils.hpp>
#include "WaitableTimer.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
TWaitableTimer::TWaitableTimer( bool ManualReset )
{
handle_ = ::CreateWaitableTimer( 0, ManualReset, 0 );
if ( !handle_ ) {
RaiseLastOSError();
}
}
//---------------------------------------------------------------------------
TWaitableTimer::~TWaitableTimer() /* throw() */
{
try {
Stop();
}
catch ( ... ) {
::CloseHandle( handle_ );
}
}
//---------------------------------------------------------------------------
void TWaitableTimer::SetPeriod( __int64 Time100NSTicks, LONG Period )
{
LARGE_INTEGER DueTime;
DueTime.QuadPart = Time100NSTicks;
if ( !::SetWaitableTimer( handle_, &DueTime, Period, 0, 0, false ) ) {
RaiseLastOSError();
}
}
//---------------------------------------------------------------------------
void TWaitableTimer::Stop()
{
if ( !::CancelWaitableTimer( handle_ ) ) {
RaiseLastOSError();
}
}
//---------------------------------------------------------------------------
TWaitResult TWaitableTimer::WaitFor( DWORD Timeout ) const
{
DWORD Index;
switch ( ::WaitForMultipleObjectsEx( 1, &handle_, true, Timeout, false ) ) {
case WAIT_ABANDONED: return wrAbandoned;
case WAIT_OBJECT_0: return wrSignaled;
case WAIT_TIMEOUT: return wrTimeout;
case WAIT_FAILED: return wrError;
default: return wrError;
}
}
//---------------------------------------------------------------------------