forked from erimatnor/aodv-uu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timer_queue.c
256 lines (204 loc) · 5.21 KB
/
timer_queue.c
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
/*****************************************************************************
*
* Copyright (C) 2001 Uppsala University & Ericsson AB.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Authors: Erik Nordström, <erik.nordstrom@it.uu.se>
*
*****************************************************************************/
#include <stdlib.h>
#include <signal.h>
#include <sys/time.h>
#ifdef NS_PORT
#include "ns-2/aodv-uu.h"
#else
#include "timer_queue.h"
#include "defs.h"
#include "debug.h"
#include "list.h"
static LIST(TQ);
/* #define DEBUG_TIMER_QUEUE */
#ifdef DEBUG_TIMER_QUEUE
static void printTQ(list_t * l);
#endif
#endif /* NS_PORT */
int NS_CLASS timer_init(struct timer *t, timeout_func_t f, void *data)
{
if (!t)
return -1;
INIT_LIST_ELM(&t->l);
t->handler = f;
t->data = data;
t->timeout.tv_sec = 0;
t->timeout.tv_usec = 0;
t->used = 0;
return 0;
}
/* Called when a timer should timeout */
void NS_CLASS timer_timeout(struct timeval *now)
{
LIST(expTQ);
list_t *pos, *tmp;
#ifdef DEBUG_TIMER_QUEUE
printf("\n######## timer_timeout: called!!\n");
#endif
/* Remove expired timers from TQ and add them to expTQ */
list_foreach_safe(pos, tmp, &TQ) {
struct timer *t = (struct timer *) pos;
if (timeval_diff(&t->timeout, now) > 0)
break;
list_detach(&t->l);
list_add_tail(&expTQ, &t->l);
}
/* Execute expired timers in expTQ safely by removing them at the head */
while (!list_empty(&expTQ)) {
struct timer *t = (struct timer *) list_first(&expTQ);
list_detach(&t->l);
t->used = 0;
#ifdef DEBUG_TIMER_QUEUE
printf("removing timer %lu %d\n", pos);
#endif
/* Execute handler function for expired timer... */
if (t->handler) {
#ifdef NS_PORT
(*this.*t->handler) (t->data);
#else
t->handler(t->data);
#endif
}
}
}
NS_STATIC void NS_CLASS timer_add(struct timer *t)
{
list_t *pos;
/* Sanity checks: */
if (!t) {
perror("NULL timer!!!\n");
exit(-1);
}
if (!t->handler) {
perror("NULL handler!!!\n");
exit(-1);
}
/* Make sure we remove unexpired timers before adding a new timeout... */
if (t->used)
timer_remove(t);
t->used = 1;
#ifdef DEBUG_TIMER_QUEUE
printf("New timer added!\n");
#endif
/* Base case when queue is empty: */
if (list_empty(&TQ)) {
list_add(&TQ, &t->l);
} else {
list_foreach(pos, &TQ) {
struct timer *curr = (struct timer *) pos;
if (timeval_diff(&t->timeout, &curr->timeout) < 0) {
break;
}
}
list_add(pos->prev, &t->l);
}
#ifdef DEBUG_TIMER_QUEUE
printTQ(&TQ);
#endif
return;
}
int NS_CLASS timer_remove(struct timer *t)
{
int res = 1;
if (!t)
return -1;
if (list_unattached(&t->l))
res = 0;
else
list_detach(&t->l);
t->used = 0;
return res;
}
int NS_CLASS timer_timeout_now(struct timer *t)
{
if (timer_remove(t)) {
#ifdef NS_PORT
(*this.*t->handler) (t->data);
#else
t->handler(t->data);
#endif
return 1;
}
return -1;
}
void NS_CLASS timer_set_timeout(struct timer *t, long msec)
{
if (t->used) {
timer_remove(t);
}
gettimeofday(&t->timeout, NULL);
if (msec < 0)
DEBUG(LOG_WARNING, 0, "Negative timeout!!!");
t->timeout.tv_usec += msec * 1000;
t->timeout.tv_sec += t->timeout.tv_usec / 1000000;
t->timeout.tv_usec = t->timeout.tv_usec % 1000000;
timer_add(t);
}
long timer_left(struct timer *t)
{
struct timeval now;
if (!t)
return -1;
gettimeofday(&now, NULL);
return timeval_diff(&now, &t->timeout);
}
struct timeval *NS_CLASS timer_age_queue()
{
struct timeval now;
struct timer *t;
static struct timeval remaining;
gettimeofday(&now, NULL);
fflush(stdout);
if (list_empty(&TQ))
return NULL;
timer_timeout(&now);
/* Check emptyness again since the list might have been updated by a
* timeout */
if (list_empty(&TQ))
return NULL;
t = (struct timer *) TQ.next;
remaining.tv_usec = (t->timeout.tv_usec - now.tv_usec);
remaining.tv_sec = (t->timeout.tv_sec - now.tv_sec);
if (remaining.tv_usec < 0) {
remaining.tv_usec += 1000000;
remaining.tv_sec -= 1;
}
return (&remaining);
}
#ifdef DEBUG_TIMER_QUEUE
void NS_CLASS printTQ(list_t * l)
{
struct timeval now;
int n = 0;
list_t *pos;
gettimeofday(&now, NULL);
fprintf(stderr, "================\n");
fprintf(stderr, "%-12s %-4s %lu\n", "left", "n", (unsigned long) l);
list_foreach(pos, l) {
struct timer *t = (struct timer *) pos;
fprintf(stderr, "%-12ld %-4d %lu\n", timeval_diff(&t->timeout, &now), n,
(unsigned long) pos);
n++;
}
}
#endif