2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
7 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
17 * @brief TW timer implementation TEMPLATE ONLY, do not compile directly
23 TW (make_internal_timer_handle) (u32 pool_index, u32 timer_id)
27 ASSERT (timer_id < TW_TIMERS_PER_OBJECT);
28 ASSERT (pool_index < (1 << (32 - LOG2_TW_TIMERS_PER_OBJECT)));
30 handle = (timer_id << (32 - LOG2_TW_TIMERS_PER_OBJECT)) | (pool_index);
35 timer_addhead (TWT (tw_timer) * pool, u32 head_index, u32 new_index)
37 TWT (tw_timer) * head = pool_elt_at_index (pool, head_index);
38 TWT (tw_timer) * old_first;
42 new = pool_elt_at_index (pool, new_index);
44 if (PREDICT_FALSE (head->next == head_index))
46 head->next = head->prev = new_index;
47 new->next = new->prev = head_index;
51 old_first_index = head->next;
52 old_first = pool_elt_at_index (pool, old_first_index);
54 new->next = old_first_index;
55 new->prev = old_first->prev;
56 old_first->prev = new_index;
57 head->next = new_index;
61 timer_remove (TWT (tw_timer) * pool, u32 index)
63 TWT (tw_timer) * elt = pool_elt_at_index (pool, index);
64 TWT (tw_timer) * next_elt, *prev_elt;
66 ASSERT (elt->user_handle != ~0);
68 next_elt = pool_elt_at_index (pool, elt->next);
69 prev_elt = pool_elt_at_index (pool, elt->prev);
71 next_elt->prev = elt->prev;
72 prev_elt->next = elt->next;
74 elt->prev = elt->next = ~0;
78 * @brief Start a Tw Timer
79 * @param tw_timer_wheel_t * tw timer wheel object pointer
80 * @param u32 pool_index user pool index, presumably for a tw session
81 * @param u32 timer_id app-specific timer ID. 4 bits.
82 * @param u32 interval timer interval in ticks
83 * @returns handle needed to cancel the timer
86 TW (tw_timer_start) (TWT (tw_timer_wheel) * tw, u32 pool_index, u32 timer_id,
89 #if TW_TIMER_WHEELS > 1
94 tw_timer_wheel_slot_t *ts;
99 pool_get (tw->timers, t);
100 t->next = t->prev = ~0;
101 #if TW_TIMER_WHEELS > 1
102 t->fast_ring_offset = ~0;
104 t->user_handle = TW (make_internal_timer_handle) (pool_index, timer_id);
106 fast_ring_offset = interval & TW_RING_MASK;
107 fast_ring_offset += tw->current_index[TW_TIMER_RING_FAST];
108 #if TW_TIMER_WHEELS > 1
109 carry = fast_ring_offset >= TW_SLOTS_PER_RING ? 1 : 0;
110 fast_ring_offset %= TW_SLOTS_PER_RING;
111 slow_ring_offset = (interval >> TW_RING_SHIFT) + carry;
113 /* Timer duration exceeds ~7 hrs? Oops */
114 ASSERT (slow_ring_offset < TW_SLOTS_PER_RING);
116 /* Timer expires more than 51.2 seconds from now? */
117 if (slow_ring_offset)
119 slow_ring_offset += tw->current_index[TW_TIMER_RING_SLOW];
120 slow_ring_offset %= TW_SLOTS_PER_RING;
122 /* We'll want the fast ring offset later... */
123 t->fast_ring_offset = fast_ring_offset;
124 ASSERT (t->fast_ring_offset < TW_SLOTS_PER_RING);
126 ts = &tw->w[TW_TIMER_RING_SLOW][slow_ring_offset];
128 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
130 return t - tw->timers;
133 fast_ring_offset %= TW_SLOTS_PER_RING;
134 ASSERT (interval < TW_SLOTS_PER_RING);
137 /* Timer expires less than one fast-ring revolution from now */
138 ts = &tw->w[TW_TIMER_RING_FAST][fast_ring_offset];
140 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
141 return t - tw->timers;
145 * @brief Stop a tw timer
146 * @param tw_timer_wheel_t * tw timer wheel object pointer
147 * @param u32 handle timer cancellation returned by tw_timer_start
149 void TW (tw_timer_stop) (TWT (tw_timer_wheel) * tw, u32 handle)
153 t = pool_elt_at_index (tw->timers, handle);
155 /* in case of idiotic handle (e.g. passing a listhead index) */
156 ASSERT (t->user_handle != ~0);
158 timer_remove (tw->timers, handle);
160 pool_put_index (tw->timers, handle);
164 * @brief Initialize a tw timer wheel template instance
165 * @param tw_timer_wheel_t * tw timer wheel object pointer
166 * @param void * expired_timer_callback. Passed a u32 * vector of
167 * expired timer handles.
168 * @param f64 timer_interval_in_seconds
171 TW (tw_timer_wheel_init) (TWT (tw_timer_wheel) * tw,
172 void *expired_timer_callback,
173 f64 timer_interval_in_seconds, u32 max_expirations)
176 tw_timer_wheel_slot_t *ts;
178 memset (tw, 0, sizeof (*tw));
179 tw->expired_timer_callback = expired_timer_callback;
180 tw->max_expirations = max_expirations;
181 if (timer_interval_in_seconds == 0.0)
183 clib_warning ("timer interval is zero");
186 tw->timer_interval = timer_interval_in_seconds;
187 tw->ticks_per_second = 1.0 / timer_interval_in_seconds;
189 for (ring = 0; ring < TW_TIMER_WHEELS; ring++)
191 for (slot = 0; slot < TW_SLOTS_PER_RING; slot++)
193 ts = &tw->w[ring][slot];
194 pool_get (tw->timers, t);
195 memset (t, 0xff, sizeof (*t));
196 t->next = t->prev = t - tw->timers;
197 ts->head_index = t - tw->timers;
203 * @brief Free a tw timer wheel template instance
204 * @param tw_timer_wheel_t * tw timer wheel object pointer
206 void TW (tw_timer_wheel_free) (TWT (tw_timer_wheel) * tw)
209 tw_timer_wheel_slot_t *ts;
210 TWT (tw_timer) * head, *t;
213 for (i = 0; i < TW_TIMER_WHEELS; i++)
215 for (j = 0; j < TW_SLOTS_PER_RING; j++)
218 head = pool_elt_at_index (tw->timers, ts->head_index);
219 next_index = head->next;
221 while (next_index != ts->head_index)
223 t = pool_elt_at_index (tw->timers, next_index);
224 next_index = t->next;
225 pool_put (tw->timers, t);
227 pool_put (tw->timers, head);
230 memset (tw, 0, sizeof (*tw));
234 * @brief Advance a tw timer wheel. Calls the expired timer callback
235 * as needed. This routine should be called once every timer_interval seconds
236 * @param tw_timer_wheel_t * tw timer wheel template instance pointer
237 * @param f64 now the current time, e.g. from vlib_time_now(vm)
239 u32 TW (tw_timer_expire_timers) (TWT (tw_timer_wheel) * tw, f64 now)
242 tw_timer_wheel_slot_t *ts;
243 TWT (tw_timer) * t, *head;
244 u32 fast_wheel_index;
246 u32 nexpirations, total_nexpirations;
247 #if TW_TIMER_WHEELS > 1
248 u32 slow_wheel_index;
251 /* Shouldn't happen */
252 if (PREDICT_FALSE (now < tw->next_run_time))
255 /* Number of ticks which have occurred */
256 nticks = tw->ticks_per_second * (now - tw->last_run_time);
260 /* Remember when we ran, compute next runtime */
261 tw->next_run_time = (now + tw->timer_interval);
263 total_nexpirations = 0;
264 for (i = 0; i < nticks; i++)
266 fast_wheel_index = tw->current_index[TW_TIMER_RING_FAST];
269 * If we've been around the fast ring once,
270 * process one slot in the slow ring before we handle
273 if (PREDICT_FALSE (fast_wheel_index == TW_SLOTS_PER_RING))
275 fast_wheel_index = tw->current_index[TW_TIMER_RING_FAST] = 0;
277 #if TW_TIMER_WHEELS > 1
278 tw->current_index[TW_TIMER_RING_SLOW]++;
279 tw->current_index[TW_TIMER_RING_SLOW] %= TW_SLOTS_PER_RING;
280 slow_wheel_index = tw->current_index[TW_TIMER_RING_SLOW];
282 ts = &tw->w[TW_TIMER_RING_SLOW][slow_wheel_index];
284 head = pool_elt_at_index (tw->timers, ts->head_index);
285 next_index = head->next;
287 /* Make slot empty */
288 head->next = head->prev = ts->head_index;
290 /* traverse slot, deal timers into fast ring */
291 while (next_index != head - tw->timers)
293 t = pool_elt_at_index (tw->timers, next_index);
294 next_index = t->next;
296 /* Remove from slow ring slot (hammer) */
297 t->next = t->prev = ~0;
298 ASSERT (t->fast_ring_offset < TW_SLOTS_PER_RING);
299 /* Add to fast ring */
300 ts = &tw->w[TW_TIMER_RING_FAST][t->fast_ring_offset];
301 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
306 /* Handle the fast ring */
307 vec_reset_length (tw->expired_timer_handles);
309 ts = &tw->w[TW_TIMER_RING_FAST][fast_wheel_index];
311 head = pool_elt_at_index (tw->timers, ts->head_index);
312 next_index = head->next;
314 /* Make slot empty */
315 head->next = head->prev = ts->head_index;
317 /* Construct vector of expired timer handles to give the user */
318 while (next_index != ts->head_index)
320 t = pool_elt_at_index (tw->timers, next_index);
321 next_index = t->next;
322 vec_add1 (tw->expired_timer_handles, t->user_handle);
323 pool_put (tw->timers, t);
326 /* If any timers expired, tell the user */
327 nexpirations = vec_len (tw->expired_timer_handles);
330 tw->expired_timer_callback (tw->expired_timer_handles);
331 total_nexpirations += nexpirations;
333 tw->current_index[TW_TIMER_RING_FAST]++;
336 if (total_nexpirations >= tw->max_expirations)
340 tw->last_run_time += i * tw->ticks_per_second;
341 return total_nexpirations;
345 * fd.io coding-style-patch-verification: ON
348 * eval: (c-set-style "gnu")