4 * Copyright 1997 Marcus Meissner
5 * Copyright 1998, 1999, 2002 Juergen Schmied
7 * IShellFolder2 and related interfaces
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/port.h"
45 #include "undocshell.h"
46 #include "shell32_main.h"
48 #include "wine/debug.h"
51 WINE_DEFAULT_DEBUG_CHANNEL (shell);
53 static const WCHAR wszDotShellClassInfo[] = {
54 '.','S','h','e','l','l','C','l','a','s','s','I','n','f','o',0};
56 /***************************************************************************
57 * SHELL32_GetCustomFolderAttribute (internal function)
59 * Gets a value from the folder's desktop.ini file, if one exists.
62 * pidl [I] Folder containing the desktop.ini file.
63 * pwszHeading [I] Heading in .ini file.
64 * pwszAttribute [I] Attribute in .ini file.
65 * pwszValue [O] Buffer to store value into.
66 * cchValue [I] Size in characters including NULL of buffer pointed to
70 * TRUE if returned non-NULL value.
73 static inline BOOL SHELL32_GetCustomFolderAttributeFromPath(
74 LPWSTR pwszFolderPath, LPCWSTR pwszHeading, LPCWSTR pwszAttribute,
75 LPWSTR pwszValue, DWORD cchValue)
77 static const WCHAR wszDesktopIni[] =
78 {'d','e','s','k','t','o','p','.','i','n','i',0};
79 static const WCHAR wszDefault[] = {0};
81 PathAddBackslashW(pwszFolderPath);
82 PathAppendW(pwszFolderPath, wszDesktopIni);
83 return GetPrivateProfileStringW(pwszHeading, pwszAttribute, wszDefault,
84 pwszValue, cchValue, pwszFolderPath);
87 BOOL SHELL32_GetCustomFolderAttribute(
88 LPCITEMIDLIST pidl, LPCWSTR pwszHeading, LPCWSTR pwszAttribute,
89 LPWSTR pwszValue, DWORD cchValue)
91 DWORD dwAttrib = FILE_ATTRIBUTE_SYSTEM;
92 WCHAR wszFolderPath[MAX_PATH];
94 /* Hack around not having system attribute on non-Windows file systems */
96 dwAttrib = _ILGetFileAttributes(pidl, NULL, 0);
98 if (dwAttrib & FILE_ATTRIBUTE_SYSTEM)
100 if (!SHGetPathFromIDListW(pidl, wszFolderPath))
103 return SHELL32_GetCustomFolderAttributeFromPath(wszFolderPath, pwszHeading,
104 pwszAttribute, pwszValue, cchValue);
109 /***************************************************************************
110 * GetNextElement (internal function)
112 * Gets a part of a string till the first backslash.
115 * pszNext [IN] string to get the element from
116 * pszOut [IN] pointer to buffer which receives string
117 * dwOut [IN] length of pszOut
120 * LPSTR pointer to first, not yet parsed char
123 LPCWSTR GetNextElementW (LPCWSTR pszNext, LPWSTR pszOut, DWORD dwOut)
125 LPCWSTR pszTail = pszNext;
128 TRACE ("(%s %p 0x%08x)\n", debugstr_w(pszNext), pszOut, dwOut);
132 if (!pszNext || !*pszNext)
135 while (*pszTail && (*pszTail != (WCHAR) '\\'))
138 dwCopy = pszTail - pszNext + 1;
139 lstrcpynW (pszOut, pszNext, (dwOut < dwCopy) ? dwOut : dwCopy);
146 TRACE ("--(%s %s 0x%08x %p)\n", debugstr_w (pszNext), debugstr_w (pszOut), dwOut, pszTail);
150 HRESULT SHELL32_ParseNextElement (IShellFolder2 * psf, HWND hwndOwner, LPBC pbc,
151 LPITEMIDLIST * pidlInOut, LPOLESTR szNext, DWORD * pEaten, DWORD * pdwAttributes)
153 LPITEMIDLIST pidlOut = NULL, pidlTemp = NULL;
154 IShellFolder *psfChild;
157 TRACE ("(%p, %p, %p, %s)\n", psf, pbc, pidlInOut ? *pidlInOut : NULL, debugstr_w (szNext));
159 /* get the shellfolder for the child pidl and let it analyse further */
160 hr = IShellFolder_BindToObject (psf, *pidlInOut, pbc, &IID_IShellFolder, (LPVOID *) & psfChild);
163 hr = IShellFolder_ParseDisplayName (psfChild, hwndOwner, pbc, szNext, pEaten, &pidlOut, pdwAttributes);
164 IShellFolder_Release (psfChild);
167 pidlTemp = ILCombine (*pidlInOut, pidlOut);
178 *pidlInOut = pidlTemp;
180 TRACE ("-- pidl=%p ret=0x%08x\n", pidlInOut ? *pidlInOut : NULL, hr);
184 /***********************************************************************
185 * SHELL32_CoCreateInitSF
187 * Creates a shell folder and initializes it with a pidl and a root folder
188 * via IPersistFolder3 or IPersistFolder.
191 * pathRoot can be NULL for Folders being a drive.
192 * In this case the absolute path is built from pidlChild (eg. C:)
194 static HRESULT SHELL32_CoCreateInitSF (LPCITEMIDLIST pidlRoot, LPCWSTR pathRoot,
195 LPCITEMIDLIST pidlChild, REFCLSID clsid, LPVOID * ppvOut)
199 TRACE ("(%p %s %p %s %p)\n", pidlRoot, debugstr_w(pathRoot), pidlChild, debugstr_guid(clsid), ppvOut);
201 hr = SHCoCreateInstance(NULL, clsid, NULL, &IID_IShellFolder, ppvOut);
204 LPITEMIDLIST pidlAbsolute = ILCombine (pidlRoot, pidlChild);
206 IPersistFolder3 *ppf;
208 if (_ILIsFolder(pidlChild) &&
209 SUCCEEDED (IUnknown_QueryInterface ((IUnknown *) * ppvOut, &IID_IPersistFolder3, (LPVOID *) & ppf)))
211 PERSIST_FOLDER_TARGET_INFO ppfti;
213 ZeroMemory (&ppfti, sizeof (ppfti));
215 /* fill the PERSIST_FOLDER_TARGET_INFO */
216 ppfti.dwAttributes = -1;
221 lstrcpynW (ppfti.szTargetParsingName, pathRoot, MAX_PATH - 1);
222 PathAddBackslashW(ppfti.szTargetParsingName); /* FIXME: why have drives a backslash here ? */
226 int len = lstrlenW(ppfti.szTargetParsingName);
228 if (!_ILSimpleGetTextW(pidlChild, ppfti.szTargetParsingName + len, MAX_PATH - len))
232 IPersistFolder3_InitializeEx (ppf, NULL, pidlAbsolute, &ppfti);
233 IPersistFolder3_Release (ppf);
235 else if (SUCCEEDED ((hr = IUnknown_QueryInterface ((IUnknown *) * ppvOut, &IID_IPersistFolder, (LPVOID *) & pPF)))) {
236 IPersistFolder_Initialize (pPF, pidlAbsolute);
237 IPersistFolder_Release (pPF);
239 ILFree (pidlAbsolute);
241 TRACE ("-- (%p) ret=0x%08x\n", *ppvOut, hr);
245 /***********************************************************************
246 * SHELL32_BindToChild [Internal]
248 * Common code for IShellFolder_BindToObject.
251 * pidlRoot [I] The parent shell folder's absolute pidl.
252 * pathRoot [I] Absolute dos path of the parent shell folder.
253 * pidlComplete [I] PIDL of the child. Relative to pidlRoot.
254 * riid [I] GUID of the interface, which ppvOut shall be bound to.
255 * ppvOut [O] A reference to the child's interface (riid).
258 * pidlComplete has to contain at least one non empty SHITEMID.
259 * This function makes special assumptions on the shell namespace, which
260 * means you probably can't use it for your IShellFolder implementation.
262 HRESULT SHELL32_BindToChild (LPCITEMIDLIST pidlRoot,
263 LPCWSTR pathRoot, LPCITEMIDLIST pidlComplete, REFIID riid, LPVOID * ppvOut)
268 LPITEMIDLIST pidlChild;
270 TRACE("(%p %s %p %s %p)\n", pidlRoot, debugstr_w(pathRoot), pidlComplete, debugstr_guid(riid), ppvOut);
272 if (!pidlRoot || !ppvOut || !pidlComplete || !pidlComplete->mkid.cb)
277 pidlChild = ILCloneFirst (pidlComplete);
279 if ((clsid = _ILGetGUIDPointer (pidlChild))) {
281 hr = SHELL32_CoCreateInitSF (pidlRoot, pathRoot, pidlChild, clsid, (LPVOID *)&pSF);
283 /* file system folder */
284 CLSID clsidFolder = CLSID_ShellFSFolder;
285 static const WCHAR wszCLSID[] = {'C','L','S','I','D',0};
286 WCHAR wszCLSIDValue[CHARS_IN_GUID], wszFolderPath[MAX_PATH], *pwszPathTail = wszFolderPath;
288 /* see if folder CLSID should be overridden by desktop.ini file */
290 lstrcpynW(wszFolderPath, pathRoot, MAX_PATH);
291 pwszPathTail = PathAddBackslashW(wszFolderPath);
294 _ILSimpleGetTextW(pidlChild,pwszPathTail,MAX_PATH - (int)(pwszPathTail - wszFolderPath));
296 if (SHELL32_GetCustomFolderAttributeFromPath (wszFolderPath,
297 wszDotShellClassInfo, wszCLSID, wszCLSIDValue, CHARS_IN_GUID))
298 CLSIDFromString (wszCLSIDValue, &clsidFolder);
300 hr = SHELL32_CoCreateInitSF (pidlRoot, pathRoot, pidlChild,
301 &clsidFolder, (LPVOID *)&pSF);
305 if (SUCCEEDED (hr)) {
306 if (_ILIsPidlSimple (pidlComplete)) {
308 hr = IShellFolder_QueryInterface (pSF, riid, ppvOut);
311 hr = IShellFolder_BindToObject (pSF, ILGetNext (pidlComplete), NULL, riid, ppvOut);
313 IShellFolder_Release (pSF);
316 TRACE ("-- returning (%p) 0x%08x\n", *ppvOut, hr);
321 /***********************************************************************
322 * SHELL32_GetDisplayNameOfChild
324 * Retrieves the display name of a child object of a shellfolder.
326 * For a pidl eg. [subpidl1][subpidl2][subpidl3]:
327 * - it binds to the child shellfolder [subpidl1]
328 * - asks it for the displayname of [subpidl2][subpidl3]
330 * Is possible the pidl is a simple pidl. In this case it asks the
331 * subfolder for the displayname of an empty pidl. The subfolder
332 * returns the own displayname eg. "::{guid}". This is used for
333 * virtual folders with the registry key WantsFORPARSING set.
335 HRESULT SHELL32_GetDisplayNameOfChild (IShellFolder2 * psf,
336 LPCITEMIDLIST pidl, DWORD dwFlags, LPWSTR szOut, DWORD dwOutLen)
338 LPITEMIDLIST pidlFirst;
341 TRACE ("(%p)->(pidl=%p 0x%08x %p 0x%08x)\n", psf, pidl, dwFlags, szOut, dwOutLen);
344 pidlFirst = ILCloneFirst (pidl);
346 IShellFolder2 *psfChild;
348 hr = IShellFolder_BindToObject (psf, pidlFirst, NULL, &IID_IShellFolder, (LPVOID *) & psfChild);
349 if (SUCCEEDED (hr)) {
351 LPITEMIDLIST pidlNext = ILGetNext (pidl);
353 hr = IShellFolder_GetDisplayNameOf (psfChild, pidlNext, dwFlags, &strTemp);
354 if (SUCCEEDED (hr)) {
355 if(!StrRetToStrNW (szOut, dwOutLen, &strTemp, pidlNext))
358 IShellFolder_Release (psfChild);
364 TRACE ("-- ret=0x%08x %s\n", hr, debugstr_w(szOut));
369 /***********************************************************************
370 * SHELL32_GetItemAttributes
374 * folder: 0xE0000177 FILESYSTEM | HASSUBFOLDER | FOLDER
375 * file: 0x40000177 FILESYSTEM
376 * drive: 0xf0000144 FILESYSTEM | HASSUBFOLDER | FOLDER | FILESYSANCESTOR
377 * mycomputer: 0xb0000154 HASSUBFOLDER | FOLDER | FILESYSANCESTOR
378 * (seems to be default for shell extensions if no registry entry exists)
381 * folder: 0xF0400177 FILESYSTEM | HASSUBFOLDER | FOLDER | FILESYSANCESTOR | CANMONIKER
382 * file: 0x40400177 FILESYSTEM | CANMONIKER
383 * drive 0xF0400154 FILESYSTEM | HASSUBFOLDER | FOLDER | FILESYSANCESTOR | CANMONIKER | CANRENAME (LABEL)
385 * According to the MSDN documentation this function should not set flags. It claims only to reset flags when necessary.
386 * However it turns out the native shell32.dll _sets_ flags in several cases - so do we.
388 HRESULT SHELL32_GetItemAttributes (IShellFolder * psf, LPCITEMIDLIST pidl, LPDWORD pdwAttributes)
392 static const DWORD dwSupportedAttr=
393 SFGAO_CANCOPY | /*0x00000001 */
394 SFGAO_CANMOVE | /*0x00000002 */
395 SFGAO_CANLINK | /*0x00000004 */
396 SFGAO_CANRENAME | /*0x00000010 */
397 SFGAO_CANDELETE | /*0x00000020 */
398 SFGAO_HASPROPSHEET | /*0x00000040 */
399 SFGAO_DROPTARGET | /*0x00000100 */
400 SFGAO_LINK | /*0x00010000 */
401 SFGAO_READONLY | /*0x00040000 */
402 SFGAO_HIDDEN | /*0x00080000 */
403 SFGAO_FILESYSANCESTOR | /*0x10000000 */
404 SFGAO_FOLDER | /*0x20000000 */
405 SFGAO_FILESYSTEM | /*0x40000000 */
406 SFGAO_HASSUBFOLDER; /*0x80000000 */
408 TRACE ("0x%08x\n", *pdwAttributes);
410 if (*pdwAttributes & ~dwSupportedAttr)
412 WARN ("attributes 0x%08x not implemented\n", (*pdwAttributes & ~dwSupportedAttr));
413 *pdwAttributes &= dwSupportedAttr;
416 has_guid = _ILGetGUIDPointer(pidl) != NULL;
418 dwAttributes = *pdwAttributes;
420 if (_ILIsDrive (pidl)) {
421 *pdwAttributes &= SFGAO_HASSUBFOLDER|SFGAO_FILESYSTEM|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|
422 SFGAO_DROPTARGET|SFGAO_HASPROPSHEET|SFGAO_CANLINK;
423 } else if (has_guid && HCR_GetFolderAttributes(pidl, &dwAttributes)) {
424 *pdwAttributes = dwAttributes;
425 } else if (_ILGetDataPointer (pidl)) {
426 dwAttributes = _ILGetFileAttributes (pidl, NULL, 0);
428 if (!dwAttributes && has_guid) {
429 WCHAR path[MAX_PATH];
432 /* File attributes are not present in the internal PIDL structure, so get them from the file system. */
434 HRESULT hr = IShellFolder_GetDisplayNameOf(psf, pidl, SHGDN_FORPARSING, &strret);
437 hr = StrRetToBufW(&strret, pidl, path, MAX_PATH);
439 /* call GetFileAttributes() only for file system paths, not for parsing names like "::{...}" */
440 if (SUCCEEDED(hr) && path[0]!=':')
441 dwAttributes = GetFileAttributesW(path);
445 /* Set common attributes */
446 *pdwAttributes |= SFGAO_FILESYSTEM | SFGAO_DROPTARGET | SFGAO_HASPROPSHEET | SFGAO_CANDELETE |
447 SFGAO_CANRENAME | SFGAO_CANLINK | SFGAO_CANMOVE | SFGAO_CANCOPY;
449 if (dwAttributes & FILE_ATTRIBUTE_DIRECTORY)
450 *pdwAttributes |= (SFGAO_FOLDER | SFGAO_HASSUBFOLDER | SFGAO_FILESYSANCESTOR);
452 *pdwAttributes &= ~(SFGAO_FOLDER | SFGAO_HASSUBFOLDER | SFGAO_FILESYSANCESTOR);
454 if (dwAttributes & FILE_ATTRIBUTE_HIDDEN)
455 *pdwAttributes |= SFGAO_HIDDEN;
457 *pdwAttributes &= ~SFGAO_HIDDEN;
459 if (dwAttributes & FILE_ATTRIBUTE_READONLY)
460 *pdwAttributes |= SFGAO_READONLY;
462 *pdwAttributes &= ~SFGAO_READONLY;
464 if (SFGAO_LINK & *pdwAttributes) {
467 if (!_ILGetExtension(pidl, ext, MAX_PATH) || lstrcmpiA(ext, "lnk"))
468 *pdwAttributes &= ~SFGAO_LINK;
471 *pdwAttributes &= SFGAO_HASSUBFOLDER|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|SFGAO_DROPTARGET|SFGAO_HASPROPSHEET|SFGAO_CANRENAME|SFGAO_CANLINK;
473 TRACE ("-- 0x%08x\n", *pdwAttributes);
477 /***********************************************************************
480 HRESULT SHELL32_CompareIDs (IShellFolder * iface, LPARAM lParam, LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
484 char szTemp1[MAX_PATH];
485 char szTemp2[MAX_PATH];
487 LPITEMIDLIST firstpidl,
492 /* test for empty pidls */
493 BOOL isEmpty1 = _ILIsDesktop (pidl1);
494 BOOL isEmpty2 = _ILIsDesktop (pidl2);
496 if (isEmpty1 && isEmpty2)
497 return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 0 );
499 return MAKE_HRESULT( SEVERITY_SUCCESS, 0, (WORD)-1 );
501 return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 1 );
503 /* test for different types. Sort order is the PT_* constant */
504 type1 = _ILGetDataPointer (pidl1)->type;
505 type2 = _ILGetDataPointer (pidl2)->type;
507 return MAKE_HRESULT( SEVERITY_SUCCESS, 0, (WORD)-1 );
508 else if (type1 > type2)
509 return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 1 );
511 /* test for name of pidl */
512 _ILSimpleGetText (pidl1, szTemp1, MAX_PATH);
513 _ILSimpleGetText (pidl2, szTemp2, MAX_PATH);
514 nReturn = lstrcmpiA (szTemp1, szTemp2);
516 return MAKE_HRESULT( SEVERITY_SUCCESS, 0, (WORD)-1 );
517 else if (nReturn > 0)
518 return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 1 );
520 /* test of complex pidls */
521 firstpidl = ILCloneFirst (pidl1);
522 nextpidl1 = ILGetNext (pidl1);
523 nextpidl2 = ILGetNext (pidl2);
525 /* optimizing: test special cases and bind not deeper */
526 /* the deeper shellfolder would do the same */
527 isEmpty1 = _ILIsDesktop (nextpidl1);
528 isEmpty2 = _ILIsDesktop (nextpidl2);
530 if (isEmpty1 && isEmpty2) {
531 return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 0 );
532 } else if (isEmpty1) {
533 return MAKE_HRESULT( SEVERITY_SUCCESS, 0, (WORD)-1 );
534 } else if (isEmpty2) {
535 return MAKE_HRESULT( SEVERITY_SUCCESS, 0, 1 );
537 } else if (SUCCEEDED (IShellFolder_BindToObject (iface, firstpidl, NULL, &IID_IShellFolder, (LPVOID *) & psf))) {
538 nReturn = IShellFolder_CompareIDs (psf, lParam, nextpidl1, nextpidl2);
539 IShellFolder_Release (psf);
545 /***********************************************************************
550 HRESULT WINAPI SHCreateLinks( HWND hWnd, LPCSTR lpszDir, LPDATAOBJECT lpDataObject,
551 UINT uFlags, LPITEMIDLIST *lppidlLinks)
553 FIXME("%p %s %p %08x %p\n",hWnd,lpszDir,lpDataObject,uFlags,lppidlLinks);