Serge Ivanov
[wine.git] / server / object.c
blob301506451aedf10474aa590bab172b4027003f28
1 /*
2 * Server-side objects
3 * These are the server equivalent of K32OBJ
5 * Copyright (C) 1998 Alexandre Julliard
6 */
8 #include <assert.h>
9 #include <limits.h>
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include <string.h>
13 #include <unistd.h>
15 #include "thread.h"
16 #include "unicode.h"
19 struct object_name
21 struct object_name *next;
22 struct object_name *prev;
23 struct object *obj;
24 size_t len;
25 WCHAR name[1];
28 #define NAME_HASH_SIZE 37
30 static struct object_name *names[NAME_HASH_SIZE];
32 #ifdef DEBUG_OBJECTS
33 static struct object *first;
35 void dump_objects(void)
37 struct object *ptr = first;
38 while (ptr)
40 fprintf( stderr, "%p:%d: ", ptr, ptr->refcount );
41 ptr->ops->dump( ptr, 1 );
42 ptr = ptr->next;
45 #endif
47 /*****************************************************************/
49 /* malloc replacement */
50 void *mem_alloc( size_t size )
52 void *ptr = malloc( size );
53 if (ptr) memset( ptr, 0x55, size );
54 else if (current) set_error( STATUS_NO_MEMORY );
55 return ptr;
58 /* duplicate a block of memory */
59 void *memdup( const void *data, size_t len )
61 void *ptr = malloc( len );
62 if (ptr) memcpy( ptr, data, len );
63 else if (current) set_error( STATUS_NO_MEMORY );
64 return ptr;
68 /*****************************************************************/
70 static int get_name_hash( const WCHAR *name, size_t len )
72 WCHAR hash = 0;
73 while (len--) hash ^= *name++;
74 return hash % NAME_HASH_SIZE;
77 /* allocate a name for an object */
78 static struct object_name *alloc_name( const WCHAR *name, size_t len )
80 struct object_name *ptr;
82 if ((ptr = mem_alloc( sizeof(*ptr) + len * sizeof(ptr->name[0]) )))
84 ptr->len = len;
85 memcpy( ptr->name, name, len * sizeof(ptr->name[0]) );
86 ptr->name[len] = 0;
88 return ptr;
91 /* free the name of an object */
92 static void free_name( struct object *obj )
94 struct object_name *ptr = obj->name;
95 if (ptr->next) ptr->next->prev = ptr->prev;
96 if (ptr->prev) ptr->prev->next = ptr->next;
97 else
99 int hash;
100 for (hash = 0; hash < NAME_HASH_SIZE; hash++)
101 if (names[hash] == ptr)
103 names[hash] = ptr->next;
104 break;
107 free( ptr );
110 /* set the name of an existing object */
111 static void set_object_name( struct object *obj, struct object_name *ptr )
113 int hash = get_name_hash( ptr->name, ptr->len );
115 if ((ptr->next = names[hash]) != NULL) ptr->next->prev = ptr;
116 ptr->obj = obj;
117 ptr->prev = NULL;
118 names[hash] = ptr;
119 assert( !obj->name );
120 obj->name = ptr;
123 /* allocate and initialize an object */
124 /* if the function fails the fd is closed */
125 void *alloc_object( const struct object_ops *ops, int fd )
127 struct object *obj = mem_alloc( ops->size );
128 if (obj)
130 obj->refcount = 1;
131 obj->fd = fd;
132 obj->select = -1;
133 obj->ops = ops;
134 obj->head = NULL;
135 obj->tail = NULL;
136 obj->name = NULL;
137 if ((fd != -1) && (add_select_user( obj ) == -1))
139 close( fd );
140 free( obj );
141 return NULL;
143 #ifdef DEBUG_OBJECTS
144 obj->prev = NULL;
145 if ((obj->next = first) != NULL) obj->next->prev = obj;
146 first = obj;
147 #endif
148 return obj;
150 if (fd != -1) close( fd );
151 return NULL;
154 void *create_named_object( const struct object_ops *ops, const WCHAR *name, size_t len )
156 struct object *obj;
157 struct object_name *name_ptr;
159 if (!name || !len) return alloc_object( ops, -1 );
160 if (!(name_ptr = alloc_name( name, len ))) return NULL;
162 if ((obj = find_object( name_ptr->name, name_ptr->len )))
164 free( name_ptr ); /* we no longer need it */
165 if (obj->ops == ops)
167 set_error( STATUS_OBJECT_NAME_COLLISION );
168 return obj;
170 set_error( STATUS_OBJECT_TYPE_MISMATCH );
171 return NULL;
173 if ((obj = alloc_object( ops, -1 )))
175 set_object_name( obj, name_ptr );
176 clear_error();
178 else free( name_ptr );
179 return obj;
182 /* dump the name of an object to stderr */
183 void dump_object_name( struct object *obj )
185 if (!obj->name) fprintf( stderr, "name=\"\"" );
186 else
188 fprintf( stderr, "name=L\"" );
189 dump_strW( obj->name->name, strlenW(obj->name->name), stderr, "\"\"" );
190 fputc( '\"', stderr );
194 /* grab an object (i.e. increment its refcount) and return the object */
195 struct object *grab_object( void *ptr )
197 struct object *obj = (struct object *)ptr;
198 assert( obj->refcount < INT_MAX );
199 obj->refcount++;
200 return obj;
203 /* release an object (i.e. decrement its refcount) */
204 void release_object( void *ptr )
206 struct object *obj = (struct object *)ptr;
207 assert( obj->refcount );
208 if (!--obj->refcount)
210 /* if the refcount is 0, nobody can be in the wait queue */
211 assert( !obj->head );
212 assert( !obj->tail );
213 obj->ops->destroy( obj );
214 if (obj->name) free_name( obj );
215 if (obj->select != -1) remove_select_user( obj );
216 if (obj->fd != -1) close( obj->fd );
217 #ifdef DEBUG_OBJECTS
218 if (obj->next) obj->next->prev = obj->prev;
219 if (obj->prev) obj->prev->next = obj->next;
220 else first = obj->next;
221 memset( obj, 0xaa, obj->ops->size );
222 #endif
223 free( obj );
227 /* find an object by its name; the refcount is incremented */
228 struct object *find_object( const WCHAR *name, size_t len )
230 struct object_name *ptr;
231 if (!name || !len) return NULL;
232 for (ptr = names[ get_name_hash( name, len ) ]; ptr; ptr = ptr->next)
234 if (ptr->len != len) continue;
235 if (!memcmp( ptr->name, name, len*sizeof(WCHAR) )) return grab_object( ptr->obj );
237 return NULL;
240 /* functions for unimplemented/default object operations */
242 int no_add_queue( struct object *obj, struct wait_queue_entry *entry )
244 set_error( STATUS_OBJECT_TYPE_MISMATCH );
245 return 0;
248 int no_satisfied( struct object *obj, struct thread *thread )
250 return 0; /* not abandoned */
253 int no_read_fd( struct object *obj )
255 set_error( STATUS_OBJECT_TYPE_MISMATCH );
256 return -1;
259 int no_write_fd( struct object *obj )
261 set_error( STATUS_OBJECT_TYPE_MISMATCH );
262 return -1;
265 int no_flush( struct object *obj )
267 set_error( STATUS_OBJECT_TYPE_MISMATCH );
268 return 0;
271 int no_get_file_info( struct object *obj, struct get_file_info_request *info )
273 set_error( STATUS_OBJECT_TYPE_MISMATCH );
274 return 0;
277 void no_destroy( struct object *obj )
281 /* default add_queue() routine for objects that poll() on an fd */
282 int default_poll_add_queue( struct object *obj, struct wait_queue_entry *entry )
284 if (!obj->head) /* first on the queue */
285 set_select_events( obj, obj->ops->get_poll_events( obj ) );
286 add_queue( obj, entry );
287 return 1;
290 /* default remove_queue() routine for objects that poll() on an fd */
291 void default_poll_remove_queue( struct object *obj, struct wait_queue_entry *entry )
293 grab_object(obj);
294 remove_queue( obj, entry );
295 if (!obj->head) /* last on the queue is gone */
296 set_select_events( obj, 0 );
297 release_object( obj );
300 /* default signaled() routine for objects that poll() on an fd */
301 int default_poll_signaled( struct object *obj, struct thread *thread )
303 int events = obj->ops->get_poll_events( obj );
305 if (check_select_events( obj->fd, events ))
307 /* stop waiting on select() if we are signaled */
308 set_select_events( obj, 0 );
309 return 1;
311 /* restart waiting on select() if we are no longer signaled */
312 if (obj->head) set_select_events( obj, events );
313 return 0;
316 /* default handler for poll() events */
317 void default_poll_event( struct object *obj, int event )
319 /* an error occurred, stop polling this fd to avoid busy-looping */
320 if (event & (POLLERR | POLLHUP)) set_select_events( obj, -1 );
321 wake_up( obj, 0 );