123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315 |
- /*
- * Waitable timers management
- *
- * Copyright (C) 1999 Alexandre Julliard
- *
- * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
- #include "config.h"
- #include "wine/port.h"
- #include <assert.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/time.h>
- #include <sys/types.h>
- #include <stdarg.h>
- #include "ntstatus.h"
- #define WIN32_NO_STATUS
- #include "windef.h"
- #include "winternl.h"
- #include "file.h"
- #include "handle.h"
- #include "request.h"
- #include "esync.h"
- struct timer
- {
- struct object obj; /* object header */
- int manual; /* manual reset */
- int signaled; /* current signaled state */
- unsigned int period; /* timer period in ms */
- timeout_t when; /* next expiration */
- struct timeout_user *timeout; /* timeout user */
- struct thread *thread; /* thread that set the APC function */
- client_ptr_t callback; /* callback APC function */
- client_ptr_t arg; /* callback argument */
- int esync_fd; /* esync file descriptor */
- };
- static void timer_dump( struct object *obj, int verbose );
- static struct object_type *timer_get_type( struct object *obj );
- static int timer_signaled( struct object *obj, struct wait_queue_entry *entry );
- static int timer_get_esync_fd( struct object *obj, enum esync_type *type );
- static void timer_satisfied( struct object *obj, struct wait_queue_entry *entry );
- static unsigned int timer_map_access( struct object *obj, unsigned int access );
- static void timer_destroy( struct object *obj );
- static const struct object_ops timer_ops =
- {
- sizeof(struct timer), /* size */
- timer_dump, /* dump */
- timer_get_type, /* get_type */
- add_queue, /* add_queue */
- remove_queue, /* remove_queue */
- timer_signaled, /* signaled */
- timer_get_esync_fd, /* get_esync_fd */
- timer_satisfied, /* satisfied */
- no_signal, /* signal */
- no_get_fd, /* get_fd */
- timer_map_access, /* map_access */
- default_get_sd, /* get_sd */
- default_set_sd, /* set_sd */
- no_lookup_name, /* lookup_name */
- directory_link_name, /* link_name */
- default_unlink_name, /* unlink_name */
- no_open_file, /* open_file */
- no_kernel_obj_list, /* get_kernel_obj_list */
- no_alloc_handle, /* alloc_handle */
- no_close_handle, /* close_handle */
- timer_destroy /* destroy */
- };
- /* create a timer object */
- static struct timer *create_timer( struct object *root, const struct unicode_str *name,
- unsigned int attr, int manual, const struct security_descriptor *sd )
- {
- struct timer *timer;
- if ((timer = create_named_object( root, &timer_ops, name, attr, sd )))
- {
- if (get_error() != STATUS_OBJECT_NAME_EXISTS)
- {
- /* initialize it if it didn't already exist */
- timer->manual = manual;
- timer->signaled = 0;
- timer->when = 0;
- timer->period = 0;
- timer->timeout = NULL;
- timer->thread = NULL;
- if (do_esync())
- timer->esync_fd = esync_create_fd( 0, 0 );
- }
- }
- return timer;
- }
- /* callback on timer expiration */
- static void timer_callback( void *private )
- {
- struct timer *timer = (struct timer *)private;
- /* queue an APC */
- if (timer->thread)
- {
- apc_call_t data;
- memset( &data, 0, sizeof(data) );
- if (timer->callback)
- {
- data.type = APC_TIMER;
- data.timer.func = timer->callback;
- data.timer.time = timer->when;
- data.timer.arg = timer->arg;
- }
- else data.type = APC_NONE; /* wake up only */
- if (!thread_queue_apc( NULL, timer->thread, &timer->obj, &data ))
- {
- release_object( timer->thread );
- timer->thread = NULL;
- }
- }
- if (timer->period) /* schedule the next expiration */
- {
- timer->when += (timeout_t)timer->period * 10000;
- 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 );
- }
- /* cancel a running timer */
- static int cancel_timer( struct timer *timer )
- {
- int signaled = timer->signaled;
- if (timer->timeout)
- {
- remove_timeout_user( timer->timeout );
- timer->timeout = NULL;
- }
- if (timer->thread)
- {
- thread_cancel_apc( timer->thread, &timer->obj, APC_TIMER );
- release_object( timer->thread );
- timer->thread = NULL;
- }
- return signaled;
- }
- /* set the timer expiration and period */
- static int set_timer( struct timer *timer, timeout_t expire, unsigned int period,
- client_ptr_t callback, client_ptr_t arg )
- {
- int signaled = cancel_timer( timer );
- if (timer->manual)
- {
- period = 0; /* period doesn't make any sense for a manual timer */
- timer->signaled = 0;
- if (do_esync())
- esync_clear( timer->esync_fd );
- }
- timer->when = (expire <= 0) ? current_time - expire : max( expire, current_time );
- timer->period = period;
- timer->callback = callback;
- timer->arg = arg;
- if (callback) timer->thread = (struct thread *)grab_object( current );
- timer->timeout = add_timeout_user( timer->when, timer_callback, timer );
- return signaled;
- }
- static void timer_dump( struct object *obj, int verbose )
- {
- struct timer *timer = (struct timer *)obj;
- assert( obj->ops == &timer_ops );
- fprintf( stderr, "Timer manual=%d when=%s period=%u\n",
- timer->manual, get_timeout_str(timer->when), timer->period );
- }
- static struct object_type *timer_get_type( struct object *obj )
- {
- static const struct unicode_str str = { type_Timer, sizeof(type_Timer) };
- return get_object_type( &str );
- }
- static int timer_signaled( struct object *obj, struct wait_queue_entry *entry )
- {
- struct timer *timer = (struct timer *)obj;
- assert( obj->ops == &timer_ops );
- return timer->signaled;
- }
- static int timer_get_esync_fd( struct object *obj, enum esync_type *type )
- {
- struct timer *timer = (struct timer *)obj;
- *type = timer->manual ? ESYNC_MANUAL_SERVER : ESYNC_AUTO_SERVER;
- return timer->esync_fd;
- }
- static void timer_satisfied( struct object *obj, struct wait_queue_entry *entry )
- {
- struct timer *timer = (struct timer *)obj;
- assert( obj->ops == &timer_ops );
- if (!timer->manual) timer->signaled = 0;
- }
- 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);
- }
- 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 );
- if (timer->thread) release_object( timer->thread );
- }
- /* create a timer */
- DECL_HANDLER(create_timer)
- {
- struct timer *timer;
- struct unicode_str name;
- struct object *root;
- const struct security_descriptor *sd;
- const struct object_attributes *objattr = get_req_object_attributes( &sd, &name, &root );
- if (!objattr) return;
- if ((timer = create_timer( root, &name, objattr->attributes, req->manual, sd )))
- {
- reply->handle = alloc_handle( current->process, timer, req->access, objattr->attributes );
- release_object( timer );
- }
- if (root) release_object( root );
- }
- /* open a handle to a timer */
- DECL_HANDLER(open_timer)
- {
- struct unicode_str name = get_req_unicode_str();
- reply->handle = open_object( current->process, req->rootdir, req->access,
- &timer_ops, &name, req->attributes );
- }
- /* 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 )))
- {
- reply->signaled = set_timer( timer, req->expire, req->period, req->callback, req->arg );
- 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 )))
- {
- reply->signaled = cancel_timer( timer );
- release_object( timer );
- }
- }
- /* 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 = timer->when;
- reply->signaled = timer->signaled;
- release_object( timer );
- }
- }
|