]> git.proxmox.com Git - mirror_frr.git/blob - lib/wheel.c
Merge pull request #10632 from donaldsharp/thread_return_null
[mirror_frr.git] / lib / wheel.c
1 /*
2 * Timer Wheel
3 * Copyright (C) 2016 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20 #include "zebra.h"
21 #include "linklist.h"
22 #include "thread.h"
23 #include "memory.h"
24 #include "wheel.h"
25 #include "log.h"
26
27 DEFINE_MTYPE_STATIC(LIB, TIMER_WHEEL, "Timer Wheel");
28 DEFINE_MTYPE_STATIC(LIB, TIMER_WHEEL_LIST, "Timer Wheel Slot List");
29
30 static int debug_timer_wheel = 0;
31
32 static void wheel_timer_thread(struct thread *t);
33
34 static void wheel_timer_thread_helper(struct thread *t)
35 {
36 struct listnode *node, *nextnode;
37 unsigned long long curr_slot;
38 unsigned int slots_to_skip = 1;
39 struct timer_wheel *wheel;
40 void *data;
41
42 wheel = THREAD_ARG(t);
43 THREAD_OFF(wheel->timer);
44
45 wheel->curr_slot += wheel->slots_to_skip;
46
47 curr_slot = wheel->curr_slot % wheel->slots;
48
49 if (debug_timer_wheel)
50 zlog_debug("%s: Wheel Slot: %lld(%lld) count: %d", __func__,
51 wheel->curr_slot, curr_slot,
52 listcount(wheel->wheel_slot_lists[curr_slot]));
53
54 for (ALL_LIST_ELEMENTS(wheel->wheel_slot_lists[curr_slot], node,
55 nextnode, data))
56 (*wheel->slot_run)(data);
57
58 while (list_isempty(wheel->wheel_slot_lists[(curr_slot + slots_to_skip)
59 % wheel->slots])
60 && (curr_slot + slots_to_skip) % wheel->slots != curr_slot)
61 slots_to_skip++;
62
63 wheel->slots_to_skip = slots_to_skip;
64 thread_add_timer_msec(wheel->master, wheel_timer_thread, wheel,
65 wheel->nexttime * slots_to_skip, &wheel->timer);
66 }
67
68 static void wheel_timer_thread(struct thread *t)
69 {
70 struct timer_wheel *wheel;
71
72 wheel = THREAD_ARG(t);
73
74 thread_execute(wheel->master, wheel_timer_thread_helper, wheel, 0);
75 }
76
77 struct timer_wheel *wheel_init(struct thread_master *master, int period,
78 size_t slots, unsigned int (*slot_key)(const void *),
79 void (*slot_run)(void *),
80 const char *run_name)
81 {
82 struct timer_wheel *wheel;
83 size_t i;
84
85 wheel = XCALLOC(MTYPE_TIMER_WHEEL, sizeof(struct timer_wheel));
86
87 wheel->name = XSTRDUP(MTYPE_TIMER_WHEEL, run_name);
88 wheel->slot_key = slot_key;
89 wheel->slot_run = slot_run;
90
91 wheel->period = period;
92 wheel->slots = slots;
93 wheel->curr_slot = 0;
94 wheel->master = master;
95 wheel->nexttime = period / slots;
96
97 wheel->wheel_slot_lists = XCALLOC(MTYPE_TIMER_WHEEL_LIST,
98 slots * sizeof(struct listnode *));
99 for (i = 0; i < slots; i++)
100 wheel->wheel_slot_lists[i] = list_new();
101
102 thread_add_timer_msec(wheel->master, wheel_timer_thread, wheel,
103 wheel->nexttime, &wheel->timer);
104
105 return wheel;
106 }
107
108 void wheel_delete(struct timer_wheel *wheel)
109 {
110 int i;
111
112 for (i = 0; i < wheel->slots; i++) {
113 list_delete(&wheel->wheel_slot_lists[i]);
114 }
115
116 THREAD_OFF(wheel->timer);
117 XFREE(MTYPE_TIMER_WHEEL_LIST, wheel->wheel_slot_lists);
118 XFREE(MTYPE_TIMER_WHEEL, wheel->name);
119 XFREE(MTYPE_TIMER_WHEEL, wheel);
120 }
121
122 int wheel_stop(struct timer_wheel *wheel)
123 {
124 THREAD_OFF(wheel->timer);
125 return 0;
126 }
127
128 int wheel_start(struct timer_wheel *wheel)
129 {
130 if (!wheel->timer)
131 thread_add_timer_msec(wheel->master, wheel_timer_thread, wheel,
132 wheel->nexttime, &wheel->timer);
133
134 return 0;
135 }
136
137 int wheel_add_item(struct timer_wheel *wheel, void *item)
138 {
139 long long slot;
140
141 slot = (*wheel->slot_key)(item);
142
143 if (debug_timer_wheel)
144 zlog_debug("%s: Inserting %p: %lld %lld", __func__, item, slot,
145 slot % wheel->slots);
146 listnode_add(wheel->wheel_slot_lists[slot % wheel->slots], item);
147
148 return 0;
149 }
150
151 int wheel_remove_item(struct timer_wheel *wheel, void *item)
152 {
153 long long slot;
154
155 slot = (*wheel->slot_key)(item);
156
157 if (debug_timer_wheel)
158 zlog_debug("%s: Removing %p: %lld %lld", __func__, item, slot,
159 slot % wheel->slots);
160 listnode_delete(wheel->wheel_slot_lists[slot % wheel->slots], item);
161
162 return 0;
163 }