]> git.ozlabs.org Git - petitboot/blob - ui/common/timer.c
ui/ncurses: Layout tweaks for boot order interface
[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 #include <assert.h>
24 #include <limits.h>
25 #include <unistd.h>
26
27 #include "log/log.h"
28 #include "timer.h"
29
30 /**
31  * ui_timer_init - Initialize the timer for use.
32  * @seconds: The final timeout value in seconds.
33  */
34
35 void ui_timer_init(struct waitset *waitset, struct ui_timer *timer,
36                 unsigned int seconds)
37 {
38         pb_log("%s: %u\n", __func__, seconds);
39         timer->timeout = seconds;
40         timer->waitset = waitset;
41 }
42
43 /**
44  * ui_timer_kick - Kickstart the next timer interval.
45  */
46
47 static int timer_cb(void *arg)
48 {
49         struct ui_timer *timer = arg;
50
51         timer->handle_timeout(timer);
52         timer->waiter = 0;
53         return 0;
54 }
55
56 void ui_timer_kick(struct ui_timer *timer)
57 {
58         if (timer->update_display)
59                 timer->update_display(timer, timer->timeout);
60
61         if (timer->waiter)
62                 waiter_remove(timer->waiter);
63
64         timer->waiter = waiter_register_timeout(timer->waitset,
65                         timer->timeout * 1000, timer_cb, timer);
66 }
67
68 /**
69  * ui_timer_disable - Stop and disable the timer.
70  */
71
72 void ui_timer_disable(struct ui_timer *timer)
73 {
74         if (!timer->waiter)
75                 return;
76
77         pb_log("%s\n", __func__);
78         waiter_remove(timer->waiter);
79         timer->waiter = NULL;
80 }