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
285
286
287
288
|
#ifndef H_TIMER_WHEEL_H
#define H_TIMER_WHEEL_H
/*
Hanoh Haim
Cisco Systems, Inc.
*/
/*
Copyright (c) 2015-2015 Cisco Systems, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <common/basic_utils.h>
#include <stdint.h>
#include <assert.h>
#include <rte_prefetch.h>
#include "pal_utl.h"
#include "mbuf.h"
typedef enum {
RC_HTW_OK = 0,
RC_HTW_ERR_NO_RESOURCES = -1,
RC_HTW_ERR_TIMER_IS_ON = -2,
RC_HTW_ERR_NO_LOG2 = -3,
RC_HTW_ERR_MAX_WHEELS = -4,
RC_HTW_ERR_NOT_ENOUGH_BITS = -5,
} RC_HTW_t;
class CHTimerWheelLink {
public:
CHTimerWheelLink * m_next;
CHTimerWheelLink * m_prev;
public:
void reset(){
m_next = 0;
m_prev = 0;
}
void set_self(){
m_next=this;
m_prev=this;
}
bool is_self(){
if (m_next == this) {
return (true);
}
return (false);
}
void append(CHTimerWheelLink * obj){
obj->m_next = this;
obj->m_prev = m_prev;
m_prev->m_next = obj;
m_prev = obj;
}
void detach(void){
#ifdef HTW_DEBUG
assert(m_next);
#endif
CHTimerWheelLink *next;
next = m_next;
next->m_prev = m_prev;
m_prev->m_next = next;
m_next=0;
m_prev=0;
}
} ;
typedef uint32_t htw_ticks_t;
class CHTimerObj : public CHTimerWheelLink {
public:
inline void reset(void){
CHTimerWheelLink::reset();
m_ticks_left=0;
m_wheel=0;
}
inline bool is_running(){
if (m_next != 0) {
return (true);
}
return (false);
}
void Dump(FILE *fd);
public:
/* CACHE LINE 0*/
htw_ticks_t m_ticks_left; /* abs ticks left */
uint32_t m_wheel;
uint32_t m_pad[2]; /* aging time in ticks */
} ;
typedef void (*htw_on_tick_cb_t)(void *userdata,CHTimerObj *tmr);
class CHTimerOneWheel {
public:
CHTimerOneWheel(){
reset();
}
RC_HTW_t Create(uint32_t wheel_size);
RC_HTW_t Delete();
inline RC_HTW_t timer_start(CHTimerObj *tmr,
htw_ticks_t ticks){
#ifdef HTW_DEBUG
if ( tmr->is_running() ){
return( RC_HTW_ERR_TIMER_IS_ON);
}
#endif
append( tmr, ticks);
return (RC_HTW_OK);
}
RC_HTW_t timer_stop (CHTimerObj *tmr);
inline bool check_timer_tick_cycle(){
return (m_tick_done);
}
inline bool timer_tick(){
m_ticks++;
m_bucket_index++;
if (m_tick_done) {
m_tick_done=false;
}
if ( m_bucket_index == m_wheel_size ) {
m_bucket_index = 0;
m_tick_done=true;
}
m_active_bucket = &m_buckets[m_bucket_index];
return (m_tick_done);
}
inline CHTimerObj * pop_event(void) {
if ( m_active_bucket->is_self() ){
return ((CHTimerObj *)0);
}
CHTimerWheelLink * first = m_active_bucket->m_next;
rte_prefetch0(first->m_next);
first->detach();
return ((CHTimerObj *)first);
}
public:
void dump_link_list(uint32_t bucket_index,
void *userdata,
htw_on_tick_cb_t cb,
FILE *fd);
uint32_t get_bucket_index(void){
return ( m_bucket_index);
}
private:
inline void reset(void){
m_buckets=0;
m_active_bucket=0;
m_ticks=0;
m_wheel_size=0;
m_wheel_mask=0;
m_bucket_index=0;
m_tick_done=false;
}
inline void append (CHTimerObj *tmr,
uint32_t ticks) {
CHTimerWheelLink *cur;
uint32_t cursor = ((m_bucket_index + ticks) & m_wheel_mask);
cur = &m_buckets[cursor];
cur->append((CHTimerWheelLink *)tmr);
}
private:
CHTimerWheelLink * m_buckets;
CHTimerWheelLink * m_active_bucket; /* point to the current bucket m_buckets[m_bucket_index] */
htw_ticks_t m_ticks;
uint32_t m_wheel_size; //e.g. 256
uint32_t m_wheel_mask; // 256-1
uint32_t m_bucket_index;
bool m_tick_done;
};
#define MAX_H_TIMER_WHEELS (4)
class CHTimerWheel {
public:
CHTimerWheel(){
reset();
}
RC_HTW_t Create(uint32_t wheel_size,
uint32_t num_wheels);
RC_HTW_t Delete();
inline RC_HTW_t timer_start(CHTimerObj *tmr,
htw_ticks_t ticks){
m_total_events++;
if (likely(ticks<m_wheel_size)) {
tmr->m_ticks_left=0;
tmr->m_wheel=0;
return (m_timer_w[0].timer_start(tmr,ticks));
}
return ( timer_start_rest(tmr, ticks));
}
RC_HTW_t timer_stop (CHTimerObj *tmr);
void on_tick(void *userdata,htw_on_tick_cb_t cb);
bool is_any_events_left(){
return(m_total_events>0?true:false);
}
private:
void reset(void);
RC_HTW_t timer_start_rest(CHTimerObj *tmr,
htw_ticks_t ticks);
private:
htw_ticks_t m_ticks;
uint32_t m_num_wheels;
uint32_t m_wheel_size; //e.g. 256
uint32_t m_wheel_mask; //e.g 256-1
uint32_t m_wheel_shift; // e.g 8
uint64_t m_total_events;
CHTimerOneWheel m_timer_w[MAX_H_TIMER_WHEELS];
} ;
#endif
|