2 * Waitable timers management
4 * Copyright (C) 1999 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
28 #include <sys/types.h>
32 #define WIN32_NO_STATUS
40 static const WCHAR timer_name
[] = {'T','i','m','e','r'};
42 struct type_descr timer_type
=
44 { timer_name
, sizeof(timer_name
) }, /* name */
45 TIMER_ALL_ACCESS
, /* valid_access */
47 STANDARD_RIGHTS_READ
| TIMER_QUERY_STATE
,
48 STANDARD_RIGHTS_WRITE
| TIMER_MODIFY_STATE
,
49 STANDARD_RIGHTS_EXECUTE
| SYNCHRONIZE
,
56 struct object obj
; /* object header */
57 int manual
; /* manual reset */
58 int signaled
; /* current signaled state */
59 unsigned int period
; /* timer period in ms */
60 abstime_t when
; /* next expiration */
61 struct timeout_user
*timeout
; /* timeout user */
62 struct thread
*thread
; /* thread that set the APC function */
63 client_ptr_t callback
; /* callback APC function */
64 client_ptr_t arg
; /* callback argument */
67 static void timer_dump( struct object
*obj
, int verbose
);
68 static int timer_signaled( struct object
*obj
, struct wait_queue_entry
*entry
);
69 static void timer_satisfied( struct object
*obj
, struct wait_queue_entry
*entry
);
70 static void timer_destroy( struct object
*obj
);
72 static const struct object_ops timer_ops
=
74 sizeof(struct timer
), /* size */
75 &timer_type
, /* type */
76 timer_dump
, /* dump */
77 add_queue
, /* add_queue */
78 remove_queue
, /* remove_queue */
79 timer_signaled
, /* signaled */
80 timer_satisfied
, /* satisfied */
81 no_signal
, /* signal */
82 no_get_fd
, /* get_fd */
83 default_map_access
, /* map_access */
84 default_get_sd
, /* get_sd */
85 default_set_sd
, /* set_sd */
86 default_get_full_name
, /* get_full_name */
87 no_lookup_name
, /* lookup_name */
88 directory_link_name
, /* link_name */
89 default_unlink_name
, /* unlink_name */
90 no_open_file
, /* open_file */
91 no_kernel_obj_list
, /* get_kernel_obj_list */
92 no_close_handle
, /* close_handle */
93 timer_destroy
/* destroy */
97 /* create a timer object */
98 static struct timer
*create_timer( struct object
*root
, const struct unicode_str
*name
,
99 unsigned int attr
, int manual
, const struct security_descriptor
*sd
)
103 if ((timer
= create_named_object( root
, &timer_ops
, name
, attr
, sd
)))
105 if (get_error() != STATUS_OBJECT_NAME_EXISTS
)
107 /* initialize it if it didn't already exist */
108 timer
->manual
= manual
;
112 timer
->timeout
= NULL
;
113 timer
->thread
= NULL
;
119 /* callback on timer expiration */
120 static void timer_callback( void *private )
122 struct timer
*timer
= (struct timer
*)private;
129 memset( &data
, 0, sizeof(data
) );
132 data
.type
= APC_TIMER
;
133 data
.user
.timer
.func
= timer
->callback
;
134 data
.user
.timer
.time
= timer
->when
;
135 data
.user
.timer
.arg
= timer
->arg
;
137 else data
.type
= APC_NONE
; /* wake up only */
139 if (!thread_queue_apc( NULL
, timer
->thread
, &timer
->obj
, &data
))
141 release_object( timer
->thread
);
142 timer
->thread
= NULL
;
146 if (timer
->period
) /* schedule the next expiration */
148 if (timer
->when
> 0) timer
->when
= -monotonic_time
;
149 timer
->when
-= (abstime_t
)timer
->period
* 10000;
150 timer
->timeout
= add_timeout_user( abstime_to_timeout(timer
->when
), timer_callback
, timer
);
152 else timer
->timeout
= NULL
;
154 /* wake up waiters */
156 wake_up( &timer
->obj
, 0 );
159 /* cancel a running timer */
160 static int cancel_timer( struct timer
*timer
)
162 int signaled
= timer
->signaled
;
166 remove_timeout_user( timer
->timeout
);
167 timer
->timeout
= NULL
;
171 thread_cancel_apc( timer
->thread
, &timer
->obj
, APC_TIMER
);
172 release_object( timer
->thread
);
173 timer
->thread
= NULL
;
178 /* set the timer expiration and period */
179 static int set_timer( struct timer
*timer
, timeout_t expire
, unsigned int period
,
180 client_ptr_t callback
, client_ptr_t arg
)
182 int signaled
= cancel_timer( timer
);
185 period
= 0; /* period doesn't make any sense for a manual timer */
188 timer
->when
= (expire
<= 0) ? expire
- monotonic_time
: max( expire
, current_time
);
189 timer
->period
= period
;
190 timer
->callback
= callback
;
192 if (callback
) timer
->thread
= (struct thread
*)grab_object( current
);
193 if (expire
!= TIMEOUT_INFINITE
)
194 timer
->timeout
= add_timeout_user( expire
, timer_callback
, timer
);
198 static void timer_dump( struct object
*obj
, int verbose
)
200 struct timer
*timer
= (struct timer
*)obj
;
201 timeout_t timeout
= abstime_to_timeout( timer
->when
);
202 assert( obj
->ops
== &timer_ops
);
203 fprintf( stderr
, "Timer manual=%d when=%s period=%u\n",
204 timer
->manual
, get_timeout_str(timeout
), timer
->period
);
207 static int timer_signaled( struct object
*obj
, struct wait_queue_entry
*entry
)
209 struct timer
*timer
= (struct timer
*)obj
;
210 assert( obj
->ops
== &timer_ops
);
211 return timer
->signaled
;
214 static void timer_satisfied( struct object
*obj
, struct wait_queue_entry
*entry
)
216 struct timer
*timer
= (struct timer
*)obj
;
217 assert( obj
->ops
== &timer_ops
);
218 if (!timer
->manual
) timer
->signaled
= 0;
221 static void timer_destroy( struct object
*obj
)
223 struct timer
*timer
= (struct timer
*)obj
;
224 assert( obj
->ops
== &timer_ops
);
226 if (timer
->timeout
) remove_timeout_user( timer
->timeout
);
227 if (timer
->thread
) release_object( timer
->thread
);
231 DECL_HANDLER(create_timer
)
234 struct unicode_str name
;
236 const struct security_descriptor
*sd
;
237 const struct object_attributes
*objattr
= get_req_object_attributes( &sd
, &name
, &root
);
239 if (!objattr
) return;
241 if ((timer
= create_timer( root
, &name
, objattr
->attributes
, req
->manual
, sd
)))
243 reply
->handle
= alloc_handle( current
->process
, timer
, req
->access
, objattr
->attributes
);
244 release_object( timer
);
247 if (root
) release_object( root
);
250 /* open a handle to a timer */
251 DECL_HANDLER(open_timer
)
253 struct unicode_str name
= get_req_unicode_str();
255 reply
->handle
= open_object( current
->process
, req
->rootdir
, req
->access
,
256 &timer_ops
, &name
, req
->attributes
);
259 /* set a waitable timer */
260 DECL_HANDLER(set_timer
)
264 if ((timer
= (struct timer
*)get_handle_obj( current
->process
, req
->handle
,
265 TIMER_MODIFY_STATE
, &timer_ops
)))
267 reply
->signaled
= set_timer( timer
, req
->expire
, req
->period
, req
->callback
, req
->arg
);
268 release_object( timer
);
272 /* cancel a waitable timer */
273 DECL_HANDLER(cancel_timer
)
277 if ((timer
= (struct timer
*)get_handle_obj( current
->process
, req
->handle
,
278 TIMER_MODIFY_STATE
, &timer_ops
)))
280 reply
->signaled
= cancel_timer( timer
);
281 release_object( timer
);
285 /* Get information on a waitable timer */
286 DECL_HANDLER(get_timer_info
)
290 if ((timer
= (struct timer
*)get_handle_obj( current
->process
, req
->handle
,
291 TIMER_QUERY_STATE
, &timer_ops
)))
293 reply
->when
= timer
->when
;
294 reply
->signaled
= timer
->signaled
;
295 release_object( timer
);