makefiles: Don't use standard libs for programs that specify -nodefaultlibs.
[wine/zf.git] / dlls / winhttp / handle.c
blob9c77d5166adadaaee339bc278c9bd46f427c1cab
1 /*
2 * Copyright 2008 Hans Leidekker for CodeWeavers
4 * Based on the handle implementation from wininet.
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
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "ws2tcpip.h"
26 #include "winhttp.h"
28 #include "wine/debug.h"
29 #include "winhttp_private.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(winhttp);
33 #define HANDLE_CHUNK_SIZE 0x10
35 static CRITICAL_SECTION handle_cs;
36 static CRITICAL_SECTION_DEBUG handle_cs_debug =
38 0, 0, &handle_cs,
39 { &handle_cs_debug.ProcessLocksList, &handle_cs_debug.ProcessLocksList },
40 0, 0, { (ULONG_PTR)(__FILE__ ": handle_cs") }
42 static CRITICAL_SECTION handle_cs = { &handle_cs_debug, -1, 0, 0, 0, 0 };
44 static struct object_header **handles;
45 static ULONG_PTR next_handle;
46 static ULONG_PTR max_handles;
48 struct object_header *addref_object( struct object_header *hdr )
50 ULONG refs = InterlockedIncrement( &hdr->refs );
51 TRACE("%p -> refcount = %d\n", hdr, refs);
52 return hdr;
55 struct object_header *grab_object( HINTERNET hinternet )
57 struct object_header *hdr = NULL;
58 ULONG_PTR handle = (ULONG_PTR)hinternet;
60 EnterCriticalSection( &handle_cs );
62 if ((handle > 0) && (handle <= max_handles) && handles[handle - 1])
63 hdr = addref_object( handles[handle - 1] );
65 LeaveCriticalSection( &handle_cs );
67 TRACE("handle 0x%lx -> %p\n", handle, hdr);
68 return hdr;
71 void release_object( struct object_header *hdr )
73 ULONG refs = InterlockedDecrement( &hdr->refs );
74 TRACE("object %p refcount = %d\n", hdr, refs);
75 if (!refs)
77 if (hdr->type == WINHTTP_HANDLE_TYPE_REQUEST) close_connection( (struct request *)hdr );
79 send_callback( hdr, WINHTTP_CALLBACK_STATUS_HANDLE_CLOSING, &hdr->handle, sizeof(HINTERNET) );
81 TRACE("destroying object %p\n", hdr);
82 if (hdr->type != WINHTTP_HANDLE_TYPE_SESSION) list_remove( &hdr->entry );
83 hdr->vtbl->destroy( hdr );
87 HINTERNET alloc_handle( struct object_header *hdr )
89 struct object_header **p;
90 ULONG_PTR handle, num;
92 list_init( &hdr->children );
93 hdr->handle = NULL;
95 EnterCriticalSection( &handle_cs );
96 if (!max_handles)
98 num = HANDLE_CHUNK_SIZE;
99 if (!(p = heap_alloc_zero( sizeof(ULONG_PTR) * num ))) goto end;
100 handles = p;
101 max_handles = num;
103 if (max_handles == next_handle)
105 num = max_handles * 2;
106 if (!(p = heap_realloc_zero( handles, sizeof(ULONG_PTR) * num ))) goto end;
107 handles = p;
108 max_handles = num;
110 handle = next_handle;
111 if (handles[handle]) ERR("handle isn't free but should be\n");
113 handles[handle] = addref_object( hdr );
114 hdr->handle = (HINTERNET)(handle + 1);
115 while ((next_handle < max_handles) && handles[next_handle]) next_handle++;
117 end:
118 LeaveCriticalSection( &handle_cs );
119 return hdr->handle;
122 BOOL free_handle( HINTERNET hinternet )
124 BOOL ret = FALSE;
125 ULONG_PTR handle = (ULONG_PTR)hinternet;
126 struct object_header *hdr = NULL, *child, *next;
128 EnterCriticalSection( &handle_cs );
130 if ((handle > 0) && (handle <= max_handles))
132 handle--;
133 if (handles[handle])
135 hdr = handles[handle];
136 TRACE("destroying handle 0x%lx for object %p\n", handle + 1, hdr);
137 handles[handle] = NULL;
138 ret = TRUE;
142 LeaveCriticalSection( &handle_cs );
144 if (hdr)
146 LIST_FOR_EACH_ENTRY_SAFE( child, next, &hdr->children, struct object_header, entry )
148 TRACE("freeing child handle %p for parent handle 0x%lx\n", child->handle, handle + 1);
149 free_handle( child->handle );
151 release_object( hdr );
154 EnterCriticalSection( &handle_cs );
155 if (next_handle > handle && !handles[handle]) next_handle = handle;
156 LeaveCriticalSection( &handle_cs );
158 return ret;