2005-11-16 12:45:51 +01:00
|
|
|
/*
|
|
|
|
* explorer.exe
|
|
|
|
*
|
2006-02-19 18:50:27 +01:00
|
|
|
* Copyright 2004 CodeWeavers, Mike Hearn
|
2006-01-14 17:05:18 +01:00
|
|
|
* Copyright 2005,2006 CodeWeavers, Aric Stewart
|
2005-11-16 12:45:51 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-11-16 12:45:51 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
2006-03-07 11:41:52 +01:00
|
|
|
#include "explorer_private.h"
|
2006-02-19 18:50:27 +01:00
|
|
|
|
2005-11-16 12:45:51 +01:00
|
|
|
typedef struct parametersTAG {
|
|
|
|
BOOL explorer_mode;
|
|
|
|
WCHAR root[MAX_PATH];
|
|
|
|
WCHAR selection[MAX_PATH];
|
|
|
|
} parameters_struct;
|
|
|
|
|
|
|
|
|
|
|
|
static int CopyPathString(LPWSTR target, LPSTR source)
|
|
|
|
{
|
|
|
|
CHAR temp_buf[MAX_PATH];
|
|
|
|
INT i = 0;
|
|
|
|
|
2005-11-17 12:06:06 +01:00
|
|
|
while (isspace(*source)) source++;
|
2005-11-16 12:45:51 +01:00
|
|
|
|
|
|
|
if (*source == '\"')
|
|
|
|
{
|
|
|
|
source ++;
|
|
|
|
while (*source != '\"')
|
|
|
|
{
|
|
|
|
temp_buf[i] = *source;
|
|
|
|
i++;
|
|
|
|
source++;
|
|
|
|
}
|
|
|
|
temp_buf[i] = 0;
|
|
|
|
source ++;
|
|
|
|
i+=2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (*source && !isspace(*source))
|
|
|
|
{
|
|
|
|
temp_buf[i] = *source;
|
|
|
|
i++;
|
|
|
|
source++;
|
|
|
|
}
|
|
|
|
temp_buf[i] = 0;
|
|
|
|
}
|
|
|
|
MultiByteToWideChar(CP_ACP,0,temp_buf,-1,target,MAX_PATH);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void CopyPathRoot(LPWSTR root, LPWSTR path)
|
|
|
|
{
|
|
|
|
LPWSTR p,p2;
|
|
|
|
INT i = 0;
|
|
|
|
|
|
|
|
p = path;
|
|
|
|
while (*p!=0)
|
|
|
|
p++;
|
|
|
|
|
|
|
|
while (*p!='\\' && p > path)
|
|
|
|
p--;
|
|
|
|
|
|
|
|
if (p == path)
|
|
|
|
return;
|
|
|
|
|
|
|
|
p2 = path;
|
|
|
|
while (p2 != p)
|
|
|
|
{
|
|
|
|
root[i] = *p2;
|
|
|
|
i++;
|
|
|
|
p2++;
|
|
|
|
}
|
|
|
|
root[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Command Line parameters are:
|
|
|
|
* [/n] Opens in single-paned view for each selected items. This is default
|
|
|
|
* [/e,] Uses Windows Explorer View
|
|
|
|
* [/root,object] Specifies the root level of the view
|
|
|
|
* [/select,object] parent folder is opened and specified object is selected
|
|
|
|
*/
|
|
|
|
static void ParseCommandLine(LPSTR commandline,parameters_struct *parameters)
|
|
|
|
{
|
|
|
|
LPSTR p;
|
|
|
|
LPSTR p2;
|
|
|
|
|
|
|
|
p2 = commandline;
|
|
|
|
p = strchr(commandline,'/');
|
|
|
|
while(p)
|
|
|
|
{
|
|
|
|
p++;
|
|
|
|
if (strncmp(p,"n",1)==0)
|
|
|
|
{
|
|
|
|
parameters->explorer_mode = FALSE;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
else if (strncmp(p,"e,",2)==0)
|
|
|
|
{
|
|
|
|
parameters->explorer_mode = TRUE;
|
|
|
|
p+=2;
|
|
|
|
}
|
|
|
|
else if (strncmp(p,"root,",5)==0)
|
|
|
|
{
|
|
|
|
p+=5;
|
|
|
|
p+=CopyPathString(parameters->root,p);
|
|
|
|
}
|
|
|
|
else if (strncmp(p,"select,",7)==0)
|
|
|
|
{
|
|
|
|
p+=7;
|
|
|
|
p+=CopyPathString(parameters->selection,p);
|
|
|
|
if (!parameters->root[0])
|
|
|
|
CopyPathRoot(parameters->root,
|
|
|
|
parameters->selection);
|
|
|
|
}
|
2006-03-07 11:41:52 +01:00
|
|
|
else if (strncmp(p,"desktop",7)==0)
|
|
|
|
{
|
2006-03-27 22:43:03 +02:00
|
|
|
manage_desktop( p + 7 ); /* the rest of the command line is handled by desktop mode */
|
2006-03-07 11:41:52 +01:00
|
|
|
}
|
2005-11-16 12:45:51 +01:00
|
|
|
p2 = p;
|
|
|
|
p = strchr(p,'/');
|
|
|
|
}
|
|
|
|
if (p2 && *p2)
|
|
|
|
{
|
|
|
|
/* left over command line is generally the path to be opened */
|
|
|
|
CopyPathString(parameters->root,p2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int WINAPI WinMain(HINSTANCE hinstance,
|
|
|
|
HINSTANCE previnstance,
|
|
|
|
LPSTR cmdline,
|
|
|
|
int cmdshow)
|
|
|
|
{
|
|
|
|
STARTUPINFOW si;
|
|
|
|
PROCESS_INFORMATION info;
|
|
|
|
parameters_struct parameters;
|
|
|
|
BOOL rc;
|
2006-08-18 20:54:13 +02:00
|
|
|
static const WCHAR winefile[] = {'\\','w','i','n','e','f','i','l','e','.','e','x','e',0};
|
2006-01-24 14:00:32 +01:00
|
|
|
static const WCHAR space[] = {' ',0};
|
2006-01-14 17:05:18 +01:00
|
|
|
LPWSTR winefile_commandline = NULL;
|
|
|
|
DWORD len = 0;
|
2005-11-16 12:45:51 +01:00
|
|
|
|
|
|
|
memset(¶meters,0,sizeof(parameters));
|
|
|
|
memset(&si,0,sizeof(STARTUPINFOW));
|
|
|
|
|
|
|
|
ParseCommandLine(cmdline,¶meters);
|
2006-08-18 20:54:13 +02:00
|
|
|
len = GetSystemDirectoryW( NULL, 0 ) + sizeof(winefile)/sizeof(WCHAR);
|
|
|
|
|
|
|
|
if (parameters.selection[0]) len += lstrlenW(parameters.selection) + 2;
|
|
|
|
else if (parameters.root[0]) len += lstrlenW(parameters.root) + 3;
|
|
|
|
|
|
|
|
winefile_commandline = HeapAlloc(GetProcessHeap(),0,len*sizeof(WCHAR));
|
|
|
|
GetSystemDirectoryW( winefile_commandline, len );
|
|
|
|
lstrcatW(winefile_commandline,winefile);
|
2006-02-19 18:50:27 +01:00
|
|
|
|
2006-03-07 11:41:52 +01:00
|
|
|
if (parameters.selection[0])
|
2006-01-14 17:05:18 +01:00
|
|
|
{
|
|
|
|
lstrcatW(winefile_commandline,space);
|
|
|
|
lstrcatW(winefile_commandline,parameters.selection);
|
|
|
|
}
|
|
|
|
else if (parameters.root[0])
|
|
|
|
{
|
|
|
|
lstrcatW(winefile_commandline,space);
|
|
|
|
lstrcatW(winefile_commandline,parameters.root);
|
|
|
|
if (winefile_commandline[lstrlenW(winefile_commandline)-1]!='\\')
|
|
|
|
{
|
|
|
|
static const WCHAR slash[] = {'\\',0};
|
|
|
|
lstrcatW(winefile_commandline,slash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = CreateProcessW(NULL, winefile_commandline, NULL, NULL, FALSE, 0, NULL,
|
2005-11-16 12:45:51 +01:00
|
|
|
parameters.root, &si, &info);
|
2006-01-14 17:05:18 +01:00
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(),0,winefile_commandline);
|
2006-02-19 18:50:27 +01:00
|
|
|
|
2005-11-16 12:45:51 +01:00
|
|
|
if (!rc)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
WaitForSingleObject(info.hProcess,INFINITE);
|
|
|
|
return 0;
|
|
|
|
}
|