msvcr120: Add [_]strtoimax[_l] and [_]strtoumax[_l].
[wine.git] / server / completion.c
blobdb04727b93bb02029c8d204e9756de7c99b020f2
1 /*
2 * Server-side IO completion ports implementation
4 * Copyright (C) 2007 Andrey Turkin
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 /* FIXMEs:
23 * - built-in wait queues used which means:
24 * + threads are awaken FIFO and not LIFO as native does
25 * + "max concurrent active threads" parameter not used
26 * + completion handle is waitable, while native isn't
29 #include "config.h"
30 #include "wine/port.h"
32 #include <stdarg.h>
33 #include <stdio.h>
35 #include "ntstatus.h"
36 #define WIN32_NO_STATUS
37 #include "windef.h"
38 #include "winternl.h"
40 #include "object.h"
41 #include "file.h"
42 #include "handle.h"
43 #include "request.h"
46 struct completion
48 struct object obj;
49 struct list queue;
50 unsigned int depth;
53 static void completion_dump( struct object*, int );
54 static struct object_type *completion_get_type( struct object *obj );
55 static int completion_signaled( struct object *obj, struct wait_queue_entry *entry );
56 static unsigned int completion_map_access( struct object *obj, unsigned int access );
57 static void completion_destroy( struct object * );
59 static const struct object_ops completion_ops =
61 sizeof(struct completion), /* size */
62 completion_dump, /* dump */
63 completion_get_type, /* get_type */
64 add_queue, /* add_queue */
65 remove_queue, /* remove_queue */
66 completion_signaled, /* signaled */
67 no_satisfied, /* satisfied */
68 no_signal, /* signal */
69 no_get_fd, /* get_fd */
70 completion_map_access, /* map_access */
71 default_get_sd, /* get_sd */
72 default_set_sd, /* set_sd */
73 no_lookup_name, /* lookup_name */
74 directory_link_name, /* link_name */
75 default_unlink_name, /* unlink_name */
76 no_open_file, /* open_file */
77 no_kernel_obj_list, /* get_kernel_obj_list */
78 no_close_handle, /* close_handle */
79 completion_destroy /* destroy */
82 struct comp_msg
84 struct list queue_entry;
85 apc_param_t ckey;
86 apc_param_t cvalue;
87 apc_param_t information;
88 unsigned int status;
91 static void completion_destroy( struct object *obj)
93 struct completion *completion = (struct completion *) obj;
94 struct comp_msg *tmp, *next;
96 LIST_FOR_EACH_ENTRY_SAFE( tmp, next, &completion->queue, struct comp_msg, queue_entry )
98 free( tmp );
102 static void completion_dump( struct object *obj, int verbose )
104 struct completion *completion = (struct completion *) obj;
106 assert( obj->ops == &completion_ops );
107 fprintf( stderr, "Completion depth=%u\n", completion->depth );
110 static struct object_type *completion_get_type( struct object *obj )
112 static const WCHAR name[] = {'I','o','C','o','m','p','l','e','t','i','o','n'};
113 static const struct unicode_str str = { name, sizeof(name) };
114 return get_object_type( &str );
117 static int completion_signaled( struct object *obj, struct wait_queue_entry *entry )
119 struct completion *completion = (struct completion *)obj;
121 return !list_empty( &completion->queue );
124 static unsigned int completion_map_access( struct object *obj, unsigned int access )
126 if (access & GENERIC_READ) access |= STANDARD_RIGHTS_READ | SYNCHRONIZE | IO_COMPLETION_QUERY_STATE;
127 if (access & GENERIC_WRITE) access |= STANDARD_RIGHTS_WRITE;
128 if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE;
129 if (access & GENERIC_ALL) access |= STANDARD_RIGHTS_ALL | IO_COMPLETION_ALL_ACCESS;
130 return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
133 static struct completion *create_completion( struct object *root, const struct unicode_str *name,
134 unsigned int attr, unsigned int concurrent,
135 const struct security_descriptor *sd )
137 struct completion *completion;
139 if ((completion = create_named_object( root, &completion_ops, name, attr, sd )))
141 if (get_error() != STATUS_OBJECT_NAME_EXISTS)
143 list_init( &completion->queue );
144 completion->depth = 0;
148 return completion;
151 struct completion *get_completion_obj( struct process *process, obj_handle_t handle, unsigned int access )
153 return (struct completion *) get_handle_obj( process, handle, access, &completion_ops );
156 void add_completion( struct completion *completion, apc_param_t ckey, apc_param_t cvalue,
157 unsigned int status, apc_param_t information )
159 struct comp_msg *msg = mem_alloc( sizeof( *msg ) );
161 if (!msg)
162 return;
164 msg->ckey = ckey;
165 msg->cvalue = cvalue;
166 msg->status = status;
167 msg->information = information;
169 list_add_tail( &completion->queue, &msg->queue_entry );
170 completion->depth++;
171 wake_up( &completion->obj, 1 );
174 /* create a completion */
175 DECL_HANDLER(create_completion)
177 struct completion *completion;
178 struct unicode_str name;
179 struct object *root;
180 const struct security_descriptor *sd;
181 const struct object_attributes *objattr = get_req_object_attributes( &sd, &name, &root );
183 if (!objattr) return;
185 if ((completion = create_completion( root, &name, objattr->attributes, req->concurrent, sd )))
187 reply->handle = alloc_handle( current->process, completion, req->access, objattr->attributes );
188 release_object( completion );
191 if (root) release_object( root );
194 /* open a completion */
195 DECL_HANDLER(open_completion)
197 struct unicode_str name = get_req_unicode_str();
199 reply->handle = open_object( current->process, req->rootdir, req->access,
200 &completion_ops, &name, req->attributes );
204 /* add completion to completion port */
205 DECL_HANDLER(add_completion)
207 struct completion* completion = get_completion_obj( current->process, req->handle, IO_COMPLETION_MODIFY_STATE );
209 if (!completion) return;
211 add_completion( completion, req->ckey, req->cvalue, req->status, req->information );
213 release_object( completion );
216 /* get completion from completion port */
217 DECL_HANDLER(remove_completion)
219 struct completion* completion = get_completion_obj( current->process, req->handle, IO_COMPLETION_MODIFY_STATE );
220 struct list *entry;
221 struct comp_msg *msg;
223 if (!completion) return;
225 entry = list_head( &completion->queue );
226 if (!entry)
227 set_error( STATUS_PENDING );
228 else
230 list_remove( entry );
231 completion->depth--;
232 msg = LIST_ENTRY( entry, struct comp_msg, queue_entry );
233 reply->ckey = msg->ckey;
234 reply->cvalue = msg->cvalue;
235 reply->status = msg->status;
236 reply->information = msg->information;
237 free( msg );
240 release_object( completion );
243 /* get queue depth for completion port */
244 DECL_HANDLER(query_completion)
246 struct completion* completion = get_completion_obj( current->process, req->handle, IO_COMPLETION_QUERY_STATE );
248 if (!completion) return;
250 reply->depth = completion->depth;
252 release_object( completion );