]> git.ozlabs.org Git - petitboot/blob - ui/common/timer.c
ui/ncurses: Add network configuration
[petitboot] / ui / common / timer.c
1 /*
2  *  Copyright (C) 2009 Sony Computer Entertainment Inc.
3  *  Copyright 2009 Sony Corp.
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; version 2 of the License.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #if defined(HAVE_CONFIG_H)
20 #include "config.h"
21 #endif
22
23 #define _GNU_SOURCE
24 #include <assert.h>
25 #include <limits.h>
26 #include <unistd.h>
27
28 #include "log/log.h"
29 #include "timer.h"
30
31 /**
32  * ui_timer_init - Initialize the timer for use.
33  * @seconds: The final timeout value in seconds.
34  */
35
36 void ui_timer_init(struct waitset *waitset, struct ui_timer *timer,
37                 unsigned int seconds)
38 {
39         pb_log("%s: %u\n", __func__, seconds);
40         timer->timeout = seconds;
41         timer->waitset = waitset;
42 }
43
44 /**
45  * ui_timer_kick - Kickstart the next timer interval.
46  */
47
48 static int timer_cb(void *arg)
49 {
50         struct ui_timer *timer = arg;
51
52         timer->handle_timeout(timer);
53         timer->waiter = 0;
54         return 0;
55 }
56
57 void ui_timer_kick(struct ui_timer *timer)
58 {
59         if (timer->update_display)
60                 timer->update_display(timer, timer->timeout);
61
62         if (timer->waiter)
63                 waiter_remove(timer->waiter);
64
65         timer->waiter = waiter_register_timeout(timer->waitset,
66                         timer->timeout * 1000, timer_cb, timer);
67 }
68
69 /**
70  * ui_timer_disable - Stop and disable the timer.
71  */
72
73 void ui_timer_disable(struct ui_timer *timer)
74 {
75         if (!timer->waiter)
76                 return;
77
78         pb_log("%s\n", __func__);
79         waiter_remove(timer->waiter);
80         timer->waiter = NULL;
81 }