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
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 * This program is used to replicate the Windows desktop and start menu
26 * into the native desktop's copies. Desktop entries are merged directly
27 * into the native desktop. The Windows Start Menu corresponds to a Wine
28 * entry within the native "start" menu and replicates the whole tree
29 * structure of the Windows Start Menu. Currently it does not differentiate
30 * between the user's desktop/start menu and the "All Users" copies.
32 * This program will read a Windows shortcut file using the IShellLink
33 * interface, then invoke wineshelllink with the appropriate arguments
34 * to create a KDE/Gnome menu entry for the shortcut.
36 * winemenubuilder [ -r ] <shortcut.lnk>
38 * If the -r parameter is passed, and the shortcut cannot be created,
39 * this program will add a RunOnce entry to invoke itself at the next
40 * reboot. 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
57 #include "wine/port.h"
76 #include "wine/unicode.h"
77 #include "wine/debug.h"
80 WINE_DEFAULT_DEBUG_CHANNEL(menubuilder
);
82 #define in_desktop_dir(csidl) ((csidl)==CSIDL_DESKTOPDIRECTORY || \
83 (csidl)==CSIDL_COMMON_DESKTOPDIRECTORY)
84 #define in_startmenu(csidl) ((csidl)==CSIDL_STARTMENU || \
85 (csidl)==CSIDL_COMMON_STARTMENU)
87 /* link file formats */
108 GRPICONDIRENTRY idEntries
[1];
140 /* Icon extraction routines
142 * FIXME: should use PrivateExtractIcons and friends
143 * FIXME: should not use stdio
146 static BOOL
SaveIconResAsXPM(const BITMAPINFO
*pIcon
, const char *szXPMFileName
, LPCWSTR commentW
)
156 BOOL aColorUsed
[256] = {0};
161 if (!((pIcon
->bmiHeader
.biBitCount
== 4) || (pIcon
->bmiHeader
.biBitCount
== 8)))
163 WINE_FIXME("Unsupported color depth %d-bit\n", pIcon
->bmiHeader
.biBitCount
);
167 if (!(fXPMFile
= fopen(szXPMFileName
, "w")))
169 WINE_TRACE("unable to open '%s' for writing: %s\n", szXPMFileName
, strerror(errno
));
173 i
= WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, NULL
, 0, NULL
, NULL
);
174 comment
= HeapAlloc(GetProcessHeap(), 0, i
);
175 WideCharToMultiByte(CP_UNIXCP
, 0, commentW
, -1, comment
, i
, NULL
, NULL
);
177 nHeight
= pIcon
->bmiHeader
.biHeight
/ 2;
178 nXORWidthBytes
= 4 * ((pIcon
->bmiHeader
.biWidth
* pIcon
->bmiHeader
.biBitCount
/ 32)
179 + ((pIcon
->bmiHeader
.biWidth
* pIcon
->bmiHeader
.biBitCount
% 32) > 0));
180 nANDWidthBytes
= 4 * ((pIcon
->bmiHeader
.biWidth
/ 32)
181 + ((pIcon
->bmiHeader
.biWidth
% 32) > 0));
182 b8BitColors
= pIcon
->bmiHeader
.biBitCount
== 8;
183 nColors
= pIcon
->bmiHeader
.biClrUsed
? pIcon
->bmiHeader
.biClrUsed
184 : 1 << pIcon
->bmiHeader
.biBitCount
;
185 pXOR
= (const BYTE
*) pIcon
+ sizeof (BITMAPINFOHEADER
) + (nColors
* sizeof (RGBQUAD
));
186 pAND
= pXOR
+ nHeight
* nXORWidthBytes
;
188 #define MASK(x,y) (pAND[(x) / 8 + (nHeight - (y) - 1) * nANDWidthBytes] & (1 << (7 - (x) % 8)))
189 #define COLOR(x,y) (b8BitColors ? pXOR[(x) + (nHeight - (y) - 1) * nXORWidthBytes] : (x) % 2 ? pXOR[(x) / 2 + (nHeight - (y) - 1) * nXORWidthBytes] & 0xF : (pXOR[(x) / 2 + (nHeight - (y) - 1) * nXORWidthBytes] & 0xF0) >> 4)
191 for (i
= 0; i
< nHeight
; i
++) {
192 for (j
= 0; j
< pIcon
->bmiHeader
.biWidth
; j
++) {
193 if (!aColorUsed
[COLOR(j
,i
)] && !MASK(j
,i
))
195 aColorUsed
[COLOR(j
,i
)] = TRUE
;
201 if (fprintf(fXPMFile
, "/* XPM */\n/* %s */\nstatic char *icon[] = {\n", comment
) <= 0)
203 if (fprintf(fXPMFile
, "\"%d %d %d %d\",\n",
204 (int) pIcon
->bmiHeader
.biWidth
, nHeight
, nColorsUsed
+ 1, 2) <=0)
207 for (i
= 0; i
< nColors
; i
++) {
209 if (fprintf(fXPMFile
, "\"%.2X c #%.2X%.2X%.2X\",\n", i
, pIcon
->bmiColors
[i
].rgbRed
,
210 pIcon
->bmiColors
[i
].rgbGreen
, pIcon
->bmiColors
[i
].rgbBlue
) <= 0)
213 if (fprintf(fXPMFile
, "\" c None\"") <= 0)
216 for (i
= 0; i
< nHeight
; i
++)
218 if (fprintf(fXPMFile
, ",\n\"") <= 0)
220 for (j
= 0; j
< pIcon
->bmiHeader
.biWidth
; j
++)
224 if (fprintf(fXPMFile
, " ") <= 0)
228 if (fprintf(fXPMFile
, "%.2X", COLOR(j
,i
)) <= 0)
231 if (fprintf(fXPMFile
, "\"") <= 0)
234 if (fprintf(fXPMFile
, "};\n") <= 0)
240 HeapFree(GetProcessHeap(), 0, comment
);
245 HeapFree(GetProcessHeap(), 0, comment
);
247 unlink( szXPMFileName
);
251 static BOOL CALLBACK
EnumResNameProc(HMODULE hModule
, LPCWSTR lpszType
, LPWSTR lpszName
, LONG_PTR lParam
)
253 ENUMRESSTRUCT
*sEnumRes
= (ENUMRESSTRUCT
*) lParam
;
255 if (!sEnumRes
->nIndex
--)
257 *sEnumRes
->pResInfo
= FindResourceW(hModule
, lpszName
, (LPCWSTR
)RT_GROUP_ICON
);
264 static BOOL
extract_icon32(LPCWSTR szFileName
, int nIndex
, const char *szXPMFileName
)
268 LPCWSTR lpName
= NULL
;
270 GRPICONDIR
*pIconDir
;
272 ENUMRESSTRUCT sEnumRes
;
278 hModule
= LoadLibraryExW(szFileName
, 0, LOAD_LIBRARY_AS_DATAFILE
);
281 WINE_WARN("LoadLibraryExW (%s) failed, error %d\n",
282 wine_dbgstr_w(szFileName
), GetLastError());
288 hResInfo
= FindResourceW(hModule
, MAKEINTRESOURCEW(-nIndex
), (LPCWSTR
)RT_GROUP_ICON
);
289 WINE_TRACE("FindResourceW (%s) called, return %p, error %d\n",
290 wine_dbgstr_w(szFileName
), hResInfo
, GetLastError());
295 sEnumRes
.pResInfo
= &hResInfo
;
296 sEnumRes
.nIndex
= nIndex
;
297 if (!EnumResourceNamesW(hModule
, (LPCWSTR
)RT_GROUP_ICON
,
298 EnumResNameProc
, (LONG_PTR
)&sEnumRes
))
300 WINE_TRACE("EnumResourceNamesW failed, error %d\n", GetLastError());
306 if ((hResData
= LoadResource(hModule
, hResInfo
)))
308 if ((pIconDir
= LockResource(hResData
)))
310 for (i
= 0; i
< pIconDir
->idCount
; i
++)
312 if ((pIconDir
->idEntries
[i
].wBitCount
>= nMaxBits
) && (pIconDir
->idEntries
[i
].wBitCount
<= 8))
314 nMaxBits
= pIconDir
->idEntries
[i
].wBitCount
;
316 if ((pIconDir
->idEntries
[i
].bHeight
* pIconDir
->idEntries
[i
].bWidth
) >= nMax
)
318 lpName
= MAKEINTRESOURCEW(pIconDir
->idEntries
[i
].nID
);
319 nMax
= pIconDir
->idEntries
[i
].bHeight
* pIconDir
->idEntries
[i
].bWidth
;
325 FreeResource(hResData
);
330 WINE_WARN("found no icon\n");
331 FreeLibrary(hModule
);
335 if ((hResInfo
= FindResourceW(hModule
, lpName
, (LPCWSTR
)RT_ICON
)))
337 if ((hResData
= LoadResource(hModule
, hResInfo
)))
339 if ((pIcon
= LockResource(hResData
)))
341 if(SaveIconResAsXPM(pIcon
, szXPMFileName
, szFileName
))
345 FreeResource(hResData
);
349 FreeLibrary(hModule
);
353 static BOOL
ExtractFromEXEDLL(LPCWSTR szFileName
, int nIndex
, const char *szXPMFileName
)
355 if (!extract_icon32(szFileName
, nIndex
, szXPMFileName
) /*&&
356 !extract_icon16(szFileName, szXPMFileName)*/)
361 static int ExtractFromICO(LPCWSTR szFileName
, const char *szXPMFileName
)
365 ICONDIRENTRY
*pIconDirEntry
;
366 int nMax
= 0, nMaxBits
= 0;
372 filename
= wine_get_unix_file_name(szFileName
);
373 if (!(fICOFile
= fopen(filename
, "r")))
375 WINE_TRACE("unable to open '%s' for reading: %s\n", filename
, strerror(errno
));
379 if (fread(&iconDir
, sizeof (ICONDIR
), 1, fICOFile
) != 1 ||
380 (iconDir
.idReserved
!= 0) || (iconDir
.idType
!= 1))
382 WINE_WARN("Invalid ico file format\n");
386 if ((pIconDirEntry
= HeapAlloc(GetProcessHeap(), 0, iconDir
.idCount
* sizeof (ICONDIRENTRY
))) == NULL
)
388 if (fread(pIconDirEntry
, sizeof (ICONDIRENTRY
), iconDir
.idCount
, fICOFile
) != iconDir
.idCount
)
391 for (i
= 0; i
< iconDir
.idCount
; i
++)
392 if (pIconDirEntry
[i
].wBitCount
<= 8 && pIconDirEntry
[i
].wBitCount
>= nMaxBits
&&
393 (pIconDirEntry
[i
].bHeight
* pIconDirEntry
[i
].bWidth
) >= nMax
)
396 nMax
= pIconDirEntry
[i
].bHeight
* pIconDirEntry
[i
].bWidth
;
397 nMaxBits
= pIconDirEntry
[i
].wBitCount
;
399 if ((pIcon
= HeapAlloc(GetProcessHeap(), 0, pIconDirEntry
[nIndex
].dwBytesInRes
)) == NULL
)
401 if (fseek(fICOFile
, pIconDirEntry
[nIndex
].dwImageOffset
, SEEK_SET
))
403 if (fread(pIcon
, pIconDirEntry
[nIndex
].dwBytesInRes
, 1, fICOFile
) != 1)
406 if(!SaveIconResAsXPM(pIcon
, szXPMFileName
, szFileName
))
409 HeapFree(GetProcessHeap(), 0, pIcon
);
410 HeapFree(GetProcessHeap(), 0, pIconDirEntry
);
412 HeapFree(GetProcessHeap(), 0, filename
);
416 HeapFree(GetProcessHeap(), 0, pIcon
);
418 HeapFree(GetProcessHeap(), 0, pIconDirEntry
);
422 HeapFree(GetProcessHeap(), 0, filename
);
426 static BOOL
create_default_icon( const char *filename
, const char* comment
)
431 if (!(fXPM
= fopen(filename
, "w"))) return FALSE
;
432 if (fprintf(fXPM
, "/* XPM */\n/* %s */\nstatic char * icon[] = {", comment
) <= 0)
434 for (i
= 0; i
< sizeof(wine_xpm
)/sizeof(wine_xpm
[0]); i
++) {
435 if (fprintf( fXPM
, "\n\"%s\",", wine_xpm
[i
]) <= 0)
438 if (fprintf( fXPM
, "};\n" ) <=0)
449 static unsigned short crc16(const char* string
)
451 unsigned short crc
= 0;
454 for (i
= 0; string
[i
] != 0; i
++)
457 for (j
= 0; j
< 8; c
>>= 1, j
++)
459 xor_poly
= (c
^ crc
) & 1;
468 /* extract an icon from an exe or icon file; helper for IPersistFile_fnSave */
469 static char *extract_icon( LPCWSTR path
, int index
)
473 char *iconsdir
, *ico_path
, *ico_name
, *xpm_path
;
478 /* Where should we save the icon? */
479 WINE_TRACE("path=[%s] index=%d\n", wine_dbgstr_w(path
), index
);
480 iconsdir
=NULL
; /* Default is no icon */
481 /* @@ Wine registry key: HKCU\Software\Wine\WineMenuBuilder */
482 if (!RegOpenKeyA( HKEY_CURRENT_USER
, "Software\\Wine\\WineMenuBuilder", &hkey
))
484 static const WCHAR IconsDirW
[] = {'I','c','o','n','s','D','i','r',0};
488 if (!RegQueryValueExW(hkey
, IconsDirW
, 0, NULL
, NULL
, &size
))
490 iconsdirW
= HeapAlloc(GetProcessHeap(), 0, size
);
491 RegQueryValueExW(hkey
, IconsDirW
, 0, NULL
, (LPBYTE
)iconsdirW
, &size
);
493 if (!(iconsdir
= wine_get_unix_file_name(iconsdirW
)))
495 int n
= WideCharToMultiByte(CP_UNIXCP
, 0, iconsdirW
, -1, NULL
, 0, NULL
, NULL
);
496 iconsdir
= HeapAlloc(GetProcessHeap(), 0, n
);
497 WideCharToMultiByte(CP_UNIXCP
, 0, iconsdirW
, -1, iconsdir
, n
, NULL
, NULL
);
499 HeapFree(GetProcessHeap(), 0, iconsdirW
);
506 WCHAR path
[MAX_PATH
];
507 if (GetTempPathW(MAX_PATH
, path
))
508 iconsdir
= wine_get_unix_file_name(path
);
511 WINE_TRACE("no IconsDir\n");
512 return NULL
; /* No icon created */
518 WINE_TRACE("icon generation disabled\n");
519 HeapFree(GetProcessHeap(), 0, iconsdir
);
520 return NULL
; /* No icon created */
523 /* If icon path begins with a '*' then this is a deferred call */
530 /* Determine the icon base name */
531 n
= WideCharToMultiByte(CP_UNIXCP
, 0, path
, -1, NULL
, 0, NULL
, NULL
);
532 ico_path
= HeapAlloc(GetProcessHeap(), 0, n
);
533 WideCharToMultiByte(CP_UNIXCP
, 0, path
, -1, ico_path
, n
, NULL
, NULL
);
536 if (*s
=='/' || *s
=='\\') {
544 if (*ico_name
=='\\') *ico_name
++='\0';
545 s
=strrchr(ico_name
,'.');
548 /* Compute the source-path hash */
551 /* Try to treat the source file as an exe */
552 xpm_path
=HeapAlloc(GetProcessHeap(), 0, strlen(iconsdir
)+1+4+1+strlen(ico_name
)+1+12+1+3);
553 sprintf(xpm_path
,"%s/%04x_%s.%d.xpm",iconsdir
,crc
,ico_name
,index
);
554 if (ExtractFromEXEDLL( path
, index
, xpm_path
))
557 /* Must be something else, ignore the index in that case */
558 sprintf(xpm_path
,"%s/%04x_%s.xpm",iconsdir
,crc
,ico_name
);
559 if (ExtractFromICO( path
, xpm_path
))
562 if (create_default_icon( xpm_path
, ico_path
))
565 HeapFree( GetProcessHeap(), 0, xpm_path
);
569 HeapFree(GetProcessHeap(), 0, iconsdir
);
570 HeapFree(GetProcessHeap(), 0, ico_path
);
574 static BOOL
DeferToRunOnce(LPWSTR link
)
578 static const WCHAR szRunOnce
[] = {
579 'S','o','f','t','w','a','r','e','\\',
580 'M','i','c','r','o','s','o','f','t','\\',
581 'W','i','n','d','o','w','s','\\',
582 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
583 'R','u','n','O','n','c','e',0
585 static const WCHAR szFormat
[] = { '%','s',' ','"','%','s','"',0 };
587 WCHAR szExecutable
[MAX_PATH
];
589 WINE_TRACE( "Deferring icon creation to reboot.\n");
591 len
= GetModuleFileNameW( 0, szExecutable
, MAX_PATH
);
592 if (!len
|| len
>= MAX_PATH
) return FALSE
;
594 len
= ( lstrlenW( link
) + lstrlenW( szExecutable
) + 4)*sizeof(WCHAR
);
595 buffer
= HeapAlloc( GetProcessHeap(), 0, len
);
599 wsprintfW( buffer
, szFormat
, szExecutable
, link
);
601 r
= RegCreateKeyExW(HKEY_LOCAL_MACHINE
, szRunOnce
, 0,
602 NULL
, REG_OPTION_NON_VOLATILE
, KEY_WRITE
, NULL
, &hkey
, NULL
);
603 if ( r
== ERROR_SUCCESS
)
605 r
= RegSetValueExW(hkey
, link
, 0, REG_SZ
,
606 (LPBYTE
) buffer
, (lstrlenW(buffer
) + 1)*sizeof(WCHAR
));
609 HeapFree(GetProcessHeap(), 0, buffer
);
614 /* This escapes \ in filenames */
615 static LPSTR
escape(LPCWSTR arg
)
622 while((esc
= strchrW(esc
, '\\')))
628 len
+= WideCharToMultiByte(CP_UNIXCP
, 0, arg
, -1, NULL
, 0, NULL
, NULL
);
629 narg
= HeapAlloc(GetProcessHeap(), 0, len
);
634 n
= WideCharToMultiByte(CP_UNIXCP
, 0, arg
, 1, x
, len
, NULL
, NULL
);
638 *x
++='\\'; /* escape \ */
645 static int fork_and_wait( const char *linker
, const char *link_name
, const char *path
,
646 int desktop
, const char *args
, const char *icon_name
,
647 const char *workdir
, const char *description
)
650 const char *argv
[20];
653 WINE_TRACE( "linker app='%s' link='%s' mode=%s "
654 "path='%s' args='%s' icon='%s' workdir='%s' descr='%s'\n",
655 linker
, link_name
, desktop
? "desktop" : "menu",
656 path
, args
, icon_name
, workdir
, description
);
658 argv
[pos
++] = linker
;
659 argv
[pos
++] = "--link";
660 argv
[pos
++] = link_name
;
661 argv
[pos
++] = "--path";
663 argv
[pos
++] = desktop
? "--desktop" : "--menu";
664 if (args
&& strlen(args
))
666 argv
[pos
++] = "--args";
671 argv
[pos
++] = "--icon";
672 argv
[pos
++] = icon_name
;
674 if (workdir
&& strlen(workdir
))
676 argv
[pos
++] = "--workdir";
677 argv
[pos
++] = workdir
;
679 if (description
&& strlen(description
))
681 argv
[pos
++] = "--descr";
682 argv
[pos
++] = description
;
686 retcode
=spawnvp( _P_WAIT
, linker
, argv
);
688 WINE_ERR("%s returned %d\n",linker
,retcode
);
692 /* Return a heap-allocated copy of the unix format difference between the two
693 * Windows-format paths.
694 * locn is the owning location
695 * link is within locn
697 static char *relative_path( LPCWSTR link
, LPCWSTR locn
)
699 char *unix_locn
, *unix_link
;
700 char *relative
= NULL
;
702 unix_locn
= wine_get_unix_file_name(locn
);
703 unix_link
= wine_get_unix_file_name(link
);
704 if (unix_locn
&& unix_link
)
706 size_t len_unix_locn
, len_unix_link
;
707 len_unix_locn
= strlen (unix_locn
);
708 len_unix_link
= strlen (unix_link
);
709 if (len_unix_locn
< len_unix_link
&& memcmp (unix_locn
, unix_link
, len_unix_locn
) == 0 && unix_link
[len_unix_locn
] == '/')
712 char *p
= strrchr (unix_link
+ len_unix_locn
, '/');
713 p
= strrchr (p
, '.');
717 len_unix_link
= p
- unix_link
;
719 len_rel
= len_unix_link
- len_unix_locn
;
720 relative
= HeapAlloc(GetProcessHeap(), 0, len_rel
);
723 memcpy (relative
, unix_link
+ len_unix_locn
+ 1, len_rel
);
728 WINE_WARN("Could not separate the relative link path of %s in %s\n", wine_dbgstr_w(link
), wine_dbgstr_w(locn
));
729 HeapFree(GetProcessHeap(), 0, unix_locn
);
730 HeapFree(GetProcessHeap(), 0, unix_link
);
734 /***********************************************************************
738 * returns TRUE if successful
739 * *loc will contain CS_DESKTOPDIRECTORY, CS_STARTMENU, CS_STARTUP etc.
740 * *relative will contain the address of a heap-allocated copy of the portion
741 * of the filename that is within the specified location, in unix form
743 static BOOL
GetLinkLocation( LPCWSTR linkfile
, DWORD
*loc
, char **relative
)
745 WCHAR filename
[MAX_PATH
], buffer
[MAX_PATH
];
746 DWORD len
, i
, r
, filelen
;
747 const DWORD locations
[] = {
748 CSIDL_STARTUP
, CSIDL_DESKTOPDIRECTORY
, CSIDL_STARTMENU
,
749 CSIDL_COMMON_STARTUP
, CSIDL_COMMON_DESKTOPDIRECTORY
,
750 CSIDL_COMMON_STARTMENU
};
752 WINE_TRACE("%s\n", wine_dbgstr_w(linkfile
));
753 filelen
=GetFullPathNameW( linkfile
, MAX_PATH
, filename
, NULL
);
754 if (filelen
==0 || filelen
>MAX_PATH
)
757 WINE_TRACE("%s\n", wine_dbgstr_w(filename
));
759 for( i
=0; i
<sizeof(locations
)/sizeof(locations
[0]); i
++ )
761 if (!SHGetSpecialFolderPathW( 0, buffer
, locations
[i
], FALSE
))
764 len
= lstrlenW(buffer
);
766 continue; /* We've just trashed memory! Hopefully we are OK */
768 if (len
> filelen
|| filename
[len
]!='\\')
770 /* do a lstrcmpinW */
772 r
= lstrcmpiW( filename
, buffer
);
773 filename
[len
] = '\\';
777 /* return the remainder of the string and link type */
779 *relative
= relative_path (filename
, buffer
);
780 return (*relative
!= NULL
);
786 /* gets the target path directly or through MSI */
787 static HRESULT
get_cmdline( IShellLinkW
*sl
, LPWSTR szPath
, DWORD pathSize
,
788 LPWSTR szArgs
, DWORD argsSize
)
790 IShellLinkDataList
*dl
= NULL
;
791 EXP_DARWIN_LINK
*dar
= NULL
;
797 hr
= IShellLinkW_GetPath( sl
, szPath
, pathSize
, NULL
, SLGP_RAWPATH
);
798 if (hr
== S_OK
&& szPath
[0])
800 IShellLinkW_GetArguments( sl
, szArgs
, argsSize
);
804 hr
= IShellLinkW_QueryInterface( sl
, &IID_IShellLinkDataList
, (LPVOID
*) &dl
);
808 hr
= IShellLinkDataList_CopyDataBlock( dl
, EXP_DARWIN_ID_SIG
, (LPVOID
*) &dar
);
815 hr
= CommandLineFromMsiDescriptor( dar
->szwDarwinID
, NULL
, &cmdSize
);
816 if (hr
== ERROR_SUCCESS
)
819 szCmdline
= HeapAlloc( GetProcessHeap(), 0, cmdSize
*sizeof(WCHAR
) );
820 hr
= CommandLineFromMsiDescriptor( dar
->szwDarwinID
, szCmdline
, &cmdSize
);
821 WINE_TRACE(" command : %s\n", wine_dbgstr_w(szCmdline
));
822 if (hr
== ERROR_SUCCESS
)
825 int bcount
, in_quotes
;
827 /* Extract the application path */
834 if ((*s
==0x0009 || *s
==0x0020) && !in_quotes
)
836 /* skip the remaining spaces */
839 } while (*s
==0x0009 || *s
==0x0020);
853 /* Preceded by an even number of '\', this is
854 * half that number of '\', plus a quote which
858 in_quotes
=!in_quotes
;
863 /* Preceded by an odd number of '\', this is
864 * half that number of '\' followed by a '"'
874 /* a regular character */
878 if ((d
-szPath
) == pathSize
)
880 /* Keep processing the path till we get to the
881 * arguments, but 'stand still'
886 /* Close the application path */
889 lstrcpynW(szArgs
, s
, argsSize
);
891 HeapFree( GetProcessHeap(), 0, szCmdline
);
896 IShellLinkDataList_Release( dl
);
900 static BOOL
InvokeShellLinker( IShellLinkW
*sl
, LPCWSTR link
, BOOL bAgain
)
902 static const WCHAR startW
[] = {'\\','c','o','m','m','a','n','d',
903 '\\','s','t','a','r','t','.','e','x','e',0};
904 char *link_name
= NULL
, *icon_name
= NULL
, *work_dir
= NULL
;
905 char *escaped_path
= NULL
, *escaped_args
= NULL
, *escaped_description
= NULL
;
906 WCHAR szDescription
[INFOTIPSIZE
], szPath
[MAX_PATH
], szWorkDir
[MAX_PATH
];
907 WCHAR szArgs
[INFOTIPSIZE
], szIconPath
[MAX_PATH
];
908 int iIconId
= 0, r
= -1;
913 WINE_ERR("Link name is null\n");
917 if( !GetLinkLocation( link
, &csidl
, &link_name
) )
919 WINE_WARN("Unknown link location %s. Ignoring.\n",wine_dbgstr_w(link
));
922 if (!in_desktop_dir(csidl
) && !in_startmenu(csidl
))
924 WINE_WARN("Not under desktop or start menu. Ignoring.\n");
927 WINE_TRACE("Link : %s\n", wine_dbgstr_a(link_name
));
930 IShellLinkW_GetWorkingDirectory( sl
, szWorkDir
, MAX_PATH
);
931 WINE_TRACE("workdir : %s\n", wine_dbgstr_w(szWorkDir
));
933 szDescription
[0] = 0;
934 IShellLinkW_GetDescription( sl
, szDescription
, INFOTIPSIZE
);
935 WINE_TRACE("description: %s\n", wine_dbgstr_w(szDescription
));
937 get_cmdline( sl
, szPath
, MAX_PATH
, szArgs
, INFOTIPSIZE
);
938 WINE_TRACE("path : %s\n", wine_dbgstr_w(szPath
));
939 WINE_TRACE("args : %s\n", wine_dbgstr_w(szArgs
));
942 IShellLinkW_GetIconLocation( sl
, szIconPath
, MAX_PATH
, &iIconId
);
943 WINE_TRACE("icon file : %s\n", wine_dbgstr_w(szIconPath
) );
947 LPITEMIDLIST pidl
= NULL
;
948 IShellLinkW_GetIDList( sl
, &pidl
);
949 if( pidl
&& SHGetPathFromIDListW( pidl
, szPath
) )
950 WINE_TRACE("pidl path : %s\n", wine_dbgstr_w(szPath
));
953 /* extract the icon */
955 icon_name
= extract_icon( szIconPath
, iIconId
);
957 icon_name
= extract_icon( szPath
, iIconId
);
959 /* fail - try once again at reboot time */
964 WINE_WARN("Unable to extract icon, deferring.\n");
967 WINE_ERR("failed to extract icon from %s\n",
968 wine_dbgstr_w( szIconPath
[0] ? szIconPath
: szPath
));
974 static const WCHAR exeW
[] = {'.','e','x','e',0};
977 /* check for .exe extension */
978 if (!(p
= strrchrW( szPath
, '.' )) ||
979 strchrW( p
, '\\' ) || strchrW( p
, '/' ) ||
980 lstrcmpiW( p
, exeW
))
982 /* Not .exe - use 'start.exe' to launch this file */
983 p
= szArgs
+ lstrlenW(szPath
) + 2;
987 memmove( p
+1, szArgs
, min( (lstrlenW(szArgs
) + 1) * sizeof(szArgs
[0]),
988 sizeof(szArgs
) - (p
+ 1 - szArgs
) * sizeof(szArgs
[0]) ) );
994 lstrcpyW(szArgs
+ 1, szPath
);
997 GetWindowsDirectoryW(szPath
, MAX_PATH
);
998 lstrcatW(szPath
, startW
);
1001 /* convert app working dir */
1003 work_dir
= wine_get_unix_file_name( szWorkDir
);
1007 /* if there's no path... try run the link itself */
1008 lstrcpynW(szArgs
, link
, MAX_PATH
);
1009 GetWindowsDirectoryW(szPath
, MAX_PATH
);
1010 lstrcatW(szPath
, startW
);
1013 /* escape the path and parameters */
1014 escaped_path
= escape(szPath
);
1015 escaped_args
= escape(szArgs
);
1016 escaped_description
= escape(szDescription
);
1018 r
= fork_and_wait("wineshelllink", link_name
, escaped_path
,
1019 in_desktop_dir(csidl
), escaped_args
, icon_name
,
1020 work_dir
? work_dir
: "", escaped_description
);
1023 HeapFree( GetProcessHeap(), 0, icon_name
);
1024 HeapFree( GetProcessHeap(), 0, work_dir
);
1025 HeapFree( GetProcessHeap(), 0, link_name
);
1026 HeapFree( GetProcessHeap(), 0, escaped_args
);
1027 HeapFree( GetProcessHeap(), 0, escaped_path
);
1028 HeapFree( GetProcessHeap(), 0, escaped_description
);
1032 WINE_ERR("failed to fork and exec wineshelllink\n" );
1040 static BOOL
Process_Link( LPCWSTR linkname
, BOOL bAgain
)
1045 WCHAR fullname
[MAX_PATH
];
1048 WINE_TRACE("%s, again %d\n", wine_dbgstr_w(linkname
), bAgain
);
1052 WINE_ERR("link name missing\n");
1056 len
=GetFullPathNameW( linkname
, MAX_PATH
, fullname
, NULL
);
1057 if (len
==0 || len
>MAX_PATH
)
1059 WINE_ERR("couldn't get full path of link file\n");
1063 r
= CoInitialize( NULL
);
1066 WINE_ERR("CoInitialize failed\n");
1070 r
= CoCreateInstance( &CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
1071 &IID_IShellLinkW
, (LPVOID
*) &sl
);
1074 WINE_ERR("No IID_IShellLink\n");
1078 r
= IShellLinkW_QueryInterface( sl
, &IID_IPersistFile
, (LPVOID
*) &pf
);
1081 WINE_ERR("No IID_IPersistFile\n");
1085 r
= IPersistFile_Load( pf
, fullname
, STGM_READ
);
1086 if( SUCCEEDED( r
) )
1088 /* If something fails (eg. Couldn't extract icon)
1089 * defer this menu entry to reboot via runonce
1091 if( ! InvokeShellLinker( sl
, fullname
, bAgain
) && bAgain
)
1092 DeferToRunOnce( fullname
);
1094 WINE_TRACE("Success.\n");
1097 IPersistFile_Release( pf
);
1098 IShellLinkW_Release( sl
);
1106 static CHAR
*next_token( LPSTR
*p
)
1108 LPSTR token
= NULL
, t
= *p
;
1113 while( t
&& !token
)
1121 /* unquote the token */
1123 t
= strchr( token
, '"' );
1132 t
= strchr( token
, ' ' );
1142 /***********************************************************************
1146 int PASCAL
WinMain (HINSTANCE hInstance
, HINSTANCE prev
, LPSTR cmdline
, int show
)
1148 LPSTR token
= NULL
, p
;
1149 BOOL bAgain
= FALSE
;
1150 HANDLE hsem
= CreateSemaphoreA( NULL
, 1, 1, "winemenubuilder_semaphore");
1153 /* running multiple instances of wineshelllink
1154 at the same time may be dangerous */
1155 if( WAIT_OBJECT_0
!= WaitForSingleObject( hsem
, INFINITE
) )
1161 for( p
= cmdline
; p
&& *p
; )
1163 token
= next_token( &p
);
1166 if( !lstrcmpA( token
, "-r" ) )
1168 else if( token
[0] == '-' )
1170 WINE_ERR( "unknown option %s\n",token
);
1174 WCHAR link
[MAX_PATH
];
1176 MultiByteToWideChar( CP_ACP
, 0, token
, -1, link
, sizeof(link
)/sizeof(WCHAR
) );
1177 if( !Process_Link( link
, bAgain
) )
1179 WINE_ERR( "failed to build menu item for %s\n",token
);
1185 ReleaseSemaphore( hsem
, 1, NULL
);
1186 CloseHandle( hsem
);