1999-11-29 02:58:35 +01:00
|
|
|
/*
|
|
|
|
* Waitable timers management
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library 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 library 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 library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-11-29 02:58:35 +01:00
|
|
|
*/
|
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
1999-11-29 02:58:35 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
2005-11-22 13:01:05 +01:00
|
|
|
#include <stdarg.h>
|
1999-11-29 02:58:35 +01:00
|
|
|
|
2005-11-28 17:32:54 +01:00
|
|
|
#include "ntstatus.h"
|
|
|
|
#define WIN32_NO_STATUS
|
2002-12-10 23:56:43 +01:00
|
|
|
#include "windef.h"
|
2005-10-27 20:30:37 +02:00
|
|
|
#include "winternl.h"
|
2003-02-19 01:33:32 +01:00
|
|
|
|
|
|
|
#include "file.h"
|
1999-11-29 02:58:35 +01:00
|
|
|
#include "handle.h"
|
|
|
|
#include "request.h"
|
|
|
|
|
|
|
|
struct timer
|
|
|
|
{
|
|
|
|
struct object obj; /* object header */
|
|
|
|
int manual; /* manual reset */
|
|
|
|
int signaled; /* current signaled state */
|
|
|
|
int period; /* timer period in ms */
|
|
|
|
struct timeval when; /* next expiration */
|
|
|
|
struct timeout_user *timeout; /* timeout user */
|
2000-08-22 22:08:37 +02:00
|
|
|
struct thread *thread; /* thread that set the APC function */
|
1999-11-29 02:58:35 +01:00
|
|
|
void *callback; /* callback APC function */
|
|
|
|
void *arg; /* callback argument */
|
|
|
|
};
|
|
|
|
|
|
|
|
static void timer_dump( struct object *obj, int verbose );
|
|
|
|
static int timer_signaled( struct object *obj, struct thread *thread );
|
|
|
|
static int timer_satisfied( struct object *obj, struct thread *thread );
|
2005-12-12 14:58:44 +01:00
|
|
|
static unsigned int timer_map_access( struct object *obj, unsigned int access );
|
1999-11-29 02:58:35 +01:00
|
|
|
static void timer_destroy( struct object *obj );
|
|
|
|
|
|
|
|
static const struct object_ops timer_ops =
|
|
|
|
{
|
2000-01-01 01:56:27 +01:00
|
|
|
sizeof(struct timer), /* size */
|
|
|
|
timer_dump, /* dump */
|
|
|
|
add_queue, /* add_queue */
|
|
|
|
remove_queue, /* remove_queue */
|
|
|
|
timer_signaled, /* signaled */
|
|
|
|
timer_satisfied, /* satisfied */
|
2005-04-24 19:35:52 +02:00
|
|
|
no_signal, /* signal */
|
2000-12-19 03:12:45 +01:00
|
|
|
no_get_fd, /* get_fd */
|
2005-12-12 14:58:44 +01:00
|
|
|
timer_map_access, /* map_access */
|
2005-11-22 15:55:42 +01:00
|
|
|
no_lookup_name, /* lookup_name */
|
2005-06-09 17:39:52 +02:00
|
|
|
no_close_handle, /* close_handle */
|
2000-01-01 01:56:27 +01:00
|
|
|
timer_destroy /* destroy */
|
1999-11-29 02:58:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* create a timer object */
|
2005-12-02 16:05:54 +01:00
|
|
|
static struct timer *create_timer( struct directory *root, const struct unicode_str *name,
|
|
|
|
unsigned int attr, int manual )
|
1999-11-29 02:58:35 +01:00
|
|
|
{
|
|
|
|
struct timer *timer;
|
|
|
|
|
2005-12-02 16:05:54 +01:00
|
|
|
if ((timer = create_named_object_dir( root, name, attr, &timer_ops )))
|
1999-11-29 02:58:35 +01:00
|
|
|
{
|
2005-11-21 17:27:03 +01:00
|
|
|
if (get_error() != STATUS_OBJECT_NAME_EXISTS)
|
1999-11-29 02:58:35 +01:00
|
|
|
{
|
|
|
|
/* initialize it if it didn't already exist */
|
|
|
|
timer->manual = manual;
|
|
|
|
timer->signaled = 0;
|
|
|
|
timer->when.tv_sec = 0;
|
|
|
|
timer->when.tv_usec = 0;
|
|
|
|
timer->period = 0;
|
|
|
|
timer->timeout = NULL;
|
2000-08-22 22:08:37 +02:00
|
|
|
timer->thread = NULL;
|
1999-11-29 02:58:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return timer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* callback on timer expiration */
|
|
|
|
static void timer_callback( void *private )
|
|
|
|
{
|
|
|
|
struct timer *timer = (struct timer *)private;
|
|
|
|
|
2000-08-22 22:08:37 +02:00
|
|
|
/* queue an APC */
|
|
|
|
if (timer->thread)
|
2002-03-23 19:50:04 +01:00
|
|
|
{
|
2003-04-05 00:26:34 +02:00
|
|
|
if (!thread_queue_apc( timer->thread, &timer->obj, timer->callback, APC_TIMER, 0,
|
2002-03-23 19:50:04 +01:00
|
|
|
(void *)timer->when.tv_sec, (void *)timer->when.tv_usec, timer->arg))
|
|
|
|
{
|
|
|
|
release_object( timer->thread );
|
|
|
|
timer->thread = NULL;
|
|
|
|
}
|
|
|
|
}
|
2000-08-22 22:08:37 +02:00
|
|
|
|
1999-11-29 02:58:35 +01:00
|
|
|
if (timer->period) /* schedule the next expiration */
|
|
|
|
{
|
1999-12-13 01:16:44 +01:00
|
|
|
add_timeout( &timer->when, timer->period );
|
1999-11-29 02:58:35 +01:00
|
|
|
timer->timeout = add_timeout_user( &timer->when, timer_callback, timer );
|
|
|
|
}
|
|
|
|
else timer->timeout = NULL;
|
|
|
|
|
|
|
|
/* wake up waiters */
|
|
|
|
timer->signaled = 1;
|
|
|
|
wake_up( &timer->obj, 0 );
|
|
|
|
}
|
|
|
|
|
2000-08-22 22:08:37 +02:00
|
|
|
/* cancel a running timer */
|
2003-05-20 06:00:42 +02:00
|
|
|
static int cancel_timer( struct timer *timer )
|
2000-08-22 22:08:37 +02:00
|
|
|
{
|
2003-05-20 06:00:42 +02:00
|
|
|
int signaled = timer->signaled;
|
|
|
|
|
2000-08-22 22:08:37 +02:00
|
|
|
if (timer->timeout)
|
|
|
|
{
|
|
|
|
remove_timeout_user( timer->timeout );
|
|
|
|
timer->timeout = NULL;
|
|
|
|
}
|
|
|
|
if (timer->thread)
|
|
|
|
{
|
2001-01-06 02:48:51 +01:00
|
|
|
thread_cancel_apc( timer->thread, &timer->obj, 0 );
|
2002-03-23 19:50:04 +01:00
|
|
|
release_object( timer->thread );
|
2000-08-22 22:08:37 +02:00
|
|
|
timer->thread = NULL;
|
|
|
|
}
|
2003-05-20 06:00:42 +02:00
|
|
|
return signaled;
|
2000-08-22 22:08:37 +02:00
|
|
|
}
|
|
|
|
|
1999-11-29 02:58:35 +01:00
|
|
|
/* set the timer expiration and period */
|
2003-05-20 06:00:42 +02:00
|
|
|
static int set_timer( struct timer *timer, const abs_time_t *expire, int period,
|
|
|
|
void *callback, void *arg )
|
1999-11-29 02:58:35 +01:00
|
|
|
{
|
2003-05-20 06:00:42 +02:00
|
|
|
int signaled = cancel_timer( timer );
|
1999-11-29 02:58:35 +01:00
|
|
|
if (timer->manual)
|
|
|
|
{
|
|
|
|
period = 0; /* period doesn't make any sense for a manual timer */
|
|
|
|
timer->signaled = 0;
|
|
|
|
}
|
2003-04-03 00:48:59 +02:00
|
|
|
if (!expire->sec && !expire->usec)
|
1999-12-13 01:16:44 +01:00
|
|
|
{
|
|
|
|
/* special case: use now + period as first expiration */
|
2005-05-25 20:41:09 +02:00
|
|
|
gettimeofday( &timer->when, NULL );
|
1999-12-13 01:16:44 +01:00
|
|
|
add_timeout( &timer->when, period );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-04-03 00:48:59 +02:00
|
|
|
timer->when.tv_sec = expire->sec;
|
|
|
|
timer->when.tv_usec = expire->usec;
|
1999-12-13 01:16:44 +01:00
|
|
|
}
|
1999-11-29 02:58:35 +01:00
|
|
|
timer->period = period;
|
|
|
|
timer->callback = callback;
|
|
|
|
timer->arg = arg;
|
2002-03-23 19:50:04 +01:00
|
|
|
if (callback) timer->thread = (struct thread *)grab_object( current );
|
1999-11-29 02:58:35 +01:00
|
|
|
timer->timeout = add_timeout_user( &timer->when, timer_callback, timer );
|
2003-05-20 06:00:42 +02:00
|
|
|
return signaled;
|
1999-11-29 02:58:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void timer_dump( struct object *obj, int verbose )
|
|
|
|
{
|
|
|
|
struct timer *timer = (struct timer *)obj;
|
|
|
|
assert( obj->ops == &timer_ops );
|
2006-01-23 16:48:26 +01:00
|
|
|
fprintf( stderr, "Timer manual=%d when=%ld.%06u period=%d ",
|
|
|
|
timer->manual, timer->when.tv_sec, (unsigned int)timer->when.tv_usec, timer->period );
|
1999-11-29 02:58:35 +01:00
|
|
|
dump_object_name( &timer->obj );
|
|
|
|
fputc( '\n', stderr );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int timer_signaled( struct object *obj, struct thread *thread )
|
|
|
|
{
|
|
|
|
struct timer *timer = (struct timer *)obj;
|
|
|
|
assert( obj->ops == &timer_ops );
|
|
|
|
return timer->signaled;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int timer_satisfied( struct object *obj, struct thread *thread )
|
|
|
|
{
|
|
|
|
struct timer *timer = (struct timer *)obj;
|
|
|
|
assert( obj->ops == &timer_ops );
|
|
|
|
if (!timer->manual) timer->signaled = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-12-12 14:58:44 +01:00
|
|
|
static unsigned int timer_map_access( struct object *obj, unsigned int access )
|
|
|
|
{
|
|
|
|
if (access & GENERIC_READ) access |= STANDARD_RIGHTS_READ | SYNCHRONIZE | TIMER_QUERY_STATE;
|
|
|
|
if (access & GENERIC_WRITE) access |= STANDARD_RIGHTS_WRITE | TIMER_MODIFY_STATE;
|
|
|
|
if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE;
|
|
|
|
if (access & GENERIC_ALL) access |= TIMER_ALL_ACCESS;
|
|
|
|
return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
|
|
|
|
}
|
|
|
|
|
1999-11-29 02:58:35 +01:00
|
|
|
static void timer_destroy( struct object *obj )
|
|
|
|
{
|
|
|
|
struct timer *timer = (struct timer *)obj;
|
|
|
|
assert( obj->ops == &timer_ops );
|
|
|
|
|
|
|
|
if (timer->timeout) remove_timeout_user( timer->timeout );
|
2002-03-23 19:50:04 +01:00
|
|
|
if (timer->thread) release_object( timer->thread );
|
1999-11-29 02:58:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create a timer */
|
|
|
|
DECL_HANDLER(create_timer)
|
|
|
|
{
|
|
|
|
struct timer *timer;
|
2005-11-18 17:31:18 +01:00
|
|
|
struct unicode_str name;
|
2005-12-02 16:05:54 +01:00
|
|
|
struct directory *root = NULL;
|
1999-11-29 02:58:35 +01:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
reply->handle = 0;
|
2005-11-18 17:31:18 +01:00
|
|
|
get_req_unicode_str( &name );
|
2005-12-02 16:05:54 +01:00
|
|
|
if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((timer = create_timer( root, &name, req->attributes, req->manual )))
|
1999-11-29 02:58:35 +01:00
|
|
|
{
|
2005-12-09 13:58:25 +01:00
|
|
|
reply->handle = alloc_handle( current->process, timer, req->access, req->attributes );
|
1999-11-29 02:58:35 +01:00
|
|
|
release_object( timer );
|
|
|
|
}
|
2005-12-02 16:05:54 +01:00
|
|
|
|
|
|
|
if (root) release_object( root );
|
1999-11-29 02:58:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* open a handle to a timer */
|
|
|
|
DECL_HANDLER(open_timer)
|
|
|
|
{
|
2005-11-18 17:31:18 +01:00
|
|
|
struct unicode_str name;
|
2005-12-02 16:05:54 +01:00
|
|
|
struct directory *root = NULL;
|
2005-12-05 12:52:05 +01:00
|
|
|
struct timer *timer;
|
2005-11-18 17:31:18 +01:00
|
|
|
|
|
|
|
get_req_unicode_str( &name );
|
2005-12-02 16:05:54 +01:00
|
|
|
if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
|
|
|
|
return;
|
|
|
|
|
2005-12-05 12:52:05 +01:00
|
|
|
if ((timer = open_object_dir( root, &name, req->attributes, &timer_ops )))
|
|
|
|
{
|
2005-12-09 13:58:25 +01:00
|
|
|
reply->handle = alloc_handle( current->process, &timer->obj, req->access, req->attributes );
|
2005-12-05 12:52:05 +01:00
|
|
|
release_object( timer );
|
|
|
|
}
|
2005-12-02 16:05:54 +01:00
|
|
|
|
|
|
|
if (root) release_object( root );
|
1999-11-29 02:58:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* set a waitable timer */
|
|
|
|
DECL_HANDLER(set_timer)
|
|
|
|
{
|
|
|
|
struct timer *timer;
|
|
|
|
|
|
|
|
if ((timer = (struct timer *)get_handle_obj( current->process, req->handle,
|
|
|
|
TIMER_MODIFY_STATE, &timer_ops )))
|
|
|
|
{
|
2003-05-20 06:00:42 +02:00
|
|
|
reply->signaled = set_timer( timer, &req->expire, req->period, req->callback, req->arg );
|
1999-11-29 02:58:35 +01:00
|
|
|
release_object( timer );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cancel a waitable timer */
|
|
|
|
DECL_HANDLER(cancel_timer)
|
|
|
|
{
|
|
|
|
struct timer *timer;
|
|
|
|
|
|
|
|
if ((timer = (struct timer *)get_handle_obj( current->process, req->handle,
|
|
|
|
TIMER_MODIFY_STATE, &timer_ops )))
|
|
|
|
{
|
2003-05-20 06:00:42 +02:00
|
|
|
reply->signaled = cancel_timer( timer );
|
1999-11-29 02:58:35 +01:00
|
|
|
release_object( timer );
|
|
|
|
}
|
|
|
|
}
|
2004-12-13 22:10:58 +01:00
|
|
|
|
|
|
|
/* Get information on a waitable timer */
|
|
|
|
DECL_HANDLER(get_timer_info)
|
|
|
|
{
|
|
|
|
struct timer *timer;
|
|
|
|
|
|
|
|
if ((timer = (struct timer *)get_handle_obj( current->process, req->handle,
|
|
|
|
TIMER_QUERY_STATE, &timer_ops )))
|
|
|
|
{
|
|
|
|
reply->when.sec = timer->when.tv_sec;
|
|
|
|
reply->when.usec = timer->when.tv_usec;
|
|
|
|
reply->signaled = timer->signaled;
|
|
|
|
release_object( timer );
|
|
|
|
}
|
|
|
|
}
|