2 * Helper program to build unix menu entries
4 * Copyright 1997 Marcus Meissner
5 * Copyright 1998 Juergen Schmied
6 * Copyright 2003 Mike McCormack for CodeWeavers
7 * Copyright 2004 Dmitry Timoshkov
8 * Copyright 2005 Bill Medland
9 * Copyright 2008 Damjan Jovanovic
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 * This program is used to replicate the Windows desktop and start menu
27 * into the native desktop's copies. Desktop entries are merged directly
28 * into the native desktop. The Windows Start Menu corresponds to a Wine
29 * entry within the native "start" menu and replicates the whole tree
30 * structure of the Windows Start Menu. Currently it does not differentiate
31 * between the user's desktop/start menu and the "All Users" copies.
33 * This program will read a Windows shortcut file using the IShellLink
34 * interface, then create a KDE/Gnome menu entry for the shortcut.
36 * winemenubuilder [ -w ] <shortcut.lnk>
38 * If the -w parameter is passed, and the shortcut cannot be created,
39 * this program will wait for the parent process to finish and then try
40 * again. This covers the case when a ShortCut is created before the
41 * executable containing its icon.
44 * Handle data lnk files. There is no icon in the file; the icon is in
45 * the handler for the file type (or pointed to by the lnk file). Also it
46 * might be better to use a native handler (e.g. a native acroread for pdf
48 * Differentiate between the user's entries and the "All Users" entries.
49 * If it is possible to add the desktop files to the native system's
50 * shared location for an "All Users" entry then do so. As a suggestion the
51 * shared menu Wine base could be writable to the wine group, or a wineadm
53 * Clean up fd.o menu icons and .directory files when the menu is deleted
55 * Associate applications under HKCR\Applications to open any MIME type
56 * (by associating with application/octet-stream, or how?).
57 * Clean up fd.o MIME types when they are deleted in Windows, their icons
58 * too. Very hard - once we associate them with fd.o, we can't tell whether
59 * they are ours or not, and the extension <-> MIME type mapping isn't
61 * Wine's HKCR is broken - it doesn't merge HKCU\Software\Classes, so apps
62 * that write associations there won't associate (#17019).
66 #include "wine/port.h"
81 #define NONAMELESSUNION
94 #include "wine/unicode.h"
95 #include "wine/debug.h"
96 #include "wine/library.h"
97 #include "wine/list.h"
98 #include "wine/rbtree.h"
100 WINE_DEFAULT_DEBUG_CHANNEL(menubuilder
);
102 #define in_desktop_dir(csidl) ((csidl)==CSIDL_DESKTOPDIRECTORY || \
103 (csidl)==CSIDL_COMMON_DESKTOPDIRECTORY)
104 #define in_startmenu(csidl) ((csidl)==CSIDL_STARTMENU || \
105 (csidl)==CSIDL_COMMON_STARTMENU)
107 /* link file formats */
109 #include "pshpack1.h"
128 GRPICONDIRENTRY idEntries
[1];
166 struct rb_string_entry
169 struct wine_rb_entry entry
;
172 DEFINE_GUID(CLSID_WICIcnsEncoder
, 0x312fb6f1,0xb767,0x409d,0x8a,0x6d,0x0f,0xc1,0x54,0xd4,0xf0,0x5c);
174 static char *xdg_config_dir
;
175 static char *xdg_data_dir
;
176 static char *xdg_desktop_dir
;
178 static WCHAR
* assoc_query(ASSOCSTR assocStr
, LPCWSTR name
, LPCWSTR extra
);
179 static HRESULT
open_icon(LPCWSTR filename
, int index
, BOOL bWait
, IStream
**ppStream
);
181 /* Utility routines */
182 static unsigned short crc16(const char* string
)
184 unsigned short crc
= 0;
187 for (i
= 0; string
[i
] != 0; i
++)
190 for (j
= 0; j
< 8; c
>>= 1, j
++)
192 xor_poly
= (c
^ crc
) & 1;
201 static char *strdupA( const char *str
)
205 if (!str
) return NULL
;
206 if ((ret
= HeapAlloc( GetProcessHeap(), 0, strlen(str
) + 1 ))) strcpy( ret
, str
);
210 static char* heap_printf(const char *format
, ...)
217 va_start(args
, format
);
220 buffer
= HeapAlloc(GetProcessHeap(), 0, size
);
223 n
= vsnprintf(buffer
, size
, format
, args
);
230 HeapFree(GetProcessHeap(), 0, buffer
);
233 if (!buffer
) return NULL
;
234 ret
= HeapReAlloc(GetProcessHeap(), 0, buffer
, strlen(buffer
) + 1 );
235 if (!ret
) ret
= buffer
;
239 static int winemenubuilder_rb_string_compare(const void *key
, const struct wine_rb_entry
*entry
)
241 const struct rb_string_entry
*t
= WINE_RB_ENTRY_VALUE(entry
, const struct rb_string_entry
, entry
);
243 return strcmp((char*)key
, t
->string
);
246 static void *winemenubuilder_rb_alloc(size_t size
)
248 return HeapAlloc(GetProcessHeap(), 0, size
);
251 static void *winemenubuilder_rb_realloc(void *ptr
, size_t size
)
253 return HeapReAlloc(GetProcessHeap(), 0, ptr
, size
);
256 static void winemenubuilder_rb_free(void *ptr
)
258 HeapFree(GetProcessHeap(), 0, ptr
);
261 static void winemenubuilder_rb_destroy(struct wine_rb_entry
*entry
, void *context
)
263 struct rb_string_entry
*t
= WINE_RB_ENTRY_VALUE(entry
, struct rb_string_entry
, entry
);
264 HeapFree(GetProcessHeap(), 0, t
->string
);
265 HeapFree(GetProcessHeap(), 0, t
);
268 static const struct wine_rb_functions winemenubuilder_rb_functions
=
270 winemenubuilder_rb_alloc
,
271 winemenubuilder_rb_realloc
,
272 winemenubuilder_rb_free
,
273 winemenubuilder_rb_string_compare
,
276 static void write_xml_text(FILE *file
, const char *text
)
279 for (i
= 0; text
[i
]; i
++)
282 fputs("&", file
);
283 else if (text
[i
] == '<')
285 else if (text
[i
] == '>')
287 else if (text
[i
] == '\'')
288 fputs("'", file
);
289 else if (text
[i
] == '"')
290 fputs(""", file
);
292 fputc(text
[i
], file
);
296 static BOOL
create_directories(char *directory
)
301 for (i
= 0; directory
[i
]; i
++)
303 if (i
> 0 && directory
[i
] == '/')
306 mkdir(directory
, 0777);
310 if (mkdir(directory
, 0777) && errno
!= EEXIST
)
316 static char* wchars_to_utf8_chars(LPCWSTR string
)
319 INT size
= WideCharToMultiByte(CP_UTF8
, 0, string
, -1, NULL
, 0, NULL
, NULL
);
320 ret
= HeapAlloc(GetProcessHeap(), 0, size
);
322 WideCharToMultiByte(CP_UTF8
, 0, string
, -1, ret
, size
, NULL
, NULL
);
326 static char* wchars_to_unix_chars(LPCWSTR string
)
329 INT size
= WideCharToMultiByte(CP_UNIXCP
, 0, string
, -1, NULL
, 0, NULL
, NULL
);
330 ret
= HeapAlloc(GetProcessHeap(), 0, size
);
332 WideCharToMultiByte(CP_UNIXCP
, 0, string
, -1, ret
, size
, NULL
, NULL
);
336 static WCHAR
* utf8_chars_to_wchars(LPCSTR string
)
339 INT size
= MultiByteToWideChar(CP_UTF8
, 0, string
, -1, NULL
, 0);
340 ret
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
342 MultiByteToWideChar(CP_UTF8
, 0, string
, -1, ret
, size
);
346 /* Icon extraction routines
348 * FIXME: should use PrivateExtractIcons and friends
349 * FIXME: should not use stdio
352 static HRESULT
convert_to_native_icon(IStream
*icoFile
, int *indeces
, int numIndeces
,
353 const CLSID
*outputFormat
, const char *outputFileName
, LPCWSTR commentW
)
355 WCHAR
*dosOutputFileName
= NULL
;
356 IWICImagingFactory
*factory
= NULL
;
357 IWICBitmapDecoder
*decoder
= NULL
;
358 IWICBitmapEncoder
*encoder
= NULL
;
359 IStream
*outputFile
= NULL
;
363 dosOutputFileName
= wine_get_dos_file_name(outputFileName
);
364 if (dosOutputFileName
== NULL
)
366 WINE_ERR("error converting %s to DOS file name\n", outputFileName
);
369 hr
= CoCreateInstance(&CLSID_WICImagingFactory
, NULL
, CLSCTX_INPROC_SERVER
,
370 &IID_IWICImagingFactory
, (void**)&factory
);
373 WINE_ERR("error 0x%08X creating IWICImagingFactory\n", hr
);
376 hr
= IWICImagingFactory_CreateDecoderFromStream(factory
, icoFile
, NULL
,
377 WICDecodeMetadataCacheOnDemand
, &decoder
);
380 WINE_ERR("error 0x%08X creating IWICBitmapDecoder\n", hr
);
383 hr
= CoCreateInstance(outputFormat
, NULL
, CLSCTX_INPROC_SERVER
,
384 &IID_IWICBitmapEncoder
, (void**)&encoder
);
387 WINE_ERR("error 0x%08X creating bitmap encoder\n", hr
);
390 hr
= SHCreateStreamOnFileW(dosOutputFileName
, STGM_CREATE
| STGM_WRITE
, &outputFile
);
393 WINE_ERR("error 0x%08X creating output file\n", hr
);
396 hr
= IWICBitmapEncoder_Initialize(encoder
, outputFile
, GENERIC_WRITE
);
399 WINE_ERR("error 0x%08X initializing encoder\n", hr
);
403 for (i
= 0; i
< numIndeces
; i
++)
405 IWICBitmapFrameDecode
*sourceFrame
= NULL
;
406 IWICBitmapSource
*sourceBitmap
= NULL
;
407 IWICBitmapFrameEncode
*dstFrame
= NULL
;
408 IPropertyBag2
*options
= NULL
;
411 hr
= IWICBitmapDecoder_GetFrame(decoder
, indeces
[i
], &sourceFrame
);
414 WINE_ERR("error 0x%08X getting frame %d\n", hr
, indeces
[i
]);
417 hr
= WICConvertBitmapSource(&GUID_WICPixelFormat32bppBGRA
, (IWICBitmapSource
*)sourceFrame
, &sourceBitmap
);
420 WINE_ERR("error 0x%08X converting bitmap to 32bppBGRA\n", hr
);
423 hr
= IWICBitmapEncoder_CreateNewFrame(encoder
, &dstFrame
, &options
);
426 WINE_ERR("error 0x%08X creating encoder frame\n", hr
);
429 hr
= IWICBitmapFrameEncode_Initialize(dstFrame
, options
);
432 WINE_ERR("error 0x%08X initializing encoder frame\n", hr
);
435 hr
= IWICBitmapSource_GetSize(sourceBitmap
, &width
, &height
);
438 WINE_ERR("error 0x%08X getting source bitmap size\n", hr
);
441 hr
= IWICBitmapFrameEncode_SetSize(dstFrame
, width
, height
);
444 WINE_ERR("error 0x%08X setting destination bitmap size\n", hr
);
447 hr
= IWICBitmapFrameEncode_SetResolution(dstFrame
, 96, 96);
450 WINE_ERR("error 0x%08X setting destination bitmap resolution\n", hr
);
453 hr
= IWICBitmapFrameEncode_WriteSource(dstFrame
, sourceBitmap
, NULL
);
456 WINE_ERR("error 0x%08X copying bitmaps\n", hr
);
459 hr
= IWICBitmapFrameEncode_Commit(dstFrame
);
462 WINE_ERR("error 0x%08X committing frame\n", hr
);
467 IWICBitmapFrameDecode_Release(sourceFrame
);
469 IWICBitmapSource_Release(sourceBitmap
);
471 IWICBitmapFrameEncode_Release(dstFrame
);
474 hr
= IWICBitmapEncoder_Commit(encoder
);
477 WINE_ERR("error 0x%08X committing encoder\n", hr
);
482 HeapFree(GetProcessHeap(), 0, dosOutputFileName
);
484 IWICImagingFactory_Release(factory
);
486 IWICBitmapDecoder_Release(decoder
);
488 IWICBitmapEncoder_Release(encoder
);
490 IStream_Release(outputFile
);
494 static IStream
*add_module_icons_to_stream(HMODULE hModule
, GRPICONDIR
*grpIconDir
)
497 SIZE_T iconsSize
= 0;
499 ICONDIRENTRY
*iconDirEntries
= NULL
;
500 IStream
*stream
= NULL
;
505 int validEntries
= 0;
508 for (i
= 0; i
< grpIconDir
->idCount
; i
++)
509 iconsSize
+= grpIconDir
->idEntries
[i
].dwBytesInRes
;
510 icons
= HeapAlloc(GetProcessHeap(), 0, iconsSize
);
513 WINE_ERR("out of memory allocating icon\n");
517 iconDirEntries
= HeapAlloc(GetProcessHeap(), 0, grpIconDir
->idCount
*sizeof(ICONDIRENTRY
));
518 if (iconDirEntries
== NULL
)
520 WINE_ERR("out of memory allocating icon dir entries\n");
524 hr
= CreateStreamOnHGlobal(NULL
, TRUE
, &stream
);
527 WINE_ERR("error creating icon stream\n");
532 for (i
= 0; i
< grpIconDir
->idCount
; i
++)
535 LPCWSTR lpName
= MAKEINTRESOURCEW(grpIconDir
->idEntries
[i
].nID
);
536 if ((hResInfo
= FindResourceW(hModule
, lpName
, (LPCWSTR
)RT_ICON
)))
539 if ((hResData
= LoadResource(hModule
, hResInfo
)))
542 if ((pIcon
= LockResource(hResData
)))
544 iconDirEntries
[validEntries
].bWidth
= grpIconDir
->idEntries
[i
].bWidth
;
545 iconDirEntries
[validEntries
].bHeight
= grpIconDir
->idEntries
[i
].bHeight
;
546 iconDirEntries
[validEntries
].bColorCount
= grpIconDir
->idEntries
[i
].bColorCount
;
547 iconDirEntries
[validEntries
].bReserved
= grpIconDir
->idEntries
[i
].bReserved
;
548 iconDirEntries
[validEntries
].wPlanes
= grpIconDir
->idEntries
[i
].wPlanes
;
549 iconDirEntries
[validEntries
].wBitCount
= grpIconDir
->idEntries
[i
].wBitCount
;
550 iconDirEntries
[validEntries
].dwBytesInRes
= grpIconDir
->idEntries
[i
].dwBytesInRes
;
551 iconDirEntries
[validEntries
].dwImageOffset
= iconOffset
;
553 memcpy(&icons
[iconOffset
], pIcon
, grpIconDir
->idEntries
[i
].dwBytesInRes
);
554 iconOffset
+= grpIconDir
->idEntries
[i
].dwBytesInRes
;
556 FreeResource(hResData
);
561 if (validEntries
== 0)
563 WINE_ERR("no valid icon entries\n");
567 iconDir
.idReserved
= 0;
569 iconDir
.idCount
= validEntries
;
570 hr
= IStream_Write(stream
, &iconDir
, sizeof(iconDir
), &bytesWritten
);
571 if (FAILED(hr
) || bytesWritten
!= sizeof(iconDir
))
573 WINE_ERR("error 0x%08X writing icon stream\n", hr
);
576 for (i
= 0; i
< validEntries
; i
++)
577 iconDirEntries
[i
].dwImageOffset
+= sizeof(ICONDIR
) + validEntries
*sizeof(ICONDIRENTRY
);
578 hr
= IStream_Write(stream
, iconDirEntries
, validEntries
*sizeof(ICONDIRENTRY
), &bytesWritten
);
579 if (FAILED(hr
) || bytesWritten
!= validEntries
*sizeof(ICONDIRENTRY
))
581 WINE_ERR("error 0x%08X writing icon dir entries to stream\n", hr
);
584 hr
= IStream_Write(stream
, icons
, iconOffset
, &bytesWritten
);
585 if (FAILED(hr
) || bytesWritten
!= iconOffset
)
587 WINE_ERR("error 0x%08X writing icon images to stream\n", hr
);
591 hr
= IStream_Seek(stream
, zero
, STREAM_SEEK_SET
, NULL
);
594 HeapFree(GetProcessHeap(), 0, icons
);
595 HeapFree(GetProcessHeap(), 0, iconDirEntries
);
596 if (FAILED(hr
) && stream
!= NULL
)
598 IStream_Release(stream
);
604 static BOOL CALLBACK
EnumResNameProc(HMODULE hModule
, LPCWSTR lpszType
, LPWSTR lpszName
, LONG_PTR lParam
)
606 ENUMRESSTRUCT
*sEnumRes
= (ENUMRESSTRUCT
*) lParam
;
608 if (!sEnumRes
->nIndex
--)
610 *sEnumRes
->pResInfo
= FindResourceW(hModule
, lpszName
, (LPCWSTR
)RT_GROUP_ICON
);
617 static HRESULT
open_module_icon(LPCWSTR szFileName
, int nIndex
, IStream
**ppStream
)
622 GRPICONDIR
*pIconDir
;
623 ENUMRESSTRUCT sEnumRes
;
626 hModule
= LoadLibraryExW(szFileName
, 0, LOAD_LIBRARY_AS_DATAFILE
);
629 WINE_WARN("LoadLibraryExW (%s) failed, error %d\n",
630 wine_dbgstr_w(szFileName
), GetLastError());
631 return HRESULT_FROM_WIN32(GetLastError());
636 hResInfo
= FindResourceW(hModule
, MAKEINTRESOURCEW(-nIndex
), (LPCWSTR
)RT_GROUP_ICON
);
637 WINE_TRACE("FindResourceW (%s) called, return %p, error %d\n",
638 wine_dbgstr_w(szFileName
), hResInfo
, GetLastError());
643 sEnumRes
.pResInfo
= &hResInfo
;
644 sEnumRes
.nIndex
= nIndex
;
645 if (!EnumResourceNamesW(hModule
, (LPCWSTR
)RT_GROUP_ICON
,
646 EnumResNameProc
, (LONG_PTR
)&sEnumRes
) &&
647 sEnumRes
.nIndex
!= -1)
649 WINE_TRACE("EnumResourceNamesW failed, error %d\n", GetLastError());
655 if ((hResData
= LoadResource(hModule
, hResInfo
)))
657 if ((pIconDir
= LockResource(hResData
)))
659 *ppStream
= add_module_icons_to_stream(hModule
, pIconDir
);
664 FreeResource(hResData
);
669 WINE_WARN("found no icon\n");
670 FreeLibrary(hModule
);
671 return HRESULT_FROM_WIN32(ERROR_NOT_FOUND
);
674 FreeLibrary(hModule
);
678 static HRESULT
read_ico_direntries(IStream
*icoStream
, ICONDIRENTRY
**ppIconDirEntries
, int *numEntries
)
684 *ppIconDirEntries
= NULL
;
686 hr
= IStream_Read(icoStream
, &iconDir
, sizeof(ICONDIR
), &bytesRead
);
687 if (FAILED(hr
) || bytesRead
!= sizeof(ICONDIR
) ||
688 (iconDir
.idReserved
!= 0) || (iconDir
.idType
!= 1))
690 WINE_WARN("Invalid ico file format (hr=0x%08X, bytesRead=%d)\n", hr
, bytesRead
);
694 *numEntries
= iconDir
.idCount
;
696 if ((*ppIconDirEntries
= HeapAlloc(GetProcessHeap(), 0, sizeof(ICONDIRENTRY
)*iconDir
.idCount
)) == NULL
)
701 hr
= IStream_Read(icoStream
, *ppIconDirEntries
, sizeof(ICONDIRENTRY
)*iconDir
.idCount
, &bytesRead
);
702 if (FAILED(hr
) || bytesRead
!= sizeof(ICONDIRENTRY
)*iconDir
.idCount
)
704 if (SUCCEEDED(hr
)) hr
= E_FAIL
;
710 HeapFree(GetProcessHeap(), 0, *ppIconDirEntries
);
714 static HRESULT
write_native_icon(IStream
*iconStream
, const char *icon_name
, LPCWSTR szFileName
)
716 ICONDIRENTRY
*pIconDirEntry
= NULL
;
718 int nMax
= 0, nMaxBits
= 0;
721 LARGE_INTEGER position
;
724 hr
= read_ico_direntries(iconStream
, &pIconDirEntry
, &numEntries
);
728 for (i
= 0; i
< numEntries
; i
++)
730 WINE_TRACE("[%d]: %d x %d @ %d\n", i
, pIconDirEntry
[i
].bWidth
, pIconDirEntry
[i
].bHeight
, pIconDirEntry
[i
].wBitCount
);
731 if (pIconDirEntry
[i
].wBitCount
>= nMaxBits
&&
732 (pIconDirEntry
[i
].bHeight
* pIconDirEntry
[i
].bWidth
) >= nMax
)
735 nMax
= pIconDirEntry
[i
].bHeight
* pIconDirEntry
[i
].bWidth
;
736 nMaxBits
= pIconDirEntry
[i
].wBitCount
;
739 WINE_TRACE("Selected: %d\n", nIndex
);
741 position
.QuadPart
= 0;
742 hr
= IStream_Seek(iconStream
, position
, STREAM_SEEK_SET
, NULL
);
745 hr
= convert_to_native_icon(iconStream
, &nIndex
, 1, &CLSID_WICPngEncoder
, icon_name
, szFileName
);
748 HeapFree(GetProcessHeap(), 0, pIconDirEntry
);
752 static HRESULT
open_file_type_icon(LPCWSTR szFileName
, IStream
**ppStream
)
757 WCHAR
*executable
= NULL
;
759 char *output_path
= NULL
;
760 HRESULT hr
= HRESULT_FROM_WIN32(ERROR_NOT_FOUND
);
762 extension
= strrchrW(szFileName
, '.');
763 if (extension
== NULL
)
766 icon
= assoc_query(ASSOCSTR_DEFAULTICON
, extension
, NULL
);
769 comma
= strrchrW(icon
, ',');
773 index
= atoiW(comma
+ 1);
775 hr
= open_icon(icon
, index
, FALSE
, ppStream
);
779 executable
= assoc_query(ASSOCSTR_EXECUTABLE
, extension
, NULL
);
781 hr
= open_icon(executable
, 0, FALSE
, ppStream
);
785 HeapFree(GetProcessHeap(), 0, icon
);
786 HeapFree(GetProcessHeap(), 0, executable
);
787 HeapFree(GetProcessHeap(), 0, output_path
);
791 static HRESULT
open_default_icon(IStream
**ppStream
)
793 static const WCHAR user32W
[] = {'u','s','e','r','3','2',0};
795 return open_module_icon(user32W
, -(INT_PTR
)IDI_WINLOGO
, ppStream
);
798 static HRESULT
open_icon(LPCWSTR filename
, int index
, BOOL bWait
, IStream
**ppStream
)
802 hr
= open_module_icon(filename
, index
, ppStream
);
805 static const WCHAR dot_icoW
[] = {'.','i','c','o',0};
806 int len
= strlenW(filename
);
807 if (len
>= 4 && strcmpiW(&filename
[len
- 4], dot_icoW
) == 0)
808 hr
= SHCreateStreamOnFileW(filename
, STGM_READ
, ppStream
);
811 hr
= open_file_type_icon(filename
, ppStream
);
812 if (FAILED(hr
) && !bWait
)
813 hr
= open_default_icon(ppStream
);
820 static inline int size_to_slot(int size
)
835 static HRESULT
platform_write_icon(IStream
*icoStream
, int exeIndex
, LPCWSTR icoPathW
,
836 const char *destFilename
, char **nativeIdentifier
)
838 ICONDIRENTRY
*iconDirEntries
= NULL
;
844 int indexes
[ICNS_SLOTS
];
847 WCHAR
*guidStrW
= NULL
;
848 char *guidStrA
= NULL
;
849 char *icnsPath
= NULL
;
853 hr
= read_ico_direntries(icoStream
, &iconDirEntries
, &numEntries
);
856 for (i
= 0; i
< ICNS_SLOTS
; i
++)
861 for (i
= 0; i
< numEntries
; i
++)
864 int width
= iconDirEntries
[i
].bWidth
? iconDirEntries
[i
].bWidth
: 256;
865 int height
= iconDirEntries
[i
].bHeight
? iconDirEntries
[i
].bHeight
: 256;
867 WINE_TRACE("[%d]: %d x %d @ %d\n", i
, width
, height
, iconDirEntries
[i
].wBitCount
);
870 slot
= size_to_slot(width
);
873 if (iconDirEntries
[i
].wBitCount
>= best
[slot
].maxBits
)
875 best
[slot
].index
= i
;
876 best
[slot
].maxBits
= iconDirEntries
[i
].wBitCount
;
880 for (i
= 0; i
< ICNS_SLOTS
; i
++)
882 if (best
[i
].index
>= 0)
884 indexes
[numEntries
] = best
[i
].index
;
889 hr
= CoCreateGuid(&guid
);
892 WINE_WARN("CoCreateGuid failed, error 0x%08X\n", hr
);
895 hr
= StringFromCLSID(&guid
, &guidStrW
);
898 WINE_WARN("StringFromCLSID failed, error 0x%08X\n", hr
);
901 guidStrA
= wchars_to_utf8_chars(guidStrW
);
902 if (guidStrA
== NULL
)
905 WINE_WARN("out of memory converting GUID string\n");
908 icnsPath
= heap_printf("/tmp/%s.icns", guidStrA
);
909 if (icnsPath
== NULL
)
912 WINE_WARN("out of memory creating ICNS path\n");
916 hr
= IStream_Seek(icoStream
, zero
, STREAM_SEEK_SET
, NULL
);
919 WINE_WARN("seeking icon stream failed, error 0x%08X\n", hr
);
922 hr
= convert_to_native_icon(icoStream
, indexes
, numEntries
, &CLSID_WICIcnsEncoder
,
926 WINE_WARN("converting %s to %s failed, error 0x%08X\n",
927 wine_dbgstr_w(icoPathW
), wine_dbgstr_a(icnsPath
), hr
);
932 HeapFree(GetProcessHeap(), 0, iconDirEntries
);
933 CoTaskMemFree(guidStrW
);
934 HeapFree(GetProcessHeap(), 0, guidStrA
);
936 *nativeIdentifier
= icnsPath
;
938 HeapFree(GetProcessHeap(), 0, icnsPath
);
942 static void refresh_icon_cache(const char *iconsDir
)
944 /* The icon theme spec only requires the mtime on the "toplevel"
945 * directory (whatever that is) to be changed for a refresh,
946 * but on Gnome you have to create a file in that directory
947 * instead. Creating a file also works on KDE, XFCE and LXDE.
949 char *filename
= heap_printf("%s/.wine-refresh-XXXXXX", iconsDir
);
950 if (filename
!= NULL
)
952 int fd
= mkstemps(filename
, 0);
958 HeapFree(GetProcessHeap(), 0, filename
);
962 static HRESULT
platform_write_icon(IStream
*icoStream
, int exeIndex
, LPCWSTR icoPathW
,
963 const char *destFilename
, char **nativeIdentifier
)
965 ICONDIRENTRY
*iconDirEntries
= NULL
;
968 char *icoPathA
= NULL
;
969 char *iconsDir
= NULL
;
975 hr
= read_ico_direntries(icoStream
, &iconDirEntries
, &numEntries
);
979 icoPathA
= wchars_to_utf8_chars(icoPathW
);
980 if (icoPathA
== NULL
)
985 crc
= crc16(icoPathA
);
986 p
= strrchr(icoPathA
, '\\');
998 *nativeIdentifier
= heap_printf("%s", destFilename
);
1000 *nativeIdentifier
= heap_printf("%04X_%s.%d", crc
, p
, exeIndex
);
1001 if (*nativeIdentifier
== NULL
)
1006 iconsDir
= heap_printf("%s/icons/hicolor", xdg_data_dir
);
1007 if (iconsDir
== NULL
)
1013 for (i
= 0; i
< numEntries
; i
++)
1018 BOOLEAN duplicate
= FALSE
;
1020 char *iconDir
= NULL
;
1021 char *pngPath
= NULL
;
1023 WINE_TRACE("[%d]: %d x %d @ %d\n", i
, iconDirEntries
[i
].bWidth
,
1024 iconDirEntries
[i
].bHeight
, iconDirEntries
[i
].wBitCount
);
1026 for (j
= 0; j
< i
; j
++)
1028 if (iconDirEntries
[j
].bWidth
== iconDirEntries
[i
].bWidth
&&
1029 iconDirEntries
[j
].bHeight
== iconDirEntries
[i
].bHeight
)
1037 for (j
= i
; j
< numEntries
; j
++)
1039 if (iconDirEntries
[j
].bWidth
== iconDirEntries
[i
].bWidth
&&
1040 iconDirEntries
[j
].bHeight
== iconDirEntries
[i
].bHeight
&&
1041 iconDirEntries
[j
].wBitCount
>= maxBits
)
1044 maxBits
= iconDirEntries
[j
].wBitCount
;
1047 WINE_TRACE("Selected: %d\n", bestIndex
);
1049 w
= iconDirEntries
[bestIndex
].bWidth
? iconDirEntries
[bestIndex
].bWidth
: 256;
1050 h
= iconDirEntries
[bestIndex
].bHeight
? iconDirEntries
[bestIndex
].bHeight
: 256;
1051 iconDir
= heap_printf("%s/%dx%d/apps", iconsDir
, w
, h
);
1052 if (iconDir
== NULL
)
1057 create_directories(iconDir
);
1058 pngPath
= heap_printf("%s/%s.png", iconDir
, *nativeIdentifier
);
1059 if (pngPath
== NULL
)
1065 hr
= IStream_Seek(icoStream
, zero
, STREAM_SEEK_SET
, NULL
);
1068 hr
= convert_to_native_icon(icoStream
, &bestIndex
, 1, &CLSID_WICPngEncoder
,
1072 HeapFree(GetProcessHeap(), 0, iconDir
);
1073 HeapFree(GetProcessHeap(), 0, pngPath
);
1075 refresh_icon_cache(iconsDir
);
1078 HeapFree(GetProcessHeap(), 0, iconDirEntries
);
1079 HeapFree(GetProcessHeap(), 0, icoPathA
);
1080 HeapFree(GetProcessHeap(), 0, iconsDir
);
1083 #endif /* defined(__APPLE__) */
1085 /* extract an icon from an exe or icon file; helper for IPersistFile_fnSave */
1086 static char *extract_icon(LPCWSTR icoPathW
, int index
, const char *destFilename
, BOOL bWait
)
1088 IStream
*stream
= NULL
;
1090 char *nativeIdentifier
= NULL
;
1092 WINE_TRACE("path=[%s] index=%d destFilename=[%s]\n", wine_dbgstr_w(icoPathW
), index
, wine_dbgstr_a(destFilename
));
1094 hr
= open_icon(icoPathW
, index
, bWait
, &stream
);
1097 WINE_WARN("opening icon %s index %d failed, hr=0x%08X\n", wine_dbgstr_w(icoPathW
), index
, hr
);
1100 hr
= platform_write_icon(stream
, index
, icoPathW
, destFilename
, &nativeIdentifier
);
1102 WINE_WARN("writing icon failed, error 0x%08X\n", hr
);
1106 IStream_Release(stream
);
1109 HeapFree(GetProcessHeap(), 0, nativeIdentifier
);
1110 nativeIdentifier
= NULL
;
1112 return nativeIdentifier
;
1115 static HKEY
open_menus_reg_key(void)
1117 static const WCHAR Software_Wine_FileOpenAssociationsW
[] = {
1118 'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\','M','e','n','u','F','i','l','e','s',0};
1121 ret
= RegCreateKeyW(HKEY_CURRENT_USER
, Software_Wine_FileOpenAssociationsW
, &assocKey
);
1122 if (ret
== ERROR_SUCCESS
)
1128 static DWORD
register_menus_entry(const char *unix_file
, const char *windows_file
)
1131 WCHAR
*windows_fileW
;
1135 size
= MultiByteToWideChar(CP_UNIXCP
, 0, unix_file
, -1, NULL
, 0);
1136 unix_fileW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
1139 MultiByteToWideChar(CP_UNIXCP
, 0, unix_file
, -1, unix_fileW
, size
);
1140 size
= MultiByteToWideChar(CP_UNIXCP
, 0, windows_file
, -1, NULL
, 0);
1141 windows_fileW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
1145 MultiByteToWideChar(CP_UNIXCP
, 0, windows_file
, -1, windows_fileW
, size
);
1146 hkey
= open_menus_reg_key();
1149 ret
= RegSetValueExW(hkey
, unix_fileW
, 0, REG_SZ
, (const BYTE
*)windows_fileW
,
1150 (strlenW(windows_fileW
) + 1) * sizeof(WCHAR
));
1154 ret
= GetLastError();
1155 HeapFree(GetProcessHeap(), 0, windows_fileW
);
1158 ret
= ERROR_NOT_ENOUGH_MEMORY
;
1159 HeapFree(GetProcessHeap(), 0, unix_fileW
);
1162 ret
= ERROR_NOT_ENOUGH_MEMORY
;
1166 static BOOL
write_desktop_entry(const char *unix_link
, const char *location
, const char *linkname
,
1167 const char *path
, const char *args
, const char *descr
,
1168 const char *workdir
, const char *icon
)
1172 WINE_TRACE("(%s,%s,%s,%s,%s,%s,%s,%s)\n", wine_dbgstr_a(unix_link
), wine_dbgstr_a(location
),
1173 wine_dbgstr_a(linkname
), wine_dbgstr_a(path
), wine_dbgstr_a(args
),
1174 wine_dbgstr_a(descr
), wine_dbgstr_a(workdir
), wine_dbgstr_a(icon
));
1176 file
= fopen(location
, "w");
1180 fprintf(file
, "[Desktop Entry]\n");
1181 fprintf(file
, "Name=%s\n", linkname
);
1182 fprintf(file
, "Exec=env WINEPREFIX=\"%s\" wine %s %s\n",
1183 wine_get_config_dir(), path
, args
);
1184 fprintf(file
, "Type=Application\n");
1185 fprintf(file
, "StartupNotify=true\n");
1186 if (descr
&& lstrlenA(descr
))
1187 fprintf(file
, "Comment=%s\n", descr
);
1188 if (workdir
&& lstrlenA(workdir
))
1189 fprintf(file
, "Path=%s\n", workdir
);
1190 if (icon
&& lstrlenA(icon
))
1191 fprintf(file
, "Icon=%s\n", icon
);
1197 DWORD ret
= register_menus_entry(location
, unix_link
);
1198 if (ret
!= ERROR_SUCCESS
)
1205 static BOOL
write_directory_entry(const char *directory
, const char *location
)
1209 WINE_TRACE("(%s,%s)\n", wine_dbgstr_a(directory
), wine_dbgstr_a(location
));
1211 file
= fopen(location
, "w");
1215 fprintf(file
, "[Desktop Entry]\n");
1216 fprintf(file
, "Type=Directory\n");
1217 if (strcmp(directory
, "wine") == 0)
1219 fprintf(file
, "Name=Wine\n");
1220 fprintf(file
, "Icon=wine\n");
1224 fprintf(file
, "Name=%s\n", directory
);
1225 fprintf(file
, "Icon=folder\n");
1232 static BOOL
write_menu_file(const char *unix_link
, const char *filename
)
1235 FILE *tempfile
= NULL
;
1238 char *menuPath
= NULL
;
1243 WINE_TRACE("(%s)\n", wine_dbgstr_a(filename
));
1247 tempfilename
= heap_printf("%s/wine-menu-XXXXXX", xdg_config_dir
);
1250 int tempfd
= mkstemps(tempfilename
, 0);
1253 tempfile
= fdopen(tempfd
, "w");
1259 else if (errno
== EEXIST
)
1261 HeapFree(GetProcessHeap(), 0, tempfilename
);
1264 HeapFree(GetProcessHeap(), 0, tempfilename
);
1269 fprintf(tempfile
, "<!DOCTYPE Menu PUBLIC \"-//freedesktop//DTD Menu 1.0//EN\"\n");
1270 fprintf(tempfile
, "\"http://www.freedesktop.org/standards/menu-spec/menu-1.0.dtd\">\n");
1271 fprintf(tempfile
, "<Menu>\n");
1272 fprintf(tempfile
, " <Name>Applications</Name>\n");
1274 name
= HeapAlloc(GetProcessHeap(), 0, lstrlenA(filename
) + 1);
1275 if (name
== NULL
) goto end
;
1277 for (i
= 0; filename
[i
]; i
++)
1279 name
[i
] = filename
[i
];
1280 if (filename
[i
] == '/')
1282 char *dir_file_name
;
1285 fprintf(tempfile
, " <Menu>\n");
1286 fprintf(tempfile
, " <Name>%s", count
? "" : "wine-");
1287 write_xml_text(tempfile
, name
);
1288 fprintf(tempfile
, "</Name>\n");
1289 fprintf(tempfile
, " <Directory>%s", count
? "" : "wine-");
1290 write_xml_text(tempfile
, name
);
1291 fprintf(tempfile
, ".directory</Directory>\n");
1292 dir_file_name
= heap_printf("%s/desktop-directories/%s%s.directory",
1293 xdg_data_dir
, count
? "" : "wine-", name
);
1296 if (stat(dir_file_name
, &st
) != 0 && errno
== ENOENT
)
1297 write_directory_entry(lastEntry
, dir_file_name
);
1298 HeapFree(GetProcessHeap(), 0, dir_file_name
);
1301 lastEntry
= &name
[i
+1];
1307 fprintf(tempfile
, " <Include>\n");
1308 fprintf(tempfile
, " <Filename>");
1309 write_xml_text(tempfile
, name
);
1310 fprintf(tempfile
, "</Filename>\n");
1311 fprintf(tempfile
, " </Include>\n");
1312 for (i
= 0; i
< count
; i
++)
1313 fprintf(tempfile
, " </Menu>\n");
1314 fprintf(tempfile
, "</Menu>\n");
1316 menuPath
= heap_printf("%s/%s", xdg_config_dir
, name
);
1317 if (menuPath
== NULL
) goto end
;
1318 strcpy(menuPath
+ strlen(menuPath
) - strlen(".desktop"), ".menu");
1325 ret
= (rename(tempfilename
, menuPath
) == 0);
1326 if (!ret
&& tempfilename
)
1327 remove(tempfilename
);
1328 HeapFree(GetProcessHeap(), 0, tempfilename
);
1330 register_menus_entry(menuPath
, unix_link
);
1331 HeapFree(GetProcessHeap(), 0, name
);
1332 HeapFree(GetProcessHeap(), 0, menuPath
);
1336 static BOOL
write_menu_entry(const char *unix_link
, const char *link
, const char *path
, const char *args
,
1337 const char *descr
, const char *workdir
, const char *icon
)
1339 const char *linkname
;
1340 char *desktopPath
= NULL
;
1342 char *filename
= NULL
;
1345 WINE_TRACE("(%s, %s, %s, %s, %s, %s, %s)\n", wine_dbgstr_a(unix_link
), wine_dbgstr_a(link
),
1346 wine_dbgstr_a(path
), wine_dbgstr_a(args
), wine_dbgstr_a(descr
),
1347 wine_dbgstr_a(workdir
), wine_dbgstr_a(icon
));
1349 linkname
= strrchr(link
, '/');
1350 if (linkname
== NULL
)
1355 desktopPath
= heap_printf("%s/applications/wine/%s.desktop", xdg_data_dir
, link
);
1358 WINE_WARN("out of memory creating menu entry\n");
1362 desktopDir
= strrchr(desktopPath
, '/');
1364 if (!create_directories(desktopPath
))
1366 WINE_WARN("couldn't make parent directories for %s\n", wine_dbgstr_a(desktopPath
));
1371 if (!write_desktop_entry(unix_link
, desktopPath
, linkname
, path
, args
, descr
, workdir
, icon
))
1373 WINE_WARN("couldn't make desktop entry %s\n", wine_dbgstr_a(desktopPath
));
1378 filename
= heap_printf("wine/%s.desktop", link
);
1379 if (!filename
|| !write_menu_file(unix_link
, filename
))
1381 WINE_WARN("couldn't make menu file %s\n", wine_dbgstr_a(filename
));
1386 HeapFree(GetProcessHeap(), 0, desktopPath
);
1387 HeapFree(GetProcessHeap(), 0, filename
);
1391 /* This escapes reserved characters in .desktop files' Exec keys. */
1392 static LPSTR
escape(LPCWSTR arg
)
1395 WCHAR
*escaped_string
;
1398 escaped_string
= HeapAlloc(GetProcessHeap(), 0, (4 * strlenW(arg
) + 1) * sizeof(WCHAR
));
1399 if (escaped_string
== NULL
) return NULL
;
1400 for (i
= j
= 0; arg
[i
]; i
++)
1405 escaped_string
[j
++] = '\\';
1406 escaped_string
[j
++] = '\\';
1407 escaped_string
[j
++] = '\\';
1408 escaped_string
[j
++] = '\\';
1428 escaped_string
[j
++] = '\\';
1429 escaped_string
[j
++] = '\\';
1432 escaped_string
[j
++] = arg
[i
];
1436 escaped_string
[j
] = 0;
1438 utf8_string
= wchars_to_utf8_chars(escaped_string
);
1439 if (utf8_string
== NULL
)
1441 WINE_ERR("out of memory\n");
1446 HeapFree(GetProcessHeap(), 0, escaped_string
);
1450 /* Return a heap-allocated copy of the unix format difference between the two
1451 * Windows-format paths.
1452 * locn is the owning location
1453 * link is within locn
1455 static char *relative_path( LPCWSTR link
, LPCWSTR locn
)
1457 char *unix_locn
, *unix_link
;
1458 char *relative
= NULL
;
1460 unix_locn
= wine_get_unix_file_name(locn
);
1461 unix_link
= wine_get_unix_file_name(link
);
1462 if (unix_locn
&& unix_link
)
1464 size_t len_unix_locn
, len_unix_link
;
1465 len_unix_locn
= strlen (unix_locn
);
1466 len_unix_link
= strlen (unix_link
);
1467 if (len_unix_locn
< len_unix_link
&& memcmp (unix_locn
, unix_link
, len_unix_locn
) == 0 && unix_link
[len_unix_locn
] == '/')
1470 char *p
= strrchr (unix_link
+ len_unix_locn
, '/');
1471 p
= strrchr (p
, '.');
1475 len_unix_link
= p
- unix_link
;
1477 len_rel
= len_unix_link
- len_unix_locn
;
1478 relative
= HeapAlloc(GetProcessHeap(), 0, len_rel
);
1481 memcpy (relative
, unix_link
+ len_unix_locn
+ 1, len_rel
);
1486 WINE_WARN("Could not separate the relative link path of %s in %s\n", wine_dbgstr_w(link
), wine_dbgstr_w(locn
));
1487 HeapFree(GetProcessHeap(), 0, unix_locn
);
1488 HeapFree(GetProcessHeap(), 0, unix_link
);
1492 /***********************************************************************
1496 * returns TRUE if successful
1497 * *loc will contain CS_DESKTOPDIRECTORY, CS_STARTMENU, CS_STARTUP etc.
1498 * *relative will contain the address of a heap-allocated copy of the portion
1499 * of the filename that is within the specified location, in unix form
1501 static BOOL
GetLinkLocation( LPCWSTR linkfile
, DWORD
*loc
, char **relative
)
1503 WCHAR filename
[MAX_PATH
], shortfilename
[MAX_PATH
], buffer
[MAX_PATH
];
1504 DWORD len
, i
, r
, filelen
;
1505 const DWORD locations
[] = {
1506 CSIDL_STARTUP
, CSIDL_DESKTOPDIRECTORY
, CSIDL_STARTMENU
,
1507 CSIDL_COMMON_STARTUP
, CSIDL_COMMON_DESKTOPDIRECTORY
,
1508 CSIDL_COMMON_STARTMENU
};
1510 WINE_TRACE("%s\n", wine_dbgstr_w(linkfile
));
1511 filelen
=GetFullPathNameW( linkfile
, MAX_PATH
, shortfilename
, NULL
);
1512 if (filelen
==0 || filelen
>MAX_PATH
)
1515 WINE_TRACE("%s\n", wine_dbgstr_w(shortfilename
));
1517 /* the CSLU Toolkit uses a short path name when creating .lnk files;
1518 * expand or our hardcoded list won't match.
1520 filelen
=GetLongPathNameW(shortfilename
, filename
, MAX_PATH
);
1521 if (filelen
==0 || filelen
>MAX_PATH
)
1524 WINE_TRACE("%s\n", wine_dbgstr_w(filename
));
1526 for( i
=0; i
<sizeof(locations
)/sizeof(locations
[0]); i
++ )
1528 if (!SHGetSpecialFolderPathW( 0, buffer
, locations
[i
], FALSE
))
1531 len
= lstrlenW(buffer
);
1532 if (len
>= MAX_PATH
)
1533 continue; /* We've just trashed memory! Hopefully we are OK */
1535 if (len
> filelen
|| filename
[len
]!='\\')
1537 /* do a lstrcmpinW */
1539 r
= lstrcmpiW( filename
, buffer
);
1540 filename
[len
] = '\\';
1544 /* return the remainder of the string and link type */
1545 *loc
= locations
[i
];
1546 *relative
= relative_path (filename
, buffer
);
1547 return (*relative
!= NULL
);
1553 /* gets the target path directly or through MSI */
1554 static HRESULT
get_cmdline( IShellLinkW
*sl
, LPWSTR szPath
, DWORD pathSize
,
1555 LPWSTR szArgs
, DWORD argsSize
)
1557 IShellLinkDataList
*dl
= NULL
;
1558 EXP_DARWIN_LINK
*dar
= NULL
;
1564 hr
= IShellLinkW_GetPath( sl
, szPath
, pathSize
, NULL
, SLGP_RAWPATH
);
1565 if (hr
== S_OK
&& szPath
[0])
1567 IShellLinkW_GetArguments( sl
, szArgs
, argsSize
);
1571 hr
= IShellLinkW_QueryInterface( sl
, &IID_IShellLinkDataList
, (LPVOID
*) &dl
);
1575 hr
= IShellLinkDataList_CopyDataBlock( dl
, EXP_DARWIN_ID_SIG
, (LPVOID
*) &dar
);
1582 hr
= CommandLineFromMsiDescriptor( dar
->szwDarwinID
, NULL
, &cmdSize
);
1583 if (hr
== ERROR_SUCCESS
)
1586 szCmdline
= HeapAlloc( GetProcessHeap(), 0, cmdSize
*sizeof(WCHAR
) );
1587 hr
= CommandLineFromMsiDescriptor( dar
->szwDarwinID
, szCmdline
, &cmdSize
);
1588 WINE_TRACE(" command : %s\n", wine_dbgstr_w(szCmdline
));
1589 if (hr
== ERROR_SUCCESS
)
1592 int bcount
, in_quotes
;
1594 /* Extract the application path */
1601 if ((*s
==0x0009 || *s
==0x0020) && !in_quotes
)
1603 /* skip the remaining spaces */
1606 } while (*s
==0x0009 || *s
==0x0020);
1609 else if (*s
==0x005c)
1615 else if (*s
==0x0022)
1618 if ((bcount
& 1)==0)
1620 /* Preceded by an even number of '\', this is
1621 * half that number of '\', plus a quote which
1625 in_quotes
=!in_quotes
;
1630 /* Preceded by an odd number of '\', this is
1631 * half that number of '\' followed by a '"'
1641 /* a regular character */
1645 if ((d
-szPath
) == pathSize
)
1647 /* Keep processing the path till we get to the
1648 * arguments, but 'stand still'
1653 /* Close the application path */
1656 lstrcpynW(szArgs
, s
, argsSize
);
1658 HeapFree( GetProcessHeap(), 0, szCmdline
);
1663 IShellLinkDataList_Release( dl
);
1667 static WCHAR
* assoc_query(ASSOCSTR assocStr
, LPCWSTR name
, LPCWSTR extra
)
1670 WCHAR
*value
= NULL
;
1672 hr
= AssocQueryStringW(0, assocStr
, name
, extra
, NULL
, &size
);
1675 value
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
1678 hr
= AssocQueryStringW(0, assocStr
, name
, extra
, value
, &size
);
1681 HeapFree(GetProcessHeap(), 0, value
);
1689 static char *slashes_to_minuses(const char *string
)
1692 char *ret
= HeapAlloc(GetProcessHeap(), 0, lstrlenA(string
) + 1);
1695 for (i
= 0; string
[i
]; i
++)
1697 if (string
[i
] == '/')
1708 static BOOL
next_line(FILE *file
, char **line
, int *size
)
1715 *line
= HeapAlloc(GetProcessHeap(), 0, *size
);
1717 while (*line
!= NULL
)
1719 if (fgets(&(*line
)[pos
], *size
- pos
, file
) == NULL
)
1721 HeapFree(GetProcessHeap(), 0, *line
);
1727 pos
= strlen(*line
);
1728 cr
= strchr(*line
, '\n');
1733 line2
= HeapReAlloc(GetProcessHeap(), 0, *line
, *size
);
1738 HeapFree(GetProcessHeap(), 0, *line
);
1751 static BOOL
add_mimes(const char *xdg_data_dir
, struct list
*mime_types
)
1753 char *globs_filename
= NULL
;
1755 globs_filename
= heap_printf("%s/mime/globs", xdg_data_dir
);
1758 FILE *globs_file
= fopen(globs_filename
, "r");
1759 if (globs_file
) /* doesn't have to exist */
1763 while (ret
&& (ret
= next_line(globs_file
, &line
, &size
)) && line
)
1766 struct xdg_mime_type
*mime_type_entry
= NULL
;
1767 if (line
[0] != '#' && (pos
= strchr(line
, ':')))
1769 mime_type_entry
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct xdg_mime_type
));
1770 if (mime_type_entry
)
1773 mime_type_entry
->mimeType
= strdupA(line
);
1774 mime_type_entry
->glob
= strdupA(pos
+ 1);
1775 if (mime_type_entry
->mimeType
&& mime_type_entry
->glob
)
1776 list_add_tail(mime_types
, &mime_type_entry
->entry
);
1779 HeapFree(GetProcessHeap(), 0, mime_type_entry
->mimeType
);
1780 HeapFree(GetProcessHeap(), 0, mime_type_entry
->glob
);
1781 HeapFree(GetProcessHeap(), 0, mime_type_entry
);
1789 HeapFree(GetProcessHeap(), 0, line
);
1792 HeapFree(GetProcessHeap(), 0, globs_filename
);
1799 static void free_native_mime_types(struct list
*native_mime_types
)
1801 struct xdg_mime_type
*mime_type_entry
, *mime_type_entry2
;
1803 LIST_FOR_EACH_ENTRY_SAFE(mime_type_entry
, mime_type_entry2
, native_mime_types
, struct xdg_mime_type
, entry
)
1805 list_remove(&mime_type_entry
->entry
);
1806 HeapFree(GetProcessHeap(), 0, mime_type_entry
->glob
);
1807 HeapFree(GetProcessHeap(), 0, mime_type_entry
->mimeType
);
1808 HeapFree(GetProcessHeap(), 0, mime_type_entry
);
1810 HeapFree(GetProcessHeap(), 0, native_mime_types
);
1813 static BOOL
build_native_mime_types(const char *xdg_data_home
, struct list
**mime_types
)
1815 char *xdg_data_dirs
;
1820 xdg_data_dirs
= getenv("XDG_DATA_DIRS");
1821 if (xdg_data_dirs
== NULL
)
1822 xdg_data_dirs
= heap_printf("/usr/local/share/:/usr/share/");
1824 xdg_data_dirs
= strdupA(xdg_data_dirs
);
1828 *mime_types
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct list
));
1834 list_init(*mime_types
);
1835 ret
= add_mimes(xdg_data_home
, *mime_types
);
1838 for (begin
= xdg_data_dirs
; (end
= strchr(begin
, ':')); begin
= end
+ 1)
1841 ret
= add_mimes(begin
, *mime_types
);
1847 ret
= add_mimes(begin
, *mime_types
);
1852 HeapFree(GetProcessHeap(), 0, xdg_data_dirs
);
1856 if (!ret
&& *mime_types
)
1858 free_native_mime_types(*mime_types
);
1864 static BOOL
match_glob(struct list
*native_mime_types
, const char *extension
,
1868 struct xdg_mime_type
*mime_type_entry
;
1869 int matchLength
= 0;
1873 LIST_FOR_EACH_ENTRY(mime_type_entry
, native_mime_types
, struct xdg_mime_type
, entry
)
1875 if (fnmatch(mime_type_entry
->glob
, extension
, 0) == 0)
1877 if (*match
== NULL
|| matchLength
< strlen(mime_type_entry
->glob
))
1879 *match
= mime_type_entry
->mimeType
;
1880 matchLength
= strlen(mime_type_entry
->glob
);
1887 *match
= strdupA(*match
);
1897 static BOOL
freedesktop_mime_type_for_extension(struct list
*native_mime_types
,
1898 const char *extensionA
,
1902 WCHAR
*lower_extensionW
;
1904 BOOL ret
= match_glob(native_mime_types
, extensionA
, mime_type
);
1905 if (ret
== FALSE
|| *mime_type
!= NULL
)
1907 len
= strlenW(extensionW
);
1908 lower_extensionW
= HeapAlloc(GetProcessHeap(), 0, (len
+ 1)*sizeof(WCHAR
));
1909 if (lower_extensionW
)
1911 char *lower_extensionA
;
1912 memcpy(lower_extensionW
, extensionW
, (len
+ 1)*sizeof(WCHAR
));
1913 strlwrW(lower_extensionW
);
1914 lower_extensionA
= wchars_to_utf8_chars(lower_extensionW
);
1915 if (lower_extensionA
)
1917 ret
= match_glob(native_mime_types
, lower_extensionA
, mime_type
);
1918 HeapFree(GetProcessHeap(), 0, lower_extensionA
);
1923 WINE_FIXME("out of memory\n");
1925 HeapFree(GetProcessHeap(), 0, lower_extensionW
);
1930 WINE_FIXME("out of memory\n");
1935 static WCHAR
* reg_get_valW(HKEY key
, LPCWSTR subkey
, LPCWSTR name
)
1938 if (RegGetValueW(key
, subkey
, name
, RRF_RT_REG_SZ
, NULL
, NULL
, &size
) == ERROR_SUCCESS
)
1940 WCHAR
*ret
= HeapAlloc(GetProcessHeap(), 0, size
);
1943 if (RegGetValueW(key
, subkey
, name
, RRF_RT_REG_SZ
, NULL
, ret
, &size
) == ERROR_SUCCESS
)
1946 HeapFree(GetProcessHeap(), 0, ret
);
1951 static CHAR
* reg_get_val_utf8(HKEY key
, LPCWSTR subkey
, LPCWSTR name
)
1953 WCHAR
*valW
= reg_get_valW(key
, subkey
, name
);
1956 char *val
= wchars_to_utf8_chars(valW
);
1957 HeapFree(GetProcessHeap(), 0, valW
);
1963 static HKEY
open_associations_reg_key(void)
1965 static const WCHAR Software_Wine_FileOpenAssociationsW
[] = {
1966 'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\','F','i','l','e','O','p','e','n','A','s','s','o','c','i','a','t','i','o','n','s',0};
1968 if (RegCreateKeyW(HKEY_CURRENT_USER
, Software_Wine_FileOpenAssociationsW
, &assocKey
) == ERROR_SUCCESS
)
1973 static BOOL
has_association_changed(LPCWSTR extensionW
, LPCSTR mimeType
, LPCWSTR progId
,
1974 LPCSTR appName
, LPCWSTR docName
, LPCSTR openWithIcon
)
1976 static const WCHAR ProgIDW
[] = {'P','r','o','g','I','D',0};
1977 static const WCHAR DocNameW
[] = {'D','o','c','N','a','m','e',0};
1978 static const WCHAR MimeTypeW
[] = {'M','i','m','e','T','y','p','e',0};
1979 static const WCHAR AppNameW
[] = {'A','p','p','N','a','m','e',0};
1980 static const WCHAR OpenWithIconW
[] = {'O','p','e','n','W','i','t','h','I','c','o','n',0};
1984 if ((assocKey
= open_associations_reg_key()))
1991 valueA
= reg_get_val_utf8(assocKey
, extensionW
, MimeTypeW
);
1992 if (!valueA
|| lstrcmpA(valueA
, mimeType
))
1994 HeapFree(GetProcessHeap(), 0, valueA
);
1996 value
= reg_get_valW(assocKey
, extensionW
, ProgIDW
);
1997 if (!value
|| strcmpW(value
, progId
))
1999 HeapFree(GetProcessHeap(), 0, value
);
2001 valueA
= reg_get_val_utf8(assocKey
, extensionW
, AppNameW
);
2002 if (!valueA
|| lstrcmpA(valueA
, appName
))
2004 HeapFree(GetProcessHeap(), 0, valueA
);
2006 value
= reg_get_valW(assocKey
, extensionW
, DocNameW
);
2007 if (docName
&& (!value
|| strcmpW(value
, docName
)))
2009 HeapFree(GetProcessHeap(), 0, value
);
2011 valueA
= reg_get_val_utf8(assocKey
, extensionW
, OpenWithIconW
);
2012 if ((openWithIcon
&& !valueA
) ||
2013 (!openWithIcon
&& valueA
) ||
2014 (openWithIcon
&& valueA
&& lstrcmpA(valueA
, openWithIcon
)))
2016 HeapFree(GetProcessHeap(), 0, valueA
);
2018 RegCloseKey(assocKey
);
2022 WINE_ERR("error opening associations registry key\n");
2028 static void update_association(LPCWSTR extension
, LPCSTR mimeType
, LPCWSTR progId
,
2029 LPCSTR appName
, LPCWSTR docName
, LPCSTR desktopFile
, LPCSTR openWithIcon
)
2031 static const WCHAR ProgIDW
[] = {'P','r','o','g','I','D',0};
2032 static const WCHAR DocNameW
[] = {'D','o','c','N','a','m','e',0};
2033 static const WCHAR MimeTypeW
[] = {'M','i','m','e','T','y','p','e',0};
2034 static const WCHAR AppNameW
[] = {'A','p','p','N','a','m','e',0};
2035 static const WCHAR DesktopFileW
[] = {'D','e','s','k','t','o','p','F','i','l','e',0};
2036 static const WCHAR OpenWithIconW
[] = {'O','p','e','n','W','i','t','h','I','c','o','n',0};
2037 HKEY assocKey
= NULL
;
2039 WCHAR
*mimeTypeW
= NULL
;
2040 WCHAR
*appNameW
= NULL
;
2041 WCHAR
*desktopFileW
= NULL
;
2042 WCHAR
*openWithIconW
= NULL
;
2044 assocKey
= open_associations_reg_key();
2045 if (assocKey
== NULL
)
2047 WINE_ERR("could not open file associations key\n");
2051 if (RegCreateKeyW(assocKey
, extension
, &subkey
) != ERROR_SUCCESS
)
2053 WINE_ERR("could not create extension subkey\n");
2057 mimeTypeW
= utf8_chars_to_wchars(mimeType
);
2058 if (mimeTypeW
== NULL
)
2060 WINE_ERR("out of memory\n");
2064 appNameW
= utf8_chars_to_wchars(appName
);
2065 if (appNameW
== NULL
)
2067 WINE_ERR("out of memory\n");
2071 desktopFileW
= utf8_chars_to_wchars(desktopFile
);
2072 if (desktopFileW
== NULL
)
2074 WINE_ERR("out of memory\n");
2080 openWithIconW
= utf8_chars_to_wchars(openWithIcon
);
2081 if (openWithIconW
== NULL
)
2083 WINE_ERR("out of memory\n");
2088 RegSetValueExW(subkey
, MimeTypeW
, 0, REG_SZ
, (const BYTE
*) mimeTypeW
, (lstrlenW(mimeTypeW
) + 1) * sizeof(WCHAR
));
2089 RegSetValueExW(subkey
, ProgIDW
, 0, REG_SZ
, (const BYTE
*) progId
, (lstrlenW(progId
) + 1) * sizeof(WCHAR
));
2090 RegSetValueExW(subkey
, AppNameW
, 0, REG_SZ
, (const BYTE
*) appNameW
, (lstrlenW(appNameW
) + 1) * sizeof(WCHAR
));
2092 RegSetValueExW(subkey
, DocNameW
, 0, REG_SZ
, (const BYTE
*) docName
, (lstrlenW(docName
) + 1) * sizeof(WCHAR
));
2093 RegSetValueExW(subkey
, DesktopFileW
, 0, REG_SZ
, (const BYTE
*) desktopFileW
, (lstrlenW(desktopFileW
) + 1) * sizeof(WCHAR
));
2095 RegSetValueExW(subkey
, OpenWithIconW
, 0, REG_SZ
, (const BYTE
*) openWithIconW
, (lstrlenW(openWithIconW
) + 1) * sizeof(WCHAR
));
2097 RegDeleteValueW(subkey
, OpenWithIconW
);
2100 RegCloseKey(assocKey
);
2101 RegCloseKey(subkey
);
2102 HeapFree(GetProcessHeap(), 0, mimeTypeW
);
2103 HeapFree(GetProcessHeap(), 0, appNameW
);
2104 HeapFree(GetProcessHeap(), 0, desktopFileW
);
2105 HeapFree(GetProcessHeap(), 0, openWithIconW
);
2108 static BOOL
cleanup_associations(void)
2110 static const WCHAR openW
[] = {'o','p','e','n',0};
2111 static const WCHAR DesktopFileW
[] = {'D','e','s','k','t','o','p','F','i','l','e',0};
2113 BOOL hasChanged
= FALSE
;
2114 if ((assocKey
= open_associations_reg_key()))
2118 for (i
= 0; !done
; i
++)
2120 WCHAR
*extensionW
= NULL
;
2126 HeapFree(GetProcessHeap(), 0, extensionW
);
2127 extensionW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
2128 if (extensionW
== NULL
)
2130 WINE_ERR("out of memory\n");
2131 ret
= ERROR_OUTOFMEMORY
;
2134 ret
= RegEnumKeyExW(assocKey
, i
, extensionW
, &size
, NULL
, NULL
, NULL
, NULL
);
2136 } while (ret
== ERROR_MORE_DATA
);
2138 if (ret
== ERROR_SUCCESS
)
2141 command
= assoc_query(ASSOCSTR_COMMAND
, extensionW
, openW
);
2142 if (command
== NULL
)
2144 char *desktopFile
= reg_get_val_utf8(assocKey
, extensionW
, DesktopFileW
);
2147 WINE_TRACE("removing file type association for %s\n", wine_dbgstr_w(extensionW
));
2148 remove(desktopFile
);
2150 RegDeleteKeyW(assocKey
, extensionW
);
2152 HeapFree(GetProcessHeap(), 0, desktopFile
);
2154 HeapFree(GetProcessHeap(), 0, command
);
2158 if (ret
!= ERROR_NO_MORE_ITEMS
)
2159 WINE_ERR("error %d while reading registry\n", ret
);
2162 HeapFree(GetProcessHeap(), 0, extensionW
);
2164 RegCloseKey(assocKey
);
2167 WINE_ERR("could not open file associations key\n");
2171 static BOOL
write_freedesktop_mime_type_entry(const char *packages_dir
, const char *dot_extension
,
2172 const char *mime_type
, const char *comment
)
2177 WINE_TRACE("writing MIME type %s, extension=%s, comment=%s\n", wine_dbgstr_a(mime_type
),
2178 wine_dbgstr_a(dot_extension
), wine_dbgstr_a(comment
));
2180 filename
= heap_printf("%s/x-wine-extension-%s.xml", packages_dir
, &dot_extension
[1]);
2183 FILE *packageFile
= fopen(filename
, "w");
2186 fprintf(packageFile
, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
2187 fprintf(packageFile
, "<mime-info xmlns=\"http://www.freedesktop.org/standards/shared-mime-info\">\n");
2188 fprintf(packageFile
, " <mime-type type=\"");
2189 write_xml_text(packageFile
, mime_type
);
2190 fprintf(packageFile
, "\">\n");
2191 fprintf(packageFile
, " <glob pattern=\"*");
2192 write_xml_text(packageFile
, dot_extension
);
2193 fprintf(packageFile
, "\"/>\n");
2196 fprintf(packageFile
, " <comment>");
2197 write_xml_text(packageFile
, comment
);
2198 fprintf(packageFile
, "</comment>\n");
2200 fprintf(packageFile
, " </mime-type>\n");
2201 fprintf(packageFile
, "</mime-info>\n");
2203 fclose(packageFile
);
2206 WINE_ERR("error writing file %s\n", filename
);
2207 HeapFree(GetProcessHeap(), 0, filename
);
2210 WINE_ERR("out of memory\n");
2214 static BOOL
is_extension_blacklisted(LPCWSTR extension
)
2216 /* These are managed through external tools like wine.desktop, to evade malware created file type associations */
2217 static const WCHAR comW
[] = {'.','c','o','m',0};
2218 static const WCHAR exeW
[] = {'.','e','x','e',0};
2219 static const WCHAR msiW
[] = {'.','m','s','i',0};
2221 if (!strcmpiW(extension
, comW
) ||
2222 !strcmpiW(extension
, exeW
) ||
2223 !strcmpiW(extension
, msiW
))
2228 static const char* get_special_mime_type(LPCWSTR extension
)
2230 static const WCHAR lnkW
[] = {'.','l','n','k',0};
2231 if (!strcmpiW(extension
, lnkW
))
2232 return "application/x-ms-shortcut";
2236 static BOOL
write_freedesktop_association_entry(const char *desktopPath
, const char *dot_extension
,
2237 const char *friendlyAppName
, const char *mimeType
,
2238 const char *progId
, const char *openWithIcon
)
2243 WINE_TRACE("writing association for file type %s, friendlyAppName=%s, MIME type %s, progID=%s, icon=%s to file %s\n",
2244 wine_dbgstr_a(dot_extension
), wine_dbgstr_a(friendlyAppName
), wine_dbgstr_a(mimeType
),
2245 wine_dbgstr_a(progId
), wine_dbgstr_a(openWithIcon
), wine_dbgstr_a(desktopPath
));
2247 desktop
= fopen(desktopPath
, "w");
2250 fprintf(desktop
, "[Desktop Entry]\n");
2251 fprintf(desktop
, "Type=Application\n");
2252 fprintf(desktop
, "Name=%s\n", friendlyAppName
);
2253 fprintf(desktop
, "MimeType=%s;\n", mimeType
);
2254 fprintf(desktop
, "Exec=wine start /ProgIDOpen %s %%f\n", progId
);
2255 fprintf(desktop
, "NoDisplay=true\n");
2256 fprintf(desktop
, "StartupNotify=true\n");
2258 fprintf(desktop
, "Icon=%s\n", openWithIcon
);
2263 WINE_ERR("error writing association file %s\n", wine_dbgstr_a(desktopPath
));
2267 static BOOL
generate_associations(const char *xdg_data_home
, const char *packages_dir
, const char *applications_dir
)
2269 static const WCHAR openW
[] = {'o','p','e','n',0};
2270 struct wine_rb_tree mimeProgidTree
;
2271 struct list
*nativeMimeTypes
= NULL
;
2274 BOOL hasChanged
= FALSE
;
2276 if (wine_rb_init(&mimeProgidTree
, &winemenubuilder_rb_functions
))
2278 WINE_ERR("wine_rb_init failed\n");
2281 if (!build_native_mime_types(xdg_data_home
, &nativeMimeTypes
))
2283 WINE_ERR("could not build native MIME types\n");
2289 WCHAR
*extensionW
= NULL
;
2294 HeapFree(GetProcessHeap(), 0, extensionW
);
2295 extensionW
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
2296 if (extensionW
== NULL
)
2298 WINE_ERR("out of memory\n");
2299 ret
= ERROR_OUTOFMEMORY
;
2302 ret
= RegEnumKeyExW(HKEY_CLASSES_ROOT
, i
, extensionW
, &size
, NULL
, NULL
, NULL
, NULL
);
2304 } while (ret
== ERROR_MORE_DATA
);
2306 if (ret
== ERROR_SUCCESS
&& extensionW
[0] == '.' && !is_extension_blacklisted(extensionW
))
2308 char *extensionA
= NULL
;
2309 WCHAR
*commandW
= NULL
;
2310 WCHAR
*executableW
= NULL
;
2311 char *openWithIconA
= NULL
;
2312 WCHAR
*friendlyDocNameW
= NULL
;
2313 char *friendlyDocNameA
= NULL
;
2314 WCHAR
*iconW
= NULL
;
2316 WCHAR
*contentTypeW
= NULL
;
2317 char *mimeTypeA
= NULL
;
2318 WCHAR
*friendlyAppNameW
= NULL
;
2319 char *friendlyAppNameA
= NULL
;
2320 WCHAR
*progIdW
= NULL
;
2321 char *progIdA
= NULL
;
2322 char *mimeProgId
= NULL
;
2324 extensionA
= wchars_to_utf8_chars(extensionW
);
2325 if (extensionA
== NULL
)
2327 WINE_ERR("out of memory\n");
2331 friendlyDocNameW
= assoc_query(ASSOCSTR_FRIENDLYDOCNAME
, extensionW
, NULL
);
2332 if (friendlyDocNameW
)
2334 friendlyDocNameA
= wchars_to_utf8_chars(friendlyDocNameW
);
2335 if (friendlyDocNameA
== NULL
)
2337 WINE_ERR("out of memory\n");
2342 iconW
= assoc_query(ASSOCSTR_DEFAULTICON
, extensionW
, NULL
);
2344 contentTypeW
= assoc_query(ASSOCSTR_CONTENTTYPE
, extensionW
, NULL
);
2346 strlwrW(contentTypeW
);
2348 if (!freedesktop_mime_type_for_extension(nativeMimeTypes
, extensionA
, extensionW
, &mimeTypeA
))
2351 if (mimeTypeA
== NULL
)
2353 if (contentTypeW
!= NULL
&& strchrW(contentTypeW
, '/'))
2354 mimeTypeA
= wchars_to_utf8_chars(contentTypeW
);
2355 else if ((get_special_mime_type(extensionW
)))
2356 mimeTypeA
= strdupA(get_special_mime_type(extensionW
));
2358 mimeTypeA
= heap_printf("application/x-wine-extension-%s", &extensionA
[1]);
2360 if (mimeTypeA
!= NULL
)
2362 /* Gnome seems to ignore the <icon> tag in MIME packages,
2363 * and the default name is more intuitive anyway.
2367 char *flattened_mime
= slashes_to_minuses(mimeTypeA
);
2371 WCHAR
*comma
= strrchrW(iconW
, ',');
2375 index
= atoiW(comma
+ 1);
2377 iconA
= extract_icon(iconW
, index
, flattened_mime
, FALSE
);
2378 HeapFree(GetProcessHeap(), 0, flattened_mime
);
2382 write_freedesktop_mime_type_entry(packages_dir
, extensionA
, mimeTypeA
, friendlyDocNameA
);
2387 WINE_FIXME("out of memory\n");
2392 commandW
= assoc_query(ASSOCSTR_COMMAND
, extensionW
, openW
);
2393 if (commandW
== NULL
)
2394 /* no command => no application is associated */
2397 executableW
= assoc_query(ASSOCSTR_EXECUTABLE
, extensionW
, openW
);
2399 openWithIconA
= extract_icon(executableW
, 0, NULL
, FALSE
);
2401 friendlyAppNameW
= assoc_query(ASSOCSTR_FRIENDLYAPPNAME
, extensionW
, NULL
);
2402 if (friendlyAppNameW
)
2404 friendlyAppNameA
= wchars_to_utf8_chars(friendlyAppNameW
);
2405 if (friendlyAppNameA
== NULL
)
2407 WINE_ERR("out of memory\n");
2413 friendlyAppNameA
= heap_printf("A Wine application");
2414 if (friendlyAppNameA
== NULL
)
2416 WINE_ERR("out of memory\n");
2421 progIdW
= reg_get_valW(HKEY_CLASSES_ROOT
, extensionW
, NULL
);
2424 progIdA
= escape(progIdW
);
2425 if (progIdA
== NULL
)
2427 WINE_ERR("out of memory\n");
2432 goto end
; /* no progID => not a file type association */
2434 /* Do not allow duplicate ProgIDs for a MIME type, it causes unnecessary duplication in Open dialogs */
2435 mimeProgId
= heap_printf("%s=>%s", mimeTypeA
, progIdA
);
2438 struct rb_string_entry
*entry
;
2439 if (wine_rb_get(&mimeProgidTree
, mimeProgId
))
2441 HeapFree(GetProcessHeap(), 0, mimeProgId
);
2444 entry
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct rb_string_entry
));
2447 WINE_ERR("out of memory allocating rb_string_entry\n");
2450 entry
->string
= mimeProgId
;
2451 if (wine_rb_put(&mimeProgidTree
, mimeProgId
, &entry
->entry
))
2453 WINE_ERR("error updating rb tree\n");
2458 if (has_association_changed(extensionW
, mimeTypeA
, progIdW
, friendlyAppNameA
, friendlyDocNameW
, openWithIconA
))
2460 char *desktopPath
= heap_printf("%s/wine-extension-%s.desktop", applications_dir
, &extensionA
[1]);
2463 if (write_freedesktop_association_entry(desktopPath
, extensionA
, friendlyAppNameA
, mimeTypeA
, progIdA
, openWithIconA
))
2466 update_association(extensionW
, mimeTypeA
, progIdW
, friendlyAppNameA
, friendlyDocNameW
, desktopPath
, openWithIconA
);
2468 HeapFree(GetProcessHeap(), 0, desktopPath
);
2473 HeapFree(GetProcessHeap(), 0, extensionA
);
2474 HeapFree(GetProcessHeap(), 0, commandW
);
2475 HeapFree(GetProcessHeap(), 0, executableW
);
2476 HeapFree(GetProcessHeap(), 0, openWithIconA
);
2477 HeapFree(GetProcessHeap(), 0, friendlyDocNameW
);
2478 HeapFree(GetProcessHeap(), 0, friendlyDocNameA
);
2479 HeapFree(GetProcessHeap(), 0, iconW
);
2480 HeapFree(GetProcessHeap(), 0, iconA
);
2481 HeapFree(GetProcessHeap(), 0, contentTypeW
);
2482 HeapFree(GetProcessHeap(), 0, mimeTypeA
);
2483 HeapFree(GetProcessHeap(), 0, friendlyAppNameW
);
2484 HeapFree(GetProcessHeap(), 0, friendlyAppNameA
);
2485 HeapFree(GetProcessHeap(), 0, progIdW
);
2486 HeapFree(GetProcessHeap(), 0, progIdA
);
2488 HeapFree(GetProcessHeap(), 0, extensionW
);
2489 if (ret
!= ERROR_SUCCESS
)
2493 wine_rb_destroy(&mimeProgidTree
, winemenubuilder_rb_destroy
, NULL
);
2494 free_native_mime_types(nativeMimeTypes
);
2498 static char *get_start_exe_path(void)
2500 static const WCHAR startW
[] = {'\\','c','o','m','m','a','n','d',
2501 '\\','s','t','a','r','t','.','e','x','e',0};
2502 WCHAR start_path
[MAX_PATH
];
2503 GetWindowsDirectoryW(start_path
, MAX_PATH
);
2504 lstrcatW(start_path
, startW
);
2505 return escape(start_path
);
2508 static char* escape_unix_link_arg(LPCSTR unix_link
)
2511 WCHAR
*unix_linkW
= utf8_chars_to_wchars(unix_link
);
2514 char *escaped_lnk
= escape(unix_linkW
);
2517 ret
= heap_printf("/Unix %s", escaped_lnk
);
2518 HeapFree(GetProcessHeap(), 0, escaped_lnk
);
2520 HeapFree(GetProcessHeap(), 0, unix_linkW
);
2525 static BOOL
InvokeShellLinker( IShellLinkW
*sl
, LPCWSTR link
, BOOL bWait
)
2527 static const WCHAR startW
[] = {'\\','c','o','m','m','a','n','d',
2528 '\\','s','t','a','r','t','.','e','x','e',0};
2529 char *link_name
= NULL
, *icon_name
= NULL
, *work_dir
= NULL
;
2530 char *escaped_path
= NULL
, *escaped_args
= NULL
, *description
= NULL
;
2531 WCHAR szTmp
[INFOTIPSIZE
];
2532 WCHAR szDescription
[INFOTIPSIZE
], szPath
[MAX_PATH
], szWorkDir
[MAX_PATH
];
2533 WCHAR szArgs
[INFOTIPSIZE
], szIconPath
[MAX_PATH
];
2534 int iIconId
= 0, r
= -1;
2537 char *unix_link
= NULL
;
2538 char *start_path
= NULL
;
2542 WINE_ERR("Link name is null\n");
2546 if( !GetLinkLocation( link
, &csidl
, &link_name
) )
2548 WINE_WARN("Unknown link location %s. Ignoring.\n",wine_dbgstr_w(link
));
2551 if (!in_desktop_dir(csidl
) && !in_startmenu(csidl
))
2553 WINE_WARN("Not under desktop or start menu. Ignoring.\n");
2556 WINE_TRACE("Link : %s\n", wine_dbgstr_a(link_name
));
2559 IShellLinkW_GetWorkingDirectory( sl
, szTmp
, MAX_PATH
);
2560 ExpandEnvironmentStringsW(szTmp
, szWorkDir
, MAX_PATH
);
2561 WINE_TRACE("workdir : %s\n", wine_dbgstr_w(szWorkDir
));
2564 IShellLinkW_GetDescription( sl
, szTmp
, INFOTIPSIZE
);
2565 ExpandEnvironmentStringsW(szTmp
, szDescription
, INFOTIPSIZE
);
2566 WINE_TRACE("description: %s\n", wine_dbgstr_w(szDescription
));
2568 get_cmdline( sl
, szTmp
, MAX_PATH
, szArgs
, INFOTIPSIZE
);
2569 ExpandEnvironmentStringsW(szTmp
, szPath
, MAX_PATH
);
2570 WINE_TRACE("path : %s\n", wine_dbgstr_w(szPath
));
2571 WINE_TRACE("args : %s\n", wine_dbgstr_w(szArgs
));
2574 IShellLinkW_GetIconLocation( sl
, szTmp
, MAX_PATH
, &iIconId
);
2575 ExpandEnvironmentStringsW(szTmp
, szIconPath
, MAX_PATH
);
2576 WINE_TRACE("icon file : %s\n", wine_dbgstr_w(szIconPath
) );
2580 LPITEMIDLIST pidl
= NULL
;
2581 IShellLinkW_GetIDList( sl
, &pidl
);
2582 if( pidl
&& SHGetPathFromIDListW( pidl
, szPath
) )
2583 WINE_TRACE("pidl path : %s\n", wine_dbgstr_w(szPath
));
2586 /* extract the icon */
2588 icon_name
= extract_icon( szIconPath
, iIconId
, NULL
, bWait
);
2590 icon_name
= extract_icon( szPath
, iIconId
, NULL
, bWait
);
2592 /* fail - try once again after parent process exit */
2597 WINE_WARN("Unable to extract icon, deferring.\n");
2600 WINE_ERR("failed to extract icon from %s\n",
2601 wine_dbgstr_w( szIconPath
[0] ? szIconPath
: szPath
));
2604 unix_link
= wine_get_unix_file_name(link
);
2605 if (unix_link
== NULL
)
2607 WINE_WARN("couldn't find unix path of %s\n", wine_dbgstr_w(link
));
2611 /* check the path */
2614 static const WCHAR exeW
[] = {'.','e','x','e',0};
2617 /* check for .exe extension */
2618 if (!(p
= strrchrW( szPath
, '.' )) ||
2619 strchrW( p
, '\\' ) || strchrW( p
, '/' ) ||
2620 lstrcmpiW( p
, exeW
))
2622 /* Not .exe - use 'start.exe' to launch this file */
2623 p
= szArgs
+ lstrlenW(szPath
) + 2;
2627 memmove( p
+1, szArgs
, min( (lstrlenW(szArgs
) + 1) * sizeof(szArgs
[0]),
2628 sizeof(szArgs
) - (p
+ 1 - szArgs
) * sizeof(szArgs
[0]) ) );
2634 lstrcpyW(szArgs
+ 1, szPath
);
2637 GetWindowsDirectoryW(szPath
, MAX_PATH
);
2638 lstrcatW(szPath
, startW
);
2641 /* convert app working dir */
2643 work_dir
= wine_get_unix_file_name( szWorkDir
);
2647 /* if there's no path... try run the link itself */
2648 lstrcpynW(szArgs
, link
, MAX_PATH
);
2649 GetWindowsDirectoryW(szPath
, MAX_PATH
);
2650 lstrcatW(szPath
, startW
);
2653 /* escape the path and parameters */
2654 escaped_path
= escape(szPath
);
2655 escaped_args
= escape(szArgs
);
2656 description
= wchars_to_utf8_chars(szDescription
);
2657 if (escaped_path
== NULL
|| escaped_args
== NULL
|| description
== NULL
)
2659 WINE_ERR("out of memory allocating/escaping parameters\n");
2663 start_path
= get_start_exe_path();
2664 if (start_path
== NULL
)
2666 WINE_ERR("out of memory\n");
2670 /* building multiple menus concurrently has race conditions */
2671 hsem
= CreateSemaphoreA( NULL
, 1, 1, "winemenubuilder_semaphore");
2672 if( WAIT_OBJECT_0
!= MsgWaitForMultipleObjects( 1, &hsem
, FALSE
, INFINITE
, QS_ALLINPUT
) )
2674 WINE_ERR("failed wait for semaphore\n");
2678 if (in_desktop_dir(csidl
))
2681 const char *lastEntry
;
2682 lastEntry
= strrchr(link_name
, '/');
2683 if (lastEntry
== NULL
)
2684 lastEntry
= link_name
;
2687 location
= heap_printf("%s/%s.desktop", xdg_desktop_dir
, lastEntry
);
2690 if (csidl
== CSIDL_COMMON_DESKTOPDIRECTORY
)
2692 char *link_arg
= escape_unix_link_arg(unix_link
);
2695 r
= !write_desktop_entry(unix_link
, location
, lastEntry
,
2696 start_path
, link_arg
, description
, work_dir
, icon_name
);
2697 HeapFree(GetProcessHeap(), 0, link_arg
);
2701 r
= !write_desktop_entry(NULL
, location
, lastEntry
, escaped_path
, escaped_args
, description
, work_dir
, icon_name
);
2703 chmod(location
, 0755);
2704 HeapFree(GetProcessHeap(), 0, location
);
2709 char *link_arg
= escape_unix_link_arg(unix_link
);
2712 r
= !write_menu_entry(unix_link
, link_name
, start_path
, link_arg
, description
, work_dir
, icon_name
);
2713 HeapFree(GetProcessHeap(), 0, link_arg
);
2717 ReleaseSemaphore( hsem
, 1, NULL
);
2720 if (hsem
) CloseHandle( hsem
);
2721 HeapFree( GetProcessHeap(), 0, icon_name
);
2722 HeapFree( GetProcessHeap(), 0, work_dir
);
2723 HeapFree( GetProcessHeap(), 0, link_name
);
2724 HeapFree( GetProcessHeap(), 0, escaped_args
);
2725 HeapFree( GetProcessHeap(), 0, escaped_path
);
2726 HeapFree( GetProcessHeap(), 0, description
);
2727 HeapFree( GetProcessHeap(), 0, unix_link
);
2728 HeapFree( GetProcessHeap(), 0, start_path
);
2731 WINE_ERR("failed to build the menu\n" );
2736 static BOOL
InvokeShellLinkerForURL( IUniformResourceLocatorW
*url
, LPCWSTR link
, BOOL bWait
)
2738 char *link_name
= NULL
, *icon_name
= NULL
;
2741 char *escaped_urlPath
= NULL
;
2746 char *unix_link
= NULL
;
2747 IPropertySetStorage
*pPropSetStg
;
2748 IPropertyStorage
*pPropStg
;
2754 WINE_ERR("Link name is null\n");
2758 if( !GetLinkLocation( link
, &csidl
, &link_name
) )
2760 WINE_WARN("Unknown link location %s. Ignoring.\n",wine_dbgstr_w(link
));
2763 if (!in_desktop_dir(csidl
) && !in_startmenu(csidl
))
2765 WINE_WARN("Not under desktop or start menu. Ignoring.\n");
2769 WINE_TRACE("Link : %s\n", wine_dbgstr_a(link_name
));
2771 hr
= url
->lpVtbl
->GetURL(url
, &urlPath
);
2777 WINE_TRACE("path : %s\n", wine_dbgstr_w(urlPath
));
2779 unix_link
= wine_get_unix_file_name(link
);
2780 if (unix_link
== NULL
)
2782 WINE_WARN("couldn't find unix path of %s\n", wine_dbgstr_w(link
));
2786 escaped_urlPath
= escape(urlPath
);
2787 if (escaped_urlPath
== NULL
)
2789 WINE_ERR("couldn't escape url, out of memory\n");
2793 ps
[0].ulKind
= PRSPEC_PROPID
;
2794 ps
[0].u
.propid
= PID_IS_ICONFILE
;
2795 ps
[1].ulKind
= PRSPEC_PROPID
;
2796 ps
[1].u
.propid
= PID_IS_ICONINDEX
;
2798 hr
= url
->lpVtbl
->QueryInterface(url
, &IID_IPropertySetStorage
, (void **) &pPropSetStg
);
2801 hr
= IPropertySetStorage_Open(pPropSetStg
, &FMTID_Intshcut
, STGM_READ
| STGM_SHARE_EXCLUSIVE
, &pPropStg
);
2804 hr
= IPropertyStorage_ReadMultiple(pPropStg
, 2, ps
, pv
);
2807 if (pv
[0].vt
== VT_LPWSTR
&& pv
[0].u
.pwszVal
)
2809 icon_name
= extract_icon( pv
[0].u
.pwszVal
, pv
[1].u
.iVal
, NULL
, bWait
);
2811 WINE_TRACE("URL icon path: %s icon index: %d icon name: %s\n", wine_dbgstr_w(pv
[0].u
.pwszVal
), pv
[1].u
.iVal
, icon_name
);
2813 PropVariantClear(&pv
[0]);
2814 PropVariantClear(&pv
[1]);
2816 IPropertyStorage_Release(pPropStg
);
2818 IPropertySetStorage_Release(pPropSetStg
);
2821 /* fail - try once again after parent process exit */
2826 WINE_WARN("Unable to extract icon, deferring.\n");
2830 WINE_ERR("failed to extract icon from %s\n",
2831 wine_dbgstr_w( pv
[0].u
.pwszVal
));
2834 hSem
= CreateSemaphoreA( NULL
, 1, 1, "winemenubuilder_semaphore");
2835 if( WAIT_OBJECT_0
!= MsgWaitForMultipleObjects( 1, &hSem
, FALSE
, INFINITE
, QS_ALLINPUT
) )
2837 WINE_ERR("failed wait for semaphore\n");
2840 if (in_desktop_dir(csidl
))
2843 const char *lastEntry
;
2844 lastEntry
= strrchr(link_name
, '/');
2845 if (lastEntry
== NULL
)
2846 lastEntry
= link_name
;
2849 location
= heap_printf("%s/%s.desktop", xdg_desktop_dir
, lastEntry
);
2852 r
= !write_desktop_entry(NULL
, location
, lastEntry
, "winebrowser", escaped_urlPath
, NULL
, NULL
, icon_name
);
2854 chmod(location
, 0755);
2855 HeapFree(GetProcessHeap(), 0, location
);
2859 r
= !write_menu_entry(unix_link
, link_name
, "winebrowser", escaped_urlPath
, NULL
, NULL
, icon_name
);
2861 ReleaseSemaphore(hSem
, 1, NULL
);
2866 HeapFree( GetProcessHeap(), 0, icon_name
);
2867 HeapFree(GetProcessHeap(), 0, link_name
);
2868 CoTaskMemFree( urlPath
);
2869 HeapFree(GetProcessHeap(), 0, escaped_urlPath
);
2870 HeapFree(GetProcessHeap(), 0, unix_link
);
2874 static BOOL
WaitForParentProcess( void )
2876 PROCESSENTRY32 procentry
;
2877 HANDLE hsnapshot
= NULL
, hprocess
= NULL
;
2878 DWORD ourpid
= GetCurrentProcessId();
2879 BOOL ret
= FALSE
, rc
;
2881 WINE_TRACE("Waiting for parent process\n");
2882 if ((hsnapshot
= CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS
, 0 )) ==
2883 INVALID_HANDLE_VALUE
)
2885 WINE_ERR("CreateToolhelp32Snapshot failed, error %d\n", GetLastError());
2889 procentry
.dwSize
= sizeof(PROCESSENTRY32
);
2890 rc
= Process32First( hsnapshot
, &procentry
);
2893 if (procentry
.th32ProcessID
== ourpid
) break;
2894 rc
= Process32Next( hsnapshot
, &procentry
);
2898 WINE_WARN("Unable to find current process id %d when listing processes\n", ourpid
);
2902 if ((hprocess
= OpenProcess( SYNCHRONIZE
, FALSE
, procentry
.th32ParentProcessID
)) ==
2905 WINE_WARN("OpenProcess failed pid=%d, error %d\n", procentry
.th32ParentProcessID
,
2910 if (MsgWaitForMultipleObjects( 1, &hprocess
, FALSE
, INFINITE
, QS_ALLINPUT
) == WAIT_OBJECT_0
)
2913 WINE_ERR("Unable to wait for parent process, error %d\n", GetLastError());
2916 if (hprocess
) CloseHandle( hprocess
);
2917 if (hsnapshot
) CloseHandle( hsnapshot
);
2921 static BOOL
Process_Link( LPCWSTR linkname
, BOOL bWait
)
2926 WCHAR fullname
[MAX_PATH
];
2929 WINE_TRACE("%s, wait %d\n", wine_dbgstr_w(linkname
), bWait
);
2933 WINE_ERR("link name missing\n");
2937 len
=GetFullPathNameW( linkname
, MAX_PATH
, fullname
, NULL
);
2938 if (len
==0 || len
>MAX_PATH
)
2940 WINE_ERR("couldn't get full path of link file\n");
2944 r
= CoCreateInstance( &CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
2945 &IID_IShellLinkW
, (LPVOID
*) &sl
);
2948 WINE_ERR("No IID_IShellLink\n");
2952 r
= IShellLinkW_QueryInterface( sl
, &IID_IPersistFile
, (LPVOID
*) &pf
);
2955 WINE_ERR("No IID_IPersistFile\n");
2959 r
= IPersistFile_Load( pf
, fullname
, STGM_READ
);
2960 if( SUCCEEDED( r
) )
2962 /* If something fails (eg. Couldn't extract icon)
2963 * wait for parent process and try again
2965 if( ! InvokeShellLinker( sl
, fullname
, bWait
) && bWait
)
2967 WaitForParentProcess();
2968 InvokeShellLinker( sl
, fullname
, FALSE
);
2973 WINE_ERR("unable to load %s\n", wine_dbgstr_w(linkname
));
2976 IPersistFile_Release( pf
);
2977 IShellLinkW_Release( sl
);
2982 static BOOL
Process_URL( LPCWSTR urlname
, BOOL bWait
)
2984 IUniformResourceLocatorW
*url
;
2987 WCHAR fullname
[MAX_PATH
];
2990 WINE_TRACE("%s, wait %d\n", wine_dbgstr_w(urlname
), bWait
);
2994 WINE_ERR("URL name missing\n");
2998 len
=GetFullPathNameW( urlname
, MAX_PATH
, fullname
, NULL
);
2999 if (len
==0 || len
>MAX_PATH
)
3001 WINE_ERR("couldn't get full path of URL file\n");
3005 r
= CoCreateInstance( &CLSID_InternetShortcut
, NULL
, CLSCTX_INPROC_SERVER
,
3006 &IID_IUniformResourceLocatorW
, (LPVOID
*) &url
);
3009 WINE_ERR("No IID_IUniformResourceLocatorW\n");
3013 r
= url
->lpVtbl
->QueryInterface( url
, &IID_IPersistFile
, (LPVOID
*) &pf
);
3016 WINE_ERR("No IID_IPersistFile\n");
3019 r
= IPersistFile_Load( pf
, fullname
, STGM_READ
);
3020 if( SUCCEEDED( r
) )
3022 /* If something fails (eg. Couldn't extract icon)
3023 * wait for parent process and try again
3025 if( ! InvokeShellLinkerForURL( url
, fullname
, bWait
) && bWait
)
3027 WaitForParentProcess();
3028 InvokeShellLinkerForURL( url
, fullname
, FALSE
);
3032 IPersistFile_Release( pf
);
3033 url
->lpVtbl
->Release( url
);
3038 static void RefreshFileTypeAssociations(void)
3041 char *mime_dir
= NULL
;
3042 char *packages_dir
= NULL
;
3043 char *applications_dir
= NULL
;
3046 hSem
= CreateSemaphoreA( NULL
, 1, 1, "winemenubuilder_semaphore");
3047 if( WAIT_OBJECT_0
!= MsgWaitForMultipleObjects( 1, &hSem
, FALSE
, INFINITE
, QS_ALLINPUT
) )
3049 WINE_ERR("failed wait for semaphore\n");
3055 mime_dir
= heap_printf("%s/mime", xdg_data_dir
);
3056 if (mime_dir
== NULL
)
3058 WINE_ERR("out of memory\n");
3061 create_directories(mime_dir
);
3063 packages_dir
= heap_printf("%s/packages", mime_dir
);
3064 if (packages_dir
== NULL
)
3066 WINE_ERR("out of memory\n");
3069 create_directories(packages_dir
);
3071 applications_dir
= heap_printf("%s/applications", xdg_data_dir
);
3072 if (applications_dir
== NULL
)
3074 WINE_ERR("out of memory\n");
3077 create_directories(applications_dir
);
3079 hasChanged
= generate_associations(xdg_data_dir
, packages_dir
, applications_dir
);
3080 hasChanged
|= cleanup_associations();
3083 const char *argv
[3];
3085 argv
[0] = "update-mime-database";
3088 spawnvp( _P_NOWAIT
, argv
[0], argv
);
3090 argv
[0] = "update-desktop-database";
3091 argv
[1] = applications_dir
;
3092 spawnvp( _P_NOWAIT
, argv
[0], argv
);
3098 ReleaseSemaphore(hSem
, 1, NULL
);
3101 HeapFree(GetProcessHeap(), 0, mime_dir
);
3102 HeapFree(GetProcessHeap(), 0, packages_dir
);
3103 HeapFree(GetProcessHeap(), 0, applications_dir
);
3106 static void cleanup_menus(void)
3110 hkey
= open_menus_reg_key();
3114 LSTATUS lret
= ERROR_SUCCESS
;
3115 for (i
= 0; lret
== ERROR_SUCCESS
; )
3117 WCHAR
*value
= NULL
;
3119 DWORD valueSize
= 4096;
3120 DWORD dataSize
= 4096;
3123 lret
= ERROR_OUTOFMEMORY
;
3124 value
= HeapAlloc(GetProcessHeap(), 0, valueSize
* sizeof(WCHAR
));
3127 data
= HeapAlloc(GetProcessHeap(), 0, dataSize
* sizeof(WCHAR
));
3130 lret
= RegEnumValueW(hkey
, i
, value
, &valueSize
, NULL
, NULL
, (BYTE
*)data
, &dataSize
);
3131 if (lret
== ERROR_SUCCESS
|| lret
!= ERROR_MORE_DATA
)
3135 HeapFree(GetProcessHeap(), 0, value
);
3136 HeapFree(GetProcessHeap(), 0, data
);
3137 value
= data
= NULL
;
3139 if (lret
== ERROR_SUCCESS
)
3143 unix_file
= wchars_to_unix_chars(value
);
3144 windows_file
= wchars_to_unix_chars(data
);
3145 if (unix_file
!= NULL
&& windows_file
!= NULL
)
3147 struct stat filestats
;
3148 if (stat(windows_file
, &filestats
) < 0 && errno
== ENOENT
)
3150 WINE_TRACE("removing menu related file %s\n", unix_file
);
3152 RegDeleteValueW(hkey
, value
);
3159 WINE_ERR("out of memory enumerating menus\n");
3160 lret
= ERROR_OUTOFMEMORY
;
3162 HeapFree(GetProcessHeap(), 0, unix_file
);
3163 HeapFree(GetProcessHeap(), 0, windows_file
);
3165 else if (lret
!= ERROR_NO_MORE_ITEMS
)
3166 WINE_ERR("error %d reading registry\n", lret
);
3167 HeapFree(GetProcessHeap(), 0, value
);
3168 HeapFree(GetProcessHeap(), 0, data
);
3173 WINE_ERR("error opening registry key, menu cleanup failed\n");
3176 static void thumbnail_lnk(LPCWSTR lnkPath
, LPCWSTR outputPath
)
3178 char *utf8lnkPath
= NULL
;
3179 char *utf8OutputPath
= NULL
;
3180 WCHAR
*winLnkPath
= NULL
;
3181 IShellLinkW
*shellLink
= NULL
;
3182 IPersistFile
*persistFile
= NULL
;
3183 WCHAR szTmp
[MAX_PATH
];
3184 WCHAR szPath
[MAX_PATH
];
3185 WCHAR szArgs
[INFOTIPSIZE
];
3186 WCHAR szIconPath
[MAX_PATH
];
3188 IStream
*stream
= NULL
;
3191 utf8lnkPath
= wchars_to_utf8_chars(lnkPath
);
3192 if (utf8lnkPath
== NULL
)
3194 WINE_ERR("out of memory converting paths\n");
3198 utf8OutputPath
= wchars_to_utf8_chars(outputPath
);
3199 if (utf8OutputPath
== NULL
)
3201 WINE_ERR("out of memory converting paths\n");
3205 winLnkPath
= wine_get_dos_file_name(utf8lnkPath
);
3206 if (winLnkPath
== NULL
)
3208 WINE_ERR("could not convert %s to DOS path\n", utf8lnkPath
);
3212 hr
= CoCreateInstance(&CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
3213 &IID_IShellLinkW
, (LPVOID
*)&shellLink
);
3216 WINE_ERR("could not create IShellLinkW, error 0x%08X\n", hr
);
3220 hr
= IShellLinkW_QueryInterface(shellLink
, &IID_IPersistFile
, (LPVOID
)&persistFile
);
3223 WINE_ERR("could not query IPersistFile, error 0x%08X\n", hr
);
3227 hr
= IPersistFile_Load(persistFile
, winLnkPath
, STGM_READ
);
3230 WINE_ERR("could not read .lnk, error 0x%08X\n", hr
);
3234 get_cmdline(shellLink
, szTmp
, MAX_PATH
, szArgs
, INFOTIPSIZE
);
3235 ExpandEnvironmentStringsW(szTmp
, szPath
, MAX_PATH
);
3237 IShellLinkW_GetIconLocation(shellLink
, szTmp
, MAX_PATH
, &iconId
);
3238 ExpandEnvironmentStringsW(szTmp
, szIconPath
, MAX_PATH
);
3242 LPITEMIDLIST pidl
= NULL
;
3243 IShellLinkW_GetIDList(shellLink
, &pidl
);
3244 if (pidl
&& SHGetPathFromIDListW(pidl
, szPath
))
3245 WINE_TRACE("pidl path : %s\n", wine_dbgstr_w(szPath
));
3250 hr
= open_icon(szIconPath
, iconId
, FALSE
, &stream
);
3252 hr
= write_native_icon(stream
, utf8OutputPath
, NULL
);
3256 hr
= open_icon(szPath
, iconId
, FALSE
, &stream
);
3258 hr
= write_native_icon(stream
, utf8OutputPath
, NULL
);
3262 HeapFree(GetProcessHeap(), 0, utf8lnkPath
);
3263 HeapFree(GetProcessHeap(), 0, utf8OutputPath
);
3264 HeapFree(GetProcessHeap(), 0, winLnkPath
);
3265 if (shellLink
!= NULL
)
3266 IShellLinkW_Release(shellLink
);
3267 if (persistFile
!= NULL
)
3268 IPersistFile_Release(persistFile
);
3270 IStream_Release(stream
);
3273 static WCHAR
*next_token( LPWSTR
*p
)
3275 LPWSTR token
= NULL
, t
= *p
;
3280 while( t
&& !token
)
3288 /* unquote the token */
3290 t
= strchrW( token
, '"' );
3299 t
= strchrW( token
, ' ' );
3309 static BOOL
init_xdg(void)
3311 WCHAR shellDesktopPath
[MAX_PATH
];
3312 HRESULT hr
= SHGetFolderPathW(NULL
, CSIDL_DESKTOP
, NULL
, SHGFP_TYPE_CURRENT
, shellDesktopPath
);
3314 xdg_desktop_dir
= wine_get_unix_file_name(shellDesktopPath
);
3315 if (xdg_desktop_dir
== NULL
)
3317 WINE_ERR("error looking up the desktop directory\n");
3321 if (getenv("XDG_CONFIG_HOME"))
3322 xdg_config_dir
= heap_printf("%s/menus/applications-merged", getenv("XDG_CONFIG_HOME"));
3324 xdg_config_dir
= heap_printf("%s/.config/menus/applications-merged", getenv("HOME"));
3327 create_directories(xdg_config_dir
);
3328 if (getenv("XDG_DATA_HOME"))
3329 xdg_data_dir
= strdupA(getenv("XDG_DATA_HOME"));
3331 xdg_data_dir
= heap_printf("%s/.local/share", getenv("HOME"));
3335 create_directories(xdg_data_dir
);
3336 buffer
= heap_printf("%s/desktop-directories", xdg_data_dir
);
3339 mkdir(buffer
, 0777);
3340 HeapFree(GetProcessHeap(), 0, buffer
);
3344 HeapFree(GetProcessHeap(), 0, xdg_config_dir
);
3346 WINE_ERR("out of memory\n");
3350 /***********************************************************************
3354 int PASCAL
wWinMain (HINSTANCE hInstance
, HINSTANCE prev
, LPWSTR cmdline
, int show
)
3356 static const WCHAR dash_aW
[] = {'-','a',0};
3357 static const WCHAR dash_rW
[] = {'-','r',0};
3358 static const WCHAR dash_tW
[] = {'-','t',0};
3359 static const WCHAR dash_uW
[] = {'-','u',0};
3360 static const WCHAR dash_wW
[] = {'-','w',0};
3362 LPWSTR token
= NULL
, p
;
3371 hr
= CoInitialize(NULL
);
3374 WINE_ERR("could not initialize COM, error 0x%08X\n", hr
);
3378 for( p
= cmdline
; p
&& *p
; )
3380 token
= next_token( &p
);
3383 if( !strcmpW( token
, dash_aW
) )
3385 RefreshFileTypeAssociations();
3388 if( !strcmpW( token
, dash_rW
) )
3393 if( !strcmpW( token
, dash_wW
) )
3395 else if ( !strcmpW( token
, dash_uW
) )
3397 else if ( !strcmpW( token
, dash_tW
) )
3399 WCHAR
*lnkFile
= next_token( &p
);
3402 WCHAR
*outputFile
= next_token( &p
);
3404 thumbnail_lnk(lnkFile
, outputFile
);
3407 else if( token
[0] == '-' )
3409 WINE_ERR( "unknown option %s\n", wine_dbgstr_w(token
) );
3416 bRet
= Process_URL( token
, bWait
);
3418 bRet
= Process_Link( token
, bWait
);
3421 WINE_ERR( "failed to build menu item for %s\n", wine_dbgstr_w(token
) );