Release 20031118.
[wine/multimedia.git] / server / user.c
blob6f99ac4b7e46fbe7d6d36d1ccbc1497aff13f23a
1 /*
2 * Server-side USER handles
4 * Copyright (C) 2001 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 "thread.h"
22 #include "user.h"
24 struct user_handle
26 void *ptr; /* pointer to object */
27 unsigned short type; /* object type (0 if free) */
28 unsigned short generation; /* generation counter */
31 static struct user_handle *handles;
32 static struct user_handle *freelist;
33 static int nb_handles;
34 static int allocated_handles;
36 static struct user_handle *handle_to_entry( user_handle_t handle )
38 int index = ((unsigned int)handle & 0xffff) - FIRST_USER_HANDLE;
39 if (index < 0 || index >= nb_handles) return NULL;
40 if (!handles[index].type) return NULL;
41 if (((unsigned int)handle >> 16) && ((unsigned int)handle >> 16 != handles[index].generation))
42 return NULL;
43 return &handles[index];
46 inline static user_handle_t entry_to_handle( struct user_handle *ptr )
48 int index = ptr - handles;
49 return (user_handle_t)((index + FIRST_USER_HANDLE) + (ptr->generation << 16));
52 inline static struct user_handle *alloc_user_entry(void)
54 struct user_handle *handle;
56 if (freelist)
58 handle = freelist;
59 freelist = handle->ptr;
60 return handle;
62 if (nb_handles >= allocated_handles) /* need to grow the array */
64 struct user_handle *new_handles;
65 /* grow array by 50% (but at minimum 32 entries) */
66 int growth = max( 32, allocated_handles / 2 );
67 int new_size = min( allocated_handles + growth, LAST_USER_HANDLE-FIRST_USER_HANDLE+1 );
68 if (new_size <= allocated_handles) return NULL;
69 if (!(new_handles = realloc( handles, new_size * sizeof(*handles) )))
70 return NULL;
71 handles = new_handles;
72 allocated_handles = new_size;
74 handle = &handles[nb_handles++];
75 handle->generation = 0;
76 return handle;
79 inline static void *free_user_entry( struct user_handle *ptr )
81 void *ret;
82 ret = ptr->ptr;
83 ptr->ptr = freelist;
84 ptr->type = 0;
85 freelist = ptr;
86 return ret;
89 /* allocate a user handle for a given object */
90 user_handle_t alloc_user_handle( void *ptr, enum user_object type )
92 struct user_handle *entry = alloc_user_entry();
93 if (!entry) return 0;
94 entry->ptr = ptr;
95 entry->type = type;
96 if (++entry->generation >= 0xffff) entry->generation = 1;
97 return entry_to_handle( entry );
100 /* return a pointer to a user object from its handle */
101 void *get_user_object( user_handle_t handle, enum user_object type )
103 struct user_handle *entry;
105 if (!(entry = handle_to_entry( handle )) || entry->type != type) return NULL;
106 return entry->ptr;
109 /* get the full handle for a possibly truncated handle */
110 user_handle_t get_user_full_handle( user_handle_t handle )
112 struct user_handle *entry;
114 if ((unsigned int)handle >> 16) return handle;
115 if (!(entry = handle_to_entry( handle ))) return handle;
116 return entry_to_handle( entry );
119 /* same as get_user_object plus set the handle to the full 32-bit value */
120 void *get_user_object_handle( user_handle_t *handle, enum user_object type )
122 struct user_handle *entry;
124 if (!(entry = handle_to_entry( *handle )) || entry->type != type) return NULL;
125 *handle = entry_to_handle( entry );
126 return entry->ptr;
129 /* free a user handle and return a pointer to the object */
130 void *free_user_handle( user_handle_t handle )
132 struct user_handle *entry;
134 if (!(entry = handle_to_entry( handle )))
136 set_error( STATUS_INVALID_HANDLE );
137 return NULL;
139 return free_user_entry( entry );
142 /* return the next user handle after 'handle' that is of a given type */
143 void *next_user_handle( user_handle_t *handle, enum user_object type )
145 struct user_handle *entry;
147 if (!*handle) entry = handles;
148 else
150 int index = ((unsigned int)*handle & 0xffff) - FIRST_USER_HANDLE;
151 if (index < 0 || index >= nb_handles) return NULL;
152 entry = handles + index + 1; /* start from the next one */
154 while (entry < handles + nb_handles)
156 if (!type || entry->type == type)
158 *handle = entry_to_handle( entry );
159 return entry->ptr;
161 entry++;
163 return NULL;