mstask: Implement ITask::DeleteTrigger().
[wine.git] / dlls / ole32 / git.c
blobf7a04601543f037a5ade101e87025be957a548d5
1 /*
2 * Implementation of the StdGlobalInterfaceTable object
4 * The GlobalInterfaceTable (GIT) object is used to marshal interfaces between
5 * threading apartments (contexts). When you want to pass an interface but not
6 * as a parameter, it wouldn't get marshalled automatically, so you can use this
7 * object to insert the interface into a table, and you get back a cookie.
8 * Then when it's retrieved, it'll be unmarshalled into the right apartment.
10 * Copyright 2003 Mike Hearn <mike@theoretic.com>
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include <stdarg.h>
29 #define COBJMACROS
31 #include "windef.h"
32 #include "winbase.h"
33 #include "winuser.h"
34 #include "objbase.h"
35 #include "ole2.h"
36 #include "winerror.h"
38 #include "compobj_private.h"
40 #include "wine/list.h"
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(ole);
45 /****************************************************************************
46 * StdGlobalInterfaceTable definition
48 * This class implements IGlobalInterfaceTable and is a process-wide singleton
49 * used for marshalling interfaces between threading apartments using cookies.
52 /* Each entry in the linked list of GIT entries */
53 typedef struct StdGITEntry
55 DWORD cookie;
56 IID iid; /* IID of the interface */
57 IStream* stream; /* Holds the marshalled interface */
59 struct list entry;
60 } StdGITEntry;
62 /* Class data */
63 typedef struct StdGlobalInterfaceTableImpl
65 IGlobalInterfaceTable IGlobalInterfaceTable_iface;
67 struct list list;
68 ULONG nextCookie;
70 } StdGlobalInterfaceTableImpl;
72 static IGlobalInterfaceTable *std_git;
74 static CRITICAL_SECTION git_section;
75 static CRITICAL_SECTION_DEBUG critsect_debug =
77 0, 0, &git_section,
78 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
79 0, 0, { (DWORD_PTR)(__FILE__ ": global interface table") }
81 static CRITICAL_SECTION git_section = { &critsect_debug, -1, 0, 0, 0, 0 };
84 static inline StdGlobalInterfaceTableImpl *impl_from_IGlobalInterfaceTable(IGlobalInterfaceTable *iface)
86 return CONTAINING_RECORD(iface, StdGlobalInterfaceTableImpl, IGlobalInterfaceTable_iface);
89 /***
90 * A helper function to traverse the list and find the entry that matches the cookie.
91 * Returns NULL if not found. Must be called inside git_section critical section.
93 static StdGITEntry* StdGlobalInterfaceTable_FindEntry(StdGlobalInterfaceTableImpl* This,
94 DWORD cookie)
96 StdGITEntry* e;
98 TRACE("This=%p, cookie=0x%x\n", This, cookie);
100 LIST_FOR_EACH_ENTRY(e, &This->list, StdGITEntry, entry) {
101 if (e->cookie == cookie)
102 return e;
105 TRACE("Entry not found\n");
106 return NULL;
109 /***
110 * Here's the boring boilerplate stuff for IUnknown
113 static HRESULT WINAPI
114 StdGlobalInterfaceTable_QueryInterface(IGlobalInterfaceTable* iface,
115 REFIID riid, void** ppvObject)
117 /* Make sure silly coders can't crash us */
118 if (ppvObject == 0) return E_INVALIDARG;
120 *ppvObject = 0; /* assume we don't have the interface */
122 /* Do we implement that interface? */
123 if (IsEqualIID(&IID_IUnknown, riid) ||
124 IsEqualIID(&IID_IGlobalInterfaceTable, riid))
125 *ppvObject = iface;
126 else
127 return E_NOINTERFACE;
129 /* Now inc the refcount */
130 IGlobalInterfaceTable_AddRef(iface);
131 return S_OK;
134 static ULONG WINAPI
135 StdGlobalInterfaceTable_AddRef(IGlobalInterfaceTable* iface)
137 return 1;
140 static ULONG WINAPI
141 StdGlobalInterfaceTable_Release(IGlobalInterfaceTable* iface)
143 return 1;
146 /***
147 * Now implement the actual IGlobalInterfaceTable interface
150 static HRESULT WINAPI
151 StdGlobalInterfaceTable_RegisterInterfaceInGlobal(
152 IGlobalInterfaceTable* iface, IUnknown* pUnk,
153 REFIID riid, DWORD* pdwCookie)
155 StdGlobalInterfaceTableImpl* const This = impl_from_IGlobalInterfaceTable(iface);
156 IStream* stream = NULL;
157 HRESULT hres;
158 StdGITEntry* entry;
159 LARGE_INTEGER zero;
161 TRACE("iface=%p, pUnk=%p, riid=%s, pdwCookie=0x%p\n", iface, pUnk, debugstr_guid(riid), pdwCookie);
163 if (pUnk == NULL) return E_INVALIDARG;
165 /* marshal the interface */
166 TRACE("About to marshal the interface\n");
168 hres = CreateStreamOnHGlobal(0, TRUE, &stream);
169 if (hres != S_OK) return hres;
170 hres = CoMarshalInterface(stream, riid, pUnk, MSHCTX_INPROC, NULL, MSHLFLAGS_TABLESTRONG);
171 if (hres != S_OK)
173 IStream_Release(stream);
174 return hres;
177 zero.QuadPart = 0;
178 IStream_Seek(stream, zero, STREAM_SEEK_SET, NULL);
180 entry = HeapAlloc(GetProcessHeap(), 0, sizeof(StdGITEntry));
181 if (!entry)
183 CoReleaseMarshalData(stream);
184 IStream_Release(stream);
185 return E_OUTOFMEMORY;
188 EnterCriticalSection(&git_section);
190 entry->iid = *riid;
191 entry->stream = stream;
192 entry->cookie = This->nextCookie;
193 This->nextCookie++; /* inc the cookie count */
195 /* insert the new entry at the end of the list */
196 list_add_tail(&This->list, &entry->entry);
198 /* and return the cookie */
199 *pdwCookie = entry->cookie;
201 LeaveCriticalSection(&git_section);
203 TRACE("Cookie is 0x%x\n", entry->cookie);
204 return S_OK;
207 static HRESULT WINAPI
208 StdGlobalInterfaceTable_RevokeInterfaceFromGlobal(
209 IGlobalInterfaceTable* iface, DWORD dwCookie)
211 StdGlobalInterfaceTableImpl* This = impl_from_IGlobalInterfaceTable(iface);
212 StdGITEntry* entry;
213 HRESULT hr;
215 TRACE("iface=%p, dwCookie=0x%x\n", iface, dwCookie);
217 EnterCriticalSection(&git_section);
219 entry = StdGlobalInterfaceTable_FindEntry(This, dwCookie);
220 if (entry == NULL) {
221 TRACE("Entry not found\n");
222 LeaveCriticalSection(&git_section);
223 return E_INVALIDARG; /* not found */
226 list_remove(&entry->entry);
228 LeaveCriticalSection(&git_section);
230 /* Free the stream */
231 hr = CoReleaseMarshalData(entry->stream);
232 if (hr != S_OK)
234 WARN("Failed to release marshal data, hr = 0x%08x\n", hr);
235 return hr;
237 IStream_Release(entry->stream);
239 HeapFree(GetProcessHeap(), 0, entry);
240 return S_OK;
243 static HRESULT WINAPI
244 StdGlobalInterfaceTable_GetInterfaceFromGlobal(
245 IGlobalInterfaceTable* iface, DWORD dwCookie,
246 REFIID riid, void **ppv)
248 StdGlobalInterfaceTableImpl* This = impl_from_IGlobalInterfaceTable(iface);
249 StdGITEntry* entry;
250 HRESULT hres;
251 IStream *stream;
253 TRACE("dwCookie=0x%x, riid=%s, ppv=%p\n", dwCookie, debugstr_guid(riid), ppv);
255 EnterCriticalSection(&git_section);
257 entry = StdGlobalInterfaceTable_FindEntry(This, dwCookie);
258 if (entry == NULL) {
259 WARN("Entry for cookie 0x%x not found\n", dwCookie);
260 LeaveCriticalSection(&git_section);
261 return E_INVALIDARG;
264 TRACE("entry=%p\n", entry);
266 hres = IStream_Clone(entry->stream, &stream);
268 LeaveCriticalSection(&git_section);
270 if (hres != S_OK) {
271 WARN("Failed to clone stream with error 0x%08x\n", hres);
272 return hres;
275 /* unmarshal the interface */
276 hres = CoUnmarshalInterface(stream, riid, ppv);
277 IStream_Release(stream);
279 if (hres != S_OK) {
280 WARN("Failed to unmarshal stream\n");
281 return hres;
284 TRACE("ppv=%p\n", *ppv);
285 return S_OK;
288 /* Classfactory definition - despite what MSDN says, some programs need this */
290 static HRESULT WINAPI
291 GITCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid, LPVOID *ppv)
293 *ppv = NULL;
294 if (IsEqualIID(riid, &IID_IUnknown) ||
295 IsEqualIID(riid, &IID_IClassFactory))
297 *ppv = iface;
298 return S_OK;
300 return E_NOINTERFACE;
303 static ULONG WINAPI GITCF_AddRef(LPCLASSFACTORY iface)
305 return 2;
308 static ULONG WINAPI GITCF_Release(LPCLASSFACTORY iface)
310 return 1;
313 static HRESULT WINAPI
314 GITCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pUnk,
315 REFIID riid, LPVOID *ppv)
317 if (IsEqualIID(riid,&IID_IGlobalInterfaceTable)) {
318 IGlobalInterfaceTable *git = get_std_git();
319 return IGlobalInterfaceTable_QueryInterface(git, riid, ppv);
322 FIXME("(%s), not supported.\n",debugstr_guid(riid));
323 return E_NOINTERFACE;
326 static HRESULT WINAPI GITCF_LockServer(LPCLASSFACTORY iface, BOOL fLock)
328 FIXME("(%d), stub!\n",fLock);
329 return S_OK;
332 static const IClassFactoryVtbl GITClassFactoryVtbl = {
333 GITCF_QueryInterface,
334 GITCF_AddRef,
335 GITCF_Release,
336 GITCF_CreateInstance,
337 GITCF_LockServer
340 static IClassFactory git_classfactory = { &GITClassFactoryVtbl };
342 HRESULT StdGlobalInterfaceTable_GetFactory(LPVOID *ppv)
344 *ppv = &git_classfactory;
345 TRACE("Returning GIT classfactory\n");
346 return S_OK;
349 /* Virtual function table */
350 static const IGlobalInterfaceTableVtbl StdGlobalInterfaceTableImpl_Vtbl =
352 StdGlobalInterfaceTable_QueryInterface,
353 StdGlobalInterfaceTable_AddRef,
354 StdGlobalInterfaceTable_Release,
355 StdGlobalInterfaceTable_RegisterInterfaceInGlobal,
356 StdGlobalInterfaceTable_RevokeInterfaceFromGlobal,
357 StdGlobalInterfaceTable_GetInterfaceFromGlobal
360 IGlobalInterfaceTable* get_std_git(void)
362 if (!std_git)
364 StdGlobalInterfaceTableImpl* newGIT;
366 newGIT = HeapAlloc(GetProcessHeap(), 0, sizeof(StdGlobalInterfaceTableImpl));
367 if (!newGIT) return NULL;
369 newGIT->IGlobalInterfaceTable_iface.lpVtbl = &StdGlobalInterfaceTableImpl_Vtbl;
370 list_init(&newGIT->list);
371 newGIT->nextCookie = 0xf100; /* that's where windows starts, so that's where we start */
373 if (InterlockedCompareExchangePointer((void**)&std_git, &newGIT->IGlobalInterfaceTable_iface, NULL))
375 HeapFree(GetProcessHeap(), 0, newGIT);
377 else
378 TRACE("Created the GIT at %p\n", newGIT);
381 return std_git;
384 void release_std_git(void)
386 StdGlobalInterfaceTableImpl *git;
387 StdGITEntry *entry, *entry2;
389 if (!std_git) return;
391 git = impl_from_IGlobalInterfaceTable(std_git);
392 LIST_FOR_EACH_ENTRY_SAFE(entry, entry2, &git->list, StdGITEntry, entry)
394 list_remove(&entry->entry);
396 CoReleaseMarshalData(entry->stream);
397 IStream_Release(entry->stream);
398 HeapFree(GetProcessHeap(), 0, entry);
401 HeapFree(GetProcessHeap(), 0, git);