2 * SHLWAPI thread and MT synchronisation functions
4 * Copyright 2002 Juergen Schmied
5 * Copyright 2002 Jon Griffiths
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #define NO_SHLWAPI_REG
31 #define NO_SHLWAPI_PATH
32 #define NO_SHLWAPI_GDI
33 #define NO_SHLWAPI_STREAM
34 #define NO_SHLWAPI_USER
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(shell
);
41 extern DWORD SHLWAPI_ThreadRef_index
; /* Initialised in shlwapi_main.c */
43 INT WINAPI
SHStringFromGUIDA(REFGUID
,LPSTR
,INT
);
45 /**************************************************************************
46 * CreateAllAccessSecurityAttributes [SHLWAPI.356]
48 * Initialise security attributes from a security descriptor.
51 * lpAttr [O] Security attributes
52 * lpSec [I] Security descriptor
55 * Success: lpAttr, initialised using lpSec.
56 * Failure: NULL, if any parameters are invalid.
59 * This function always returns NULL if the underlying OS version
60 * Wine is impersonating does not use security descriptors (i.e. anything
63 LPSECURITY_ATTRIBUTES WINAPI
CreateAllAccessSecurityAttributes(
64 LPSECURITY_ATTRIBUTES lpAttr
,
65 PSECURITY_DESCRIPTOR lpSec
,
68 /* This function is used within SHLWAPI only to create security attributes
69 * for shell semaphores. */
71 TRACE("(%p,%p,%08x)\n", lpAttr
, lpSec
, p3
);
73 if (!(GetVersion() & 0x80000000)) /* NT */
75 if (!lpSec
|| !lpAttr
)
78 if (InitializeSecurityDescriptor(lpSec
, 1))
80 if (SetSecurityDescriptorDacl(lpSec
, TRUE
, NULL
, FALSE
))
82 lpAttr
->nLength
= sizeof(SECURITY_ATTRIBUTES
);
83 lpAttr
->lpSecurityDescriptor
= lpSec
;
84 lpAttr
->bInheritHandle
= FALSE
;
92 /*************************************************************************
93 * _SHGetInstanceExplorer [SHLWAPI.@]
95 * Get an interface to the shell explorer.
98 * lppUnknown [O] Destination for explorers IUnknown interface.
101 * Success: S_OK. lppUnknown contains the explorer interface.
102 * Failure: An HRESULT error code.
104 HRESULT WINAPI
_SHGetInstanceExplorer(IUnknown
**lppUnknown
)
106 /* This function is used within SHLWAPI only to hold the IE reference
107 * for threads created with the CTF_PROCESS_REF flag set. */
108 return SHGetInstanceExplorer(lppUnknown
);
111 /* Internal thread information structure */
112 typedef struct tagSHLWAPI_THREAD_INFO
114 LPTHREAD_START_ROUTINE pfnThreadProc
; /* Thread start */
115 LPTHREAD_START_ROUTINE pfnCallback
; /* Thread initialisation */
116 PVOID pData
; /* Application specific data */
117 BOOL bInitCom
; /* Initialise COM for the thread? */
118 HANDLE hEvent
; /* Signal for creator to continue */
119 IUnknown
*refThread
; /* Reference to thread creator */
120 IUnknown
*refIE
; /* Reference to the IE process */
121 } SHLWAPI_THREAD_INFO
, *LPSHLWAPI_THREAD_INFO
;
124 /*************************************************************************
125 * SHGetThreadRef [SHLWAPI.@]
127 * Get a per-thread object reference set by SHSetThreadRef().
130 * lppUnknown [O] Destination to receive object reference
133 * Success: S_OK. lppUnknown is set to the object reference.
134 * Failure: E_NOINTERFACE, if an error occurs or lppUnknown is NULL.
136 HRESULT WINAPI
SHGetThreadRef(IUnknown
**lppUnknown
)
138 TRACE("(%p)\n", lppUnknown
);
140 if (!lppUnknown
|| SHLWAPI_ThreadRef_index
== TLS_OUT_OF_INDEXES
)
141 return E_NOINTERFACE
;
143 *lppUnknown
= TlsGetValue(SHLWAPI_ThreadRef_index
);
145 return E_NOINTERFACE
;
147 /* Add a reference. Caller will Release() us when finished */
148 IUnknown_AddRef(*lppUnknown
);
152 /*************************************************************************
153 * SHSetThreadRef [SHLWAPI.@]
155 * Store a per-thread object reference.
158 * lpUnknown [I] Object reference to store
161 * Success: S_OK. lpUnknown is stored and can be retrieved by SHGetThreadRef()
162 * Failure: E_NOINTERFACE, if an error occurs or lpUnknown is NULL.
164 HRESULT WINAPI
SHSetThreadRef(IUnknown
*lpUnknown
)
166 TRACE("(%p)\n", lpUnknown
);
168 if (!lpUnknown
|| SHLWAPI_ThreadRef_index
== TLS_OUT_OF_INDEXES
)
169 return E_NOINTERFACE
;
171 TlsSetValue(SHLWAPI_ThreadRef_index
, lpUnknown
);
175 /*************************************************************************
176 * SHReleaseThreadRef [SHLWAPI.@]
178 * Release a per-thread object reference.
184 * Success: S_OK. The threads object reference is released.
185 * Failure: An HRESULT error code.
187 HRESULT WINAPI
SHReleaseThreadRef(void)
189 FIXME("() - stub!\n");
193 /*************************************************************************
194 * SHLWAPI_ThreadWrapper
196 * Internal wrapper for executing user thread functions from SHCreateThread.
198 static DWORD WINAPI
SHLWAPI_ThreadWrapper(PVOID pTi
)
200 SHLWAPI_THREAD_INFO ti
;
201 HRESULT hCom
= E_FAIL
;
204 TRACE("(%p)\n", pTi
);
206 /* We are now executing in the context of the newly created thread.
207 * So we copy the data passed to us (it is on the stack of the function
208 * that called us, which is waiting for us to signal an event before
210 memcpy(&ti
, pTi
, sizeof(SHLWAPI_THREAD_INFO
));
212 /* Initialise COM for the thread, if desired */
215 hCom
= CoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
|COINIT_DISABLE_OLE1DDE
);
218 hCom
= CoInitializeEx(NULL
, COINIT_DISABLE_OLE1DDE
);
221 /* Execute the callback function before returning */
223 ti
.pfnCallback(ti
.pData
);
225 /* Signal the thread that created us; it can return now */
228 /* Execute the callers start code */
229 dwRet
= ti
.pfnThreadProc(ti
.pData
);
231 /* Release references to the caller and IE process, if held */
233 IUnknown_Release(ti
.refThread
);
236 IUnknown_Release(ti
.refIE
);
241 /* Return the users thread return value */
245 /*************************************************************************
246 * SHCreateThread [SHLWAPI.16]
248 * Create a new thread.
251 * pfnThreadProc [I] Function to execute in new thread
252 * pData [I] Application specific data passed to pfnThreadProc
253 * dwFlags [I] CTF_ flags from "shlwapi.h"
254 * pfnCallback [I] Function to execute before pfnThreadProc
257 * Success: TRUE. pfnThreadProc was executed.
258 * Failure: FALSE. pfnThreadProc was not executed.
261 * If the thread cannot be created, pfnCallback is NULL, and dwFlags
262 * has bit CTF_INSIST set, pfnThreadProc will be executed synchronously.
264 BOOL WINAPI
SHCreateThread(LPTHREAD_START_ROUTINE pfnThreadProc
, VOID
*pData
,
265 DWORD dwFlags
, LPTHREAD_START_ROUTINE pfnCallback
)
267 SHLWAPI_THREAD_INFO ti
;
268 BOOL bCalled
= FALSE
;
270 TRACE("(%p,%p,0x%X,%p)\n", pfnThreadProc
, pData
, dwFlags
, pfnCallback
);
272 /* Set up data to pass to the new thread (On our stack) */
273 ti
.pfnThreadProc
= pfnThreadProc
;
274 ti
.pfnCallback
= pfnCallback
;
276 ti
.bInitCom
= dwFlags
& CTF_COINIT
? TRUE
: FALSE
;
277 ti
.hEvent
= CreateEventW(NULL
,FALSE
,FALSE
,NULL
);
279 /* Hold references to the current thread and IE process, if desired */
280 if(dwFlags
& CTF_THREAD_REF
)
281 SHGetThreadRef(&ti
.refThread
);
285 if(dwFlags
& CTF_PROCESS_REF
)
286 _SHGetInstanceExplorer(&ti
.refIE
);
290 /* Create the thread */
296 hThread
= CreateThread(NULL
, 0, SHLWAPI_ThreadWrapper
, &ti
, 0, &dwRetVal
);
300 /* Wait for the thread to signal us to continue */
301 WaitForSingleObject(ti
.hEvent
, INFINITE
);
302 CloseHandle(hThread
);
305 CloseHandle(ti
.hEvent
);
310 if (!ti
.pfnCallback
&& dwFlags
& CTF_INSIST
)
312 /* Couldn't call, call synchronously */
313 pfnThreadProc(pData
);
318 /* Free references, since thread hasn't run to do so */
320 IUnknown_Release(ti
.refThread
);
323 IUnknown_Release(ti
.refIE
);
329 /*************************************************************************
330 * SHGlobalCounterGetValue [SHLWAPI.223]
332 * Get the current count of a semaphore.
335 * hSem [I] Semaphore handle
338 * The current count of the semaphore.
340 LONG WINAPI
SHGlobalCounterGetValue(HANDLE hSem
)
344 TRACE("(%p)\n", hSem
);
345 ReleaseSemaphore(hSem
, 1, &dwOldCount
); /* +1 */
346 WaitForSingleObject(hSem
, 0); /* -1 */
350 /*************************************************************************
351 * SHGlobalCounterIncrement [SHLWAPI.224]
356 * hSem [I] Semaphore handle
359 * The new count of the semaphore.
361 LONG WINAPI
SHGlobalCounterIncrement(HANDLE hSem
)
365 TRACE("(%p)\n", hSem
);
366 ReleaseSemaphore(hSem
, 1, &dwOldCount
);
367 return dwOldCount
+ 1;
370 /*************************************************************************
371 * SHGlobalCounterDecrement [SHLWAPI.424]
373 * Release a semaphore.
376 * hSem [I] Semaphore handle
379 * The new count of the semaphore.
381 DWORD WINAPI
SHGlobalCounterDecrement(HANDLE hSem
)
383 DWORD dwOldCount
= 0;
385 TRACE("(%p)\n", hSem
);
387 dwOldCount
= SHGlobalCounterGetValue(hSem
);
388 WaitForSingleObject(hSem
, 0);
389 return dwOldCount
- 1;
392 /*************************************************************************
393 * SHGlobalCounterCreateNamedW [SHLWAPI.423]
395 * Unicode version of SHGlobalCounterCreateNamedA.
397 HANDLE WINAPI
SHGlobalCounterCreateNamedW(LPCWSTR lpszName
, DWORD iInitial
)
399 static const WCHAR szPrefix
[] = { 's', 'h', 'e', 'l', 'l', '.', '\0' };
400 const int iPrefixLen
= 6;
401 WCHAR szBuff
[MAX_PATH
];
402 const int iBuffLen
= sizeof(szBuff
)/sizeof(WCHAR
);
403 SECURITY_DESCRIPTOR sd
;
404 SECURITY_ATTRIBUTES sAttr
, *pSecAttr
;
407 TRACE("(%s,%d)\n", debugstr_w(lpszName
), iInitial
);
409 /* Create Semaphore name */
410 memcpy(szBuff
, szPrefix
, (iPrefixLen
+ 1) * sizeof(WCHAR
));
412 StrCpyNW(szBuff
+ iPrefixLen
, lpszName
, iBuffLen
- iPrefixLen
);
414 /* Initialise security attributes */
415 pSecAttr
= CreateAllAccessSecurityAttributes(&sAttr
, &sd
, 0);
417 if (!(hRet
= CreateSemaphoreW(pSecAttr
, iInitial
, MAXLONG
, szBuff
)))
418 hRet
= OpenSemaphoreW(SYNCHRONIZE
|SEMAPHORE_MODIFY_STATE
, 0, szBuff
);
422 /*************************************************************************
423 * SHGlobalCounterCreateNamedA [SHLWAPI.422]
425 * Create a semaphore.
428 * lpszName [I] Name of semaphore
429 * iInitial [I] Initial count for semaphore
432 * A new semaphore handle.
434 HANDLE WINAPI
SHGlobalCounterCreateNamedA(LPCSTR lpszName
, DWORD iInitial
)
436 WCHAR szBuff
[MAX_PATH
];
438 TRACE("(%s,%d)\n", debugstr_a(lpszName
), iInitial
);
441 MultiByteToWideChar(0, 0, lpszName
, -1, szBuff
, MAX_PATH
);
442 return SHGlobalCounterCreateNamedW(lpszName
? szBuff
: NULL
, iInitial
);
445 /*************************************************************************
446 * SHGlobalCounterCreate [SHLWAPI.222]
448 * Create a semaphore using the name of a GUID.
451 * guid [I] GUID to use as semaphore name
454 * A handle to the semaphore.
457 * The initial count of the semaphore is set to 0.
459 HANDLE WINAPI
SHGlobalCounterCreate (REFGUID guid
)
463 TRACE("(%s)\n", debugstr_guid(guid
));
465 /* Create a named semaphore using the GUID string */
466 SHStringFromGUIDA(guid
, szName
, sizeof(szName
) - 1);
467 return SHGlobalCounterCreateNamedA(szName
, 0);