3 * These are the server equivalent of K32OBJ
5 * Copyright (C) 1998 Alexandre Julliard
23 struct object_name
*next
;
24 struct object_name
*prev
;
30 #define NAME_HASH_SIZE 37
32 static struct object_name
*names
[NAME_HASH_SIZE
];
35 static struct object
*first
;
37 void dump_objects(void)
39 struct object
*ptr
= first
;
42 fprintf( stderr
, "%p:%d: ", ptr
, ptr
->refcount
);
43 ptr
->ops
->dump( ptr
, 1 );
49 /*****************************************************************/
51 /* malloc replacement */
52 void *mem_alloc( size_t size
)
54 void *ptr
= malloc( size
);
55 if (ptr
) memset( ptr
, 0x55, size
);
56 else if (current
) set_error( ERROR_OUTOFMEMORY
);
60 /* duplicate a block of memory */
61 void *memdup( const void *data
, size_t len
)
63 void *ptr
= mem_alloc( len
);
64 if (ptr
) memcpy( ptr
, data
, len
);
69 /*****************************************************************/
71 static int get_name_hash( const WCHAR
*name
, size_t len
)
74 while (len
--) hash
^= *name
++;
75 return hash
% NAME_HASH_SIZE
;
78 /* allocate a name for an object */
79 static struct object_name
*alloc_name( const WCHAR
*name
, size_t len
)
81 struct object_name
*ptr
;
83 if ((ptr
= mem_alloc( sizeof(*ptr
) + len
* sizeof(ptr
->name
[0]) )))
86 memcpy( ptr
->name
, name
, len
* sizeof(ptr
->name
[0]) );
92 /* free the name of an object */
93 static void free_name( struct object
*obj
)
95 struct object_name
*ptr
= obj
->name
;
96 if (ptr
->next
) ptr
->next
->prev
= ptr
->prev
;
97 if (ptr
->prev
) ptr
->prev
->next
= ptr
->next
;
101 for (hash
= 0; hash
< NAME_HASH_SIZE
; hash
++)
102 if (names
[hash
] == ptr
)
104 names
[hash
] = ptr
->next
;
111 /* set the name of an existing object */
112 static void set_object_name( struct object
*obj
, struct object_name
*ptr
)
114 int hash
= get_name_hash( ptr
->name
, ptr
->len
);
116 if ((ptr
->next
= names
[hash
]) != NULL
) ptr
->next
->prev
= ptr
;
120 assert( !obj
->name
);
124 /* allocate and initialize an object */
125 /* if the function fails the fd is closed */
126 void *alloc_object( const struct object_ops
*ops
, int fd
)
128 struct object
*obj
= mem_alloc( ops
->size
);
138 if ((fd
!= -1) && (add_select_user( obj
) == -1))
146 if ((obj
->next
= first
) != NULL
) obj
->next
->prev
= obj
;
151 if (fd
!= -1) close( fd
);
155 void *create_named_object( const struct object_ops
*ops
, const WCHAR
*name
, size_t len
)
158 struct object_name
*name_ptr
;
160 if (!name
|| !len
) return alloc_object( ops
, -1 );
161 if (!(name_ptr
= alloc_name( name
, len
))) return NULL
;
163 if ((obj
= find_object( name_ptr
->name
, name_ptr
->len
)))
165 free( name_ptr
); /* we no longer need it */
168 set_error( ERROR_ALREADY_EXISTS
);
171 set_error( ERROR_INVALID_HANDLE
);
174 if ((obj
= alloc_object( ops
, -1 )))
176 set_object_name( obj
, name_ptr
);
179 else free( name_ptr
);
183 /* dump the name of an object to stderr */
184 void dump_object_name( struct object
*obj
)
186 if (!obj
->name
) fprintf( stderr
, "name=\"\"" );
189 fprintf( stderr
, "name=L\"" );
190 dump_strW( obj
->name
->name
, strlenW(obj
->name
->name
), stderr
, "\"\"" );
191 fputc( '\"', stderr
);
195 /* grab an object (i.e. increment its refcount) and return the object */
196 struct object
*grab_object( void *ptr
)
198 struct object
*obj
= (struct object
*)ptr
;
199 assert( obj
->refcount
< INT_MAX
);
204 /* release an object (i.e. decrement its refcount) */
205 void release_object( void *ptr
)
207 struct object
*obj
= (struct object
*)ptr
;
208 assert( obj
->refcount
);
209 if (!--obj
->refcount
)
211 /* if the refcount is 0, nobody can be in the wait queue */
212 assert( !obj
->head
);
213 assert( !obj
->tail
);
214 obj
->ops
->destroy( obj
);
215 if (obj
->name
) free_name( obj
);
216 if (obj
->select
!= -1) remove_select_user( obj
);
217 if (obj
->fd
!= -1) close( obj
->fd
);
219 if (obj
->next
) obj
->next
->prev
= obj
->prev
;
220 if (obj
->prev
) obj
->prev
->next
= obj
->next
;
221 else first
= obj
->next
;
222 memset( obj
, 0xaa, obj
->ops
->size
);
228 /* find an object by its name; the refcount is incremented */
229 struct object
*find_object( const WCHAR
*name
, size_t len
)
231 struct object_name
*ptr
;
232 if (!name
|| !len
) return NULL
;
233 for (ptr
= names
[ get_name_hash( name
, len
) ]; ptr
; ptr
= ptr
->next
)
235 if (ptr
->len
!= len
) continue;
236 if (!memcmp( ptr
->name
, name
, len
*sizeof(WCHAR
) )) return grab_object( ptr
->obj
);
241 /* functions for unimplemented/default object operations */
243 int no_add_queue( struct object
*obj
, struct wait_queue_entry
*entry
)
245 set_error( ERROR_INVALID_HANDLE
);
249 int no_satisfied( struct object
*obj
, struct thread
*thread
)
251 return 0; /* not abandoned */
254 int no_read_fd( struct object
*obj
)
256 set_error( ERROR_INVALID_HANDLE
);
260 int no_write_fd( struct object
*obj
)
262 set_error( ERROR_INVALID_HANDLE
);
266 int no_flush( struct object
*obj
)
268 set_error( ERROR_INVALID_HANDLE
);
272 int no_get_file_info( struct object
*obj
, struct get_file_info_request
*info
)
274 set_error( ERROR_INVALID_HANDLE
);
278 void no_destroy( struct object
*obj
)
282 /* default add_queue() routine for objects that poll() on an fd */
283 int default_poll_add_queue( struct object
*obj
, struct wait_queue_entry
*entry
)
285 if (!obj
->head
) /* first on the queue */
286 set_select_events( obj
, obj
->ops
->get_poll_events( obj
) );
287 add_queue( obj
, entry
);
291 /* default remove_queue() routine for objects that poll() on an fd */
292 void default_poll_remove_queue( struct object
*obj
, struct wait_queue_entry
*entry
)
295 remove_queue( obj
, entry
);
296 if (!obj
->head
) /* last on the queue is gone */
297 set_select_events( obj
, 0 );
298 release_object( obj
);
301 /* default signaled() routine for objects that poll() on an fd */
302 int default_poll_signaled( struct object
*obj
, struct thread
*thread
)
304 int events
= obj
->ops
->get_poll_events( obj
);
306 if (check_select_events( obj
->fd
, events
))
308 /* stop waiting on select() if we are signaled */
309 set_select_events( obj
, 0 );
312 /* restart waiting on select() if we are no longer signaled */
313 if (obj
->head
) set_select_events( obj
, events
);
317 /* default handler for poll() events */
318 void default_poll_event( struct object
*obj
, int event
)
320 /* an error occurred, stop polling this fd to avoid busy-looping */
321 if (event
& (POLLERR
| POLLHUP
)) set_select_events( obj
, -1 );