| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- /*
- * Copyright (c) 2003-2004 MontaVista Software, Inc.
- *
- * All rights reserved.
- *
- * Author: Steven Dake (sdake@mvista.com)
- *
- * This software licensed under BSD license, the text of which follows:
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * - Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * - Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * - Neither the name of the MontaVista Software, Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include <sys/time.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <errno.h>
- #include "../include/list.h"
- #include "tlist.h"
- struct timer {
- struct list_head list;
- struct timeval tv;
- void (*timer_fn)(void *data);
- void *data;
- timer_handle handle_addr;
- };
- void timerlist_init (struct timerlist *timerlist)
- {
- list_init (&timerlist->timer_head);
- }
- void timerlist_free (struct timerlist *timerlist)
- {
- }
- int timers_inuse = 0;
- static inline void timeval_adjust_to_msec (struct timeval *tv) {
- tv->tv_usec = (tv->tv_usec / 1000) * 1000;
- }
- void timerlist_add (struct timerlist *timerlist, struct timer *timer)
- {
- struct list_head *timer_list = 0;
- struct timer *timer_from_list;
- int found;
- timeval_adjust_to_msec (&timer->tv);
- //printf ("Adding timer %d %d\n", timer->tv.tv_sec, timer->tv.tv_usec);
- for (found = 0, timer_list = timerlist->timer_head.next;
- timer_list != &timerlist->timer_head;
- timer_list = timer_list->next) {
- timer_from_list = list_entry (timer_list,
- struct timer, list);
- if ((timer_from_list->tv.tv_sec > timer->tv.tv_sec) ||
- ((timer_from_list->tv.tv_sec == timer->tv.tv_sec) &&
- (timer_from_list->tv.tv_usec > timer->tv.tv_usec))) {
- list_add (&timer->list, timer_list->prev);
- found = 1;
- break; /* for timer iteration */
- }
- }
- if (found == 0) {
- list_add (&timer->list, timerlist->timer_head.prev);
- timers_inuse++;
- }
- }
- timer_handle timerlist_add_future (struct timerlist *timerlist,
- void (*timer_fn) (void *data),
- void *data,
- unsigned int msec_in_future,
- timer_handle *handle)
- {
- struct timer *timer;
- struct timeval current_time;
- unsigned int seconds;
- unsigned int mseconds;
- timer = (struct timer *)malloc (sizeof (struct timer));
- if (timer == 0) {
- errno = ENOMEM;
- return (0);
- }
-
- seconds = msec_in_future / 1000;
- mseconds = msec_in_future % 1000;
- gettimeofday (¤t_time, 0);
- timeval_adjust_to_msec (¤t_time);
- timer->tv.tv_sec = current_time.tv_sec + seconds;
- timer->tv.tv_usec = current_time.tv_usec + mseconds * 1000;
- if (timer->tv.tv_usec >= 1000000) {
- timer->tv.tv_sec++;
- timer->tv.tv_usec -= 1000000;
- }
- timer->data = data;
- timer->timer_fn = timer_fn;
- timer->handle_addr = handle;
- timerlist_add (timerlist, timer);
- *handle = timer;
- return (0);
- }
- void timerlist_del (struct timerlist *timerlist, timer_handle timer_handle)
- {
- struct timer *timer = (struct timer *)timer_handle;
- *((unsigned int *)timer->handle_addr) = 0;
- /*
- * If the next timer after the currently expiring timer because
- * timerlist_del is called from a timer handler, get to the enxt
- * timer
- */
- if (timerlist->timer_iter == &timer->list) {
- timerlist->timer_iter = timerlist->timer_iter->next;
- }
- list_del (&timer->list);
- list_init (&timer->list);
- timers_inuse--;
- free (timer);
- }
- void timerlist_del_data (struct timerlist *timerlist, timer_handle timer_handle)
- {
- struct timer *timer = (struct timer *)timer_handle;
- if (timer->data) {
- free (timer->data);
- }
- timerlist_del(timerlist,timer_handle);
- }
- static void timerlist_pre_dispatch (struct timerlist *timerlist, timer_handle timer_handle)
- {
- struct timer *timer = (struct timer *)timer_handle;
- *((unsigned int *)timer->handle_addr) = 0;
- list_del (&timer->list);
- list_init (&timer->list);
- timers_inuse--;
- }
- static void timerlist_post_dispatch (struct timerlist *timerlist, timer_handle timer_handle)
- {
- struct timer *timer = (struct timer *)timer_handle;
- free (timer);
- }
- #ifdef CODE_COVERAGE_COMPILE_OUT
- int timer_expire_get_tv (struct timerlist *timerlist, struct timeval *tv)
- {
- struct timeval current_time;
- struct timer *timer_from_list;
- /*
- * empty list, no expire
- */
- if (timerlist->timer_head.next == &timerlist->timer_head) {
- return (-1);
- }
-
- timer_from_list = list_entry (timerlist->timer_head.next,
- struct timer, list);
- gettimeofday (¤t_time, 0);
- timeval_adjust_to_msec (¤t_time);
- /*
- * timer at head of list is expired, zero msecs required
- */
- if ((timer_from_list->tv.tv_sec < current_time.tv_sec) ||
- ((timer_from_list->tv.tv_sec == current_time.tv_sec) &&
- (timer_from_list->tv.tv_usec <= current_time.tv_usec))) {
-
- tv->tv_sec = 0;
- tv->tv_usec = 0;
- }
- tv->tv_sec = timer_from_list->tv.tv_sec - current_time.tv_sec;
- tv->tv_usec = timer_from_list->tv.tv_usec - current_time.tv_usec;
- if (tv->tv_usec < 0) {
- tv->tv_sec -= 1;
- tv->tv_usec += 1000000;
- }
- if (tv->tv_sec < 0) {
- tv->tv_sec = 0;
- tv->tv_usec = 0;
- }
- timeval_adjust_to_msec (tv);
- return (0);
- }
- #endif /* CODE_COVERAGE_COMPILE_OUT */
- unsigned int timerlist_timeout_msec (struct timerlist *timerlist)
- {
- struct timeval current_time;
- struct timer *timer_from_list;
- unsigned int time_in_msec;
- /*
- * empty list, no expire
- */
- if (timerlist->timer_head.next == &timerlist->timer_head) {
- return (-1);
- }
-
- timer_from_list = list_entry (timerlist->timer_head.next,
- struct timer, list);
- gettimeofday (¤t_time, 0);
- timeval_adjust_to_msec (¤t_time);
- /*
- * timer at head of list is expired, zero msecs required
- */
- if ((timer_from_list->tv.tv_sec < current_time.tv_sec) ||
- ((timer_from_list->tv.tv_sec == current_time.tv_sec) &&
- (timer_from_list->tv.tv_usec <= current_time.tv_usec))) {
- return (0);
- }
- time_in_msec = ((timer_from_list->tv.tv_sec - current_time.tv_sec) * 1000) + ((timer_from_list->tv.tv_usec - current_time.tv_usec) / 1000);
- return time_in_msec;
- }
- void timerlist_expire (struct timerlist *timerlist)
- {
- struct timer *timer_from_list;
- struct timeval current_time;
- gettimeofday (¤t_time, 0);
- timeval_adjust_to_msec (¤t_time);
- for (timerlist->timer_iter = timerlist->timer_head.next;
- timerlist->timer_iter != &timerlist->timer_head;) {
- timer_from_list = list_entry (timerlist->timer_iter,
- struct timer, list);
- if ((timer_from_list->tv.tv_sec < current_time.tv_sec) ||
- ((timer_from_list->tv.tv_sec == current_time.tv_sec) &&
- (timer_from_list->tv.tv_usec <= current_time.tv_usec))) {
- //printf ("Executing timer %d %d\n", timer_from_list->tv.tv_sec, timer_from_list->tv.tv_usec);
- timerlist->timer_iter = timerlist->timer_iter->next;
- timerlist_pre_dispatch (timerlist, timer_from_list);
- timer_from_list->timer_fn (timer_from_list->data);
- timerlist_post_dispatch (timerlist, timer_from_list);
- } else {
- break; /* for timer iteration */
- }
- }
- timerlist->timer_iter = 0;
- }
|