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 #error do not include tw_timer_template.h directly
20 #include <vppinfra/clib.h>
21 #include <vppinfra/pool.h>
24 #define _twt(a,b) a##b##_t
25 #define __twt(a,b) _twt(a,b)
26 #define TWT(a) __twt(a,TW_SUFFIX)
29 #define __tw(a,b) _tw(a,b)
30 #define TW(a) __tw(a,TW_SUFFIX)
34 @brief TW timer template header file, do not compile directly
36 Instantiation of tw_timer_template.h generates named structures to
37 implement specific timer wheel geometries. Choices include: number of
38 timer wheels (currently, 1 or 2), number of slots per ring (a power of
39 two), and the number of timers per "object handle".
41 Internally, user object/timer handles are 32-bit integers, so if one
42 selects 16 timers/object (4 bits), the resulting timer wheel handle is
43 limited to 2**28 objects.
45 Here are the specific settings required to generate a single 2048 slot
46 wheel which supports 2 timers per object:
48 #define TW_TIMER_WHEELS 1
49 #define TW_SLOTS_PER_RING 2048
50 #define TW_RING_SHIFT 11
51 #define TW_RING_MASK (TW_SLOTS_PER_RING -1)
52 #define TW_TIMERS_PER_OBJECT 2
53 #define LOG2_TW_TIMERS_PER_OBJECT 1
54 #define TW_SUFFIX _2t_1w_2048sl
56 See tw_timer_2t_1w_2048sl.h for a complete
59 tw_timer_template.h is not intended to be #included directly. Client
60 codes can include multiple timer geometry header files, although
61 extreme caution would required to use the TW and TWT macros in such a
66 Initialize a two-timer, single 2048-slot wheel w/ a 1-second
69 tw_timer_wheel_init_2t_1w_2048sl (&tm->single_wheel,
70 expired_timer_single_callback,
71 1.0 / * timer interval * / );
75 handle = tw_timer_start_2t_1w_2048sl (&tm->single_wheel, elt_index,
76 [0 | 1] / * timer id * / ,
77 expiration_time_in_u32_ticks);
81 tw_timer_stop_2t_1w_2048sl (&tm->single_wheel, handle);
83 Expired timer callback:
86 expired_timer_single_callback (u32 * expired_timers)
89 u32 pool_index, timer_id;
90 tw_timer_test_elt_t *e;
91 tw_timer_test_main_t *tm = &tw_timer_test_main;
93 for (i = 0; i < vec_len (expired_timers);
95 pool_index = expired_timers[i] & 0x7FFFFFFF;
96 timer_id = expired_timers[i] >> 31;
98 ASSERT (timer_id == 1);
100 e = pool_elt_at_index (tm->test_elts, pool_index);
102 if (e->expected_to_expire != tm->single_wheel.current_tick)
104 fformat (stdout, "[%d] expired at %d not %d\n",
105 e - tm->test_elts, tm->single_wheel.current_tick,
106 e->expected_to_expire);
108 pool_put (tm->test_elts, e);
115 /** next, previous pool indices */
118 #if TW_TIMER_WHEELS > 0
119 /** fast ring offset, only valid in the slow ring */
120 u16 fast_ring_offset;
123 /** user timer handle */
128 * These structures ar used by all geometries,
129 * so they need a private #include block...
131 #ifndef __defined_tw_timer_wheel_slot__
132 #define __defined_tw_timer_wheel_slot__
135 /** Listhead of timers which expire in this interval */
137 } tw_timer_wheel_slot_t;
140 /** Fast timer ring ID */
142 /** Slow timer ring ID */
145 #endif /* __defined_tw_timer_wheel_slot__ */
150 TWT (tw_timer) * timers;
152 /** Next time the wheel should run */
155 /** Last time the wheel ran */
158 /** Timer ticks per second */
159 f64 ticks_per_second;
161 /** Timer interval, also needed to avoid fp divide in speed path */
167 /** current wheel indices */
168 u32 current_index[TW_TIMER_WHEELS];
171 tw_timer_wheel_slot_t w[TW_TIMER_WHEELS][TW_SLOTS_PER_RING];
173 /** expired timer callback, receives a vector of handles */
174 void (*expired_timer_callback) (u32 * expired_timer_handles);
176 /** vector of expired timers */
177 u32 *expired_timer_handles;
178 } TWT (tw_timer_wheel);
180 u32 TW (tw_timer_start) (TWT (tw_timer_wheel) * tw,
181 u32 pool_index, u32 timer_id, u32 interval);
183 void TW (tw_timer_stop) (TWT (tw_timer_wheel) * tw, u32 handle);
185 void TW (tw_timer_wheel_init) (TWT (tw_timer_wheel) * tw,
186 void *expired_timer_callback,
189 void TW (tw_timer_wheel_free) (TWT (tw_timer_wheel) * tw);
191 void TW (tw_timer_expire_timers) (TWT (tw_timer_wheel) * tw, f64 now);
194 * fd.io coding-style-patch-verification: ON
197 * eval: (c-set-style "gnu")