Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
Ratas
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Ratas
Commits
85dacab1
Commit
85dacab1
authored
Jul 18, 2016
by
Juho Snellman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more unit tests specifically probing the special nature of wheel slot 0
parent
35bfedfa
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
106 additions
and
29 deletions
+106
-29
src/test/test_basic.cc
src/test/test_basic.cc
+100
-24
src/timer-wheel.h
src/timer-wheel.h
+6
-5
No files found.
src/test/test_basic.cc
View file @
85dacab1
...
...
@@ -4,7 +4,37 @@
#include "../timer-wheel.h"
void
test_single_timer_no_hierarchy
()
{
#define TEST(fun) \
do { \
if (fun()) { \
printf("[OK] %s\n", #fun); \
} else { \
ok = false; \
printf("[FAILED] %s\n", #fun); \
} \
} while (0)
#define EXPECT(expr) \
do { \
if (!(expr)) { \
printf("%s:%d: Expect failed: %s\n", \
__FILE__, __LINE__, #expr); \
return false; \
} \
} while (0)
#define EXPECT_INTEQ(actual, expect) \
do { \
if (expect != actual) { \
printf("%s:%d: Expect failed, wanted %d" \
" got %d\n", \
__FILE__, __LINE__, \
expect, actual); \
return false; \
} \
} while (0)
bool
test_single_timer_no_hierarchy
()
{
typedef
std
::
function
<
void
()
>
Callback
;
HierarchicalTimerWheel
<
Callback
>
timers
;
int
count
=
0
;
...
...
@@ -12,61 +42,107 @@ void test_single_timer_no_hierarchy() {
&
timers
);
timers
.
advance
(
10
);
assert
(
count
==
0
);
assert
(
!
timer
.
active
());
EXPECT_INTEQ
(
count
,
0
);
EXPECT
(
!
timer
.
active
());
timers
.
schedule
(
&
timer
,
5
);
assert
(
timer
.
active
());
EXPECT
(
timer
.
active
());
timers
.
advance
(
10
);
assert
(
count
==
1
);
EXPECT_INTEQ
(
count
,
1
);
timers
.
advance
(
10
);
assert
(
count
==
1
);
EXPECT_INTEQ
(
count
,
1
);
timers
.
schedule
(
&
timer
,
5
);
timers
.
advance
(
10
);
assert
(
count
==
2
);
EXPECT_INTEQ
(
count
,
2
);
timers
.
schedule
(
&
timer
,
5
);
timer
.
cancel
();
assert
(
!
timer
.
active
());
EXPECT
(
!
timer
.
active
());
timers
.
advance
(
10
);
assert
(
count
==
2
);
EXPECT_INTEQ
(
count
,
2
);
// Test wraparound
timers
.
advance
(
250
);
timers
.
schedule
(
&
timer
,
5
);
timers
.
advance
(
10
);
assert
(
count
==
3
);
EXPECT_INTEQ
(
count
,
3
);
return
true
;
}
void
test_single_timer_hierarchy
()
{
bool
test_single_timer_hierarchy
()
{
typedef
std
::
function
<
void
()
>
Callback
;
HierarchicalTimerWheel
<
Callback
>
timers
;
int
count
=
0
;
TimerEvent
<
Callback
>
timer
([
&
count
]
()
{
++
count
;
},
&
timers
);
timers
.
advance
(
10
);
assert
(
count
==
0
);
EXPECT_INTEQ
(
count
,
0
);
// Schedule timer one layer up.
timers
.
schedule
(
&
timer
,
261
);
timers
.
advance
(
260
);
assert
(
count
==
0
);
// Schedule timer one layer up (make sure timer ends up in slot 0 once
// promoted to the innermost wheel, since that's a special case).
timers
.
schedule
(
&
timer
,
256
);
timers
.
advance
(
255
);
EXPECT_INTEQ
(
count
,
0
);
timers
.
advance
(
1
);
assert
(
count
==
1
);
EXPECT_INTEQ
(
count
,
1
);
timers
.
schedule
(
&
timer
,
256
*
4
);
timers
.
advance
(
256
*
4
-
1
);
assert
(
count
==
1
);
// Then schedule one that ends up in some other slot
timers
.
schedule
(
&
timer
,
257
);
timers
.
advance
(
256
);
EXPECT_INTEQ
(
count
,
1
);
timers
.
advance
(
1
);
assert
(
count
==
2
);
EXPECT_INTEQ
(
count
,
2
);
// Schedule multiple rotations ahead in time, to slot 0.
timers
.
schedule
(
&
timer
,
256
*
4
-
1
);
timers
.
advance
(
256
*
4
-
2
);
EXPECT_INTEQ
(
count
,
2
);
timers
.
advance
(
1
);
EXPECT_INTEQ
(
count
,
3
);
// Schedule multiple rotations ahead in time, to non-0 slot. (Do this
// twice, once starting from slot 0, once starting from slot 5);
for
(
int
i
=
0
;
i
<
2
;
++
i
)
{
timers
.
schedule
(
&
timer
,
256
*
4
+
5
);
timers
.
advance
(
256
*
4
+
4
);
EXPECT_INTEQ
(
count
,
3
+
i
);
timers
.
advance
(
1
);
EXPECT_INTEQ
(
count
,
4
+
i
);
}
return
true
;
}
bool
test_single_timer_random
()
{
typedef
std
::
function
<
void
()
>
Callback
;
HierarchicalTimerWheel
<
Callback
>
timers
;
int
count
=
0
;
TimerEvent
<
Callback
>
timer
([
&
count
]
()
{
++
count
;
},
&
timers
);
for
(
int
i
=
0
;
i
<
10000
;
++
i
)
{
int
len
=
rand
()
%
20
;
int
r
=
1
+
rand
()
%
(
1
<<
len
);
timers
.
schedule
(
&
timer
,
r
);
timers
.
advance
(
r
-
1
);
EXPECT_INTEQ
(
count
,
i
);
timers
.
advance
(
1
);
EXPECT_INTEQ
(
count
,
i
+
1
);
}
return
true
;
}
int
main
(
void
)
{
test_single_timer_no_hierarchy
();
test_single_timer_hierarchy
();
bool
ok
=
true
;
TEST
(
test_single_timer_no_hierarchy
);
TEST
(
test_single_timer_hierarchy
);
TEST
(
test_single_timer_random
);
// Test canceling timer from within timer
// Test rescheduling timer from within timer
return
ok
?
0
:
1
;
}
src/timer-wheel.h
View file @
85dacab1
...
...
@@ -131,12 +131,12 @@ public:
void
advance
(
Timestamp
delta
)
{
while
(
delta
--
)
{
now_
++
;
size_t
slot_index
=
now_
&
(
NUM_SLOTS
-
1
)
;
size_t
slot_index
=
now_
&
MASK
;
auto
slot
=
&
slots_
[
slot_index
];
while
(
slot
->
events
())
{
auto
event
=
slot
->
pop_event
();
if
(
down_
)
{
assert
((
down_
->
now_
&
(
NUM_SLOTS
-
1
)
)
==
0
);
assert
((
down_
->
now_
&
MASK
)
==
0
);
down_
->
schedule_absolute
(
event
,
event
->
scheduled_at
());
}
else
{
event
->
execute
();
...
...
@@ -154,10 +154,10 @@ public:
}
if
(
delta
>=
NUM_SLOTS
)
{
return
up_
->
schedule
(
event
,
delta
>>
WIDTH_BITS
);
return
up_
->
schedule
(
event
,
(
delta
+
(
now_
&
MASK
))
>>
WIDTH_BITS
);
}
size_t
slot_index
=
(
now_
+
delta
)
&
(
NUM_SLOTS
-
1
)
;
size_t
slot_index
=
(
now_
+
delta
)
&
MASK
;
auto
slot
=
&
slots_
[
slot_index
];
slot
->
push_event
(
event
);
}
...
...
@@ -177,7 +177,7 @@ private:
void
schedule_absolute
(
TimerEvent
<
CBType
>*
event
,
Timestamp
absolute
)
{
Timestamp
delta
;
delta
=
absolute
-
now_
;
assert
(
absolute
>
now_
);
assert
(
absolute
>
=
now_
);
assert
(
delta
<
NUM_SLOTS
);
if
(
delta
==
0
)
{
if
(
!
down_
)
{
...
...
@@ -195,6 +195,7 @@ private:
static
const
int
WIDTH_BITS
=
8
;
static
const
int
NUM_SLOTS
=
1
<<
WIDTH_BITS
;
static
const
int
MASK
=
(
NUM_SLOTS
-
1
);
TimerWheelSlot
<
CBType
>
slots_
[
NUM_SLOTS
];
HierarchicalTimerWheel
<
CBType
>*
up_
;
HierarchicalTimerWheel
<
CBType
>*
down_
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment