Extract file directly to their target location, bypassing the need to
[wine/multimedia.git] / server / mutex.c
blobe773d441a286ca118449f9f9b8beef9219dbfafe
1 /*
2 * Server-side mutex management
4 * Copyright (C) 1998 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <stdio.h>
26 #include <stdlib.h>
28 #include "windef.h"
29 #include "winternl.h"
31 #include "handle.h"
32 #include "thread.h"
33 #include "request.h"
35 struct mutex
37 struct object obj; /* object header */
38 struct thread *owner; /* mutex owner */
39 unsigned int count; /* recursion count */
40 int abandoned; /* has it been abandoned? */
41 struct list entry; /* entry in owner thread mutex list */
44 static void mutex_dump( struct object *obj, int verbose );
45 static int mutex_signaled( struct object *obj, struct thread *thread );
46 static int mutex_satisfied( struct object *obj, struct thread *thread );
47 static void mutex_destroy( struct object *obj );
48 static int mutex_signal( struct object *obj, unsigned int access );
50 static const struct object_ops mutex_ops =
52 sizeof(struct mutex), /* size */
53 mutex_dump, /* dump */
54 add_queue, /* add_queue */
55 remove_queue, /* remove_queue */
56 mutex_signaled, /* signaled */
57 mutex_satisfied, /* satisfied */
58 mutex_signal, /* signal */
59 no_get_fd, /* get_fd */
60 no_close_handle, /* close_handle */
61 mutex_destroy /* destroy */
65 static struct mutex *create_mutex( const WCHAR *name, size_t len, int owned )
67 struct mutex *mutex;
69 if ((mutex = create_named_object( sync_namespace, &mutex_ops, name, len )))
71 if (get_error() != STATUS_OBJECT_NAME_COLLISION)
73 /* initialize it if it didn't already exist */
74 mutex->count = 0;
75 mutex->owner = NULL;
76 mutex->abandoned = 0;
77 if (owned) mutex_satisfied( &mutex->obj, current );
80 return mutex;
83 /* release a mutex once the recursion count is 0 */
84 static void do_release( struct mutex *mutex )
86 assert( !mutex->count );
87 /* remove the mutex from the thread list of owned mutexes */
88 list_remove( &mutex->entry );
89 mutex->owner = NULL;
90 wake_up( &mutex->obj, 0 );
93 void abandon_mutexes( struct thread *thread )
95 struct list *ptr;
97 while ((ptr = list_head( &thread->mutex_list )) != NULL)
99 struct mutex *mutex = LIST_ENTRY( ptr, struct mutex, entry );
100 assert( mutex->owner == thread );
101 mutex->count = 0;
102 mutex->abandoned = 1;
103 do_release( mutex );
107 static void mutex_dump( struct object *obj, int verbose )
109 struct mutex *mutex = (struct mutex *)obj;
110 assert( obj->ops == &mutex_ops );
111 fprintf( stderr, "Mutex count=%u owner=%p ", mutex->count, mutex->owner );
112 dump_object_name( &mutex->obj );
113 fputc( '\n', stderr );
116 static int mutex_signaled( struct object *obj, struct thread *thread )
118 struct mutex *mutex = (struct mutex *)obj;
119 assert( obj->ops == &mutex_ops );
120 return (!mutex->count || (mutex->owner == thread));
123 static int mutex_satisfied( struct object *obj, struct thread *thread )
125 struct mutex *mutex = (struct mutex *)obj;
126 assert( obj->ops == &mutex_ops );
127 assert( !mutex->count || (mutex->owner == thread) );
129 if (!mutex->count++) /* FIXME: avoid wrap-around */
131 assert( !mutex->owner );
132 mutex->owner = thread;
133 list_add_head( &thread->mutex_list, &mutex->entry );
135 if (!mutex->abandoned) return 0;
136 mutex->abandoned = 0;
137 return 1;
140 static int mutex_signal( struct object *obj, unsigned int access )
142 struct mutex *mutex = (struct mutex *)obj;
143 assert( obj->ops == &mutex_ops );
145 if (!(access & SYNCHRONIZE)) /* FIXME: MUTEX_MODIFY_STATE? */
147 set_error( STATUS_ACCESS_DENIED );
148 return 0;
150 if (!mutex->count || (mutex->owner != current))
152 set_error( STATUS_MUTANT_NOT_OWNED );
153 return 0;
155 if (!--mutex->count) do_release( mutex );
156 return 1;
159 static void mutex_destroy( struct object *obj )
161 struct mutex *mutex = (struct mutex *)obj;
162 assert( obj->ops == &mutex_ops );
164 if (!mutex->count) return;
165 mutex->count = 0;
166 do_release( mutex );
169 /* create a mutex */
170 DECL_HANDLER(create_mutex)
172 struct mutex *mutex;
174 reply->handle = 0;
175 if ((mutex = create_mutex( get_req_data(), get_req_data_size(), req->owned )))
177 reply->handle = alloc_handle( current->process, mutex, req->access,
178 req->attributes & OBJ_INHERIT );
179 release_object( mutex );
183 /* open a handle to a mutex */
184 DECL_HANDLER(open_mutex)
186 reply->handle = open_object( sync_namespace, get_req_data(), get_req_data_size(),
187 &mutex_ops, req->access, req->attributes );
190 /* release a mutex */
191 DECL_HANDLER(release_mutex)
193 struct mutex *mutex;
195 if ((mutex = (struct mutex *)get_handle_obj( current->process, req->handle,
196 MUTEX_MODIFY_STATE, &mutex_ops )))
198 if (!mutex->count || (mutex->owner != current)) set_error( STATUS_MUTANT_NOT_OWNED );
199 else
201 reply->prev_count = mutex->count;
202 if (!--mutex->count) do_release( mutex );
204 release_object( mutex );