/***************************************************************************** * timer.c : Win32 timers for LibVLC ***************************************************************************** * Copyright (C) 2009-2016 RĂ©mi Denis-Courmont * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include struct vlc_timer { HANDLE handle; void (*func) (void *); void *data; }; static void CALLBACK vlc_timer_do (void *val, BOOLEAN timeout) { struct vlc_timer *timer = val; assert (timeout); timer->func (timer->data); } int vlc_timer_create (vlc_timer_t *id, void (*func) (void *), void *data) { struct vlc_timer *timer = malloc (sizeof (*timer)); if (timer == NULL) return ENOMEM; timer->func = func; timer->data = data; timer->handle = INVALID_HANDLE_VALUE; *id = timer; return 0; } void vlc_timer_destroy (vlc_timer_t timer) { if (timer->handle != INVALID_HANDLE_VALUE) DeleteTimerQueueTimer (NULL, timer->handle, INVALID_HANDLE_VALUE); free (timer); } void vlc_timer_schedule (vlc_timer_t timer, bool absolute, vlc_tick_t value, vlc_tick_t interval) { if (timer->handle != INVALID_HANDLE_VALUE) { DeleteTimerQueueTimer (NULL, timer->handle, INVALID_HANDLE_VALUE); timer->handle = INVALID_HANDLE_VALUE; } if (value == 0) return; /* Disarm */ if (absolute) { value -= mdate (); if (value < 0) value = 0; } value = (value + 999) / 1000; interval = (interval + 999) / 1000; if (!CreateTimerQueueTimer (&timer->handle, NULL, vlc_timer_do, timer, value, interval, WT_EXECUTEDEFAULT)) abort (); } unsigned vlc_timer_getoverrun (vlc_timer_t timer) { (void)timer; return 0; }