Sweden-Number/programs/start/start.c

237 lines
5.7 KiB
C
Raw Normal View History

2003-01-21 21:14:36 +01:00
/*
* Start a program using ShellExecuteEx, optionally wait for it to finish
* Compatible with Microsoft's "c:\windows\command\start.exe"
*
* Copyright 2003 Dan Kegel
2007-12-11 21:14:13 +01:00
* Copyright 2007 Lyutin Anatoly (Etersoft)
2003-01-21 21:14:36 +01:00
*
* This program 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 program 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 program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
2003-01-21 21:14:36 +01:00
*/
#include <windows.h>
#include <winuser.h>
#include <stdio.h>
#include <stdlib.h>
#include <shlobj.h>
2007-12-11 21:14:13 +01:00
#include <wine/unicode.h>
#include <wine/debug.h>
2003-01-21 21:14:36 +01:00
#include "resources.h"
2007-12-11 21:14:13 +01:00
WINE_DEFAULT_DEBUG_CHANNEL(start);
2003-01-21 21:14:36 +01:00
/**
Output given message to stdout without formatting.
*/
2007-12-11 21:14:13 +01:00
static void output(const WCHAR *message)
2003-01-21 21:14:36 +01:00
{
DWORD count;
2007-12-11 21:14:13 +01:00
DWORD res;
int wlen = strlenW(message);
2003-01-21 21:14:36 +01:00
2007-12-11 21:14:13 +01:00
if (!wlen) return;
2003-01-21 21:14:36 +01:00
2007-12-11 21:14:13 +01:00
res = WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE), message, wlen, &count, NULL);
/* If writing to console fails, assume its file
i/o so convert to OEM codepage and output */
if (!res)
{
DWORD len;
char *mesA;
/* Convert to OEM, then output */
len = WideCharToMultiByte( GetConsoleOutputCP(), 0, message, wlen, NULL, 0, NULL, NULL );
mesA = HeapAlloc(GetProcessHeap(), 0, len*sizeof(char));
if (!mesA) return;
WideCharToMultiByte( GetConsoleOutputCP(), 0, message, wlen, mesA, len, NULL, NULL );
WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), mesA, len, &count, FALSE);
HeapFree(GetProcessHeap(), 0, mesA);
2003-01-21 21:14:36 +01:00
}
}
/**
Output given message from string table,
followed by ": ",
followed by description of given GetLastError() value to stdout,
followed by a trailing newline,
then terminate.
*/
2007-12-11 21:14:13 +01:00
static void fatal_error(const WCHAR *msg, DWORD error_code)
{
LPVOID lpMsgBuf;
int status;
static const WCHAR colonsW[] = { ':', ' ', 0 };
static const WCHAR newlineW[] = { '\n', 0 };
output(msg);
output(colonsW);
status = FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, NULL, error_code, 0, (LPWSTR) & lpMsgBuf, 0, NULL);
if (!status)
{
WINE_ERR("FormatMessage failed\n");
} else
{
output(lpMsgBuf);
LocalFree((HLOCAL) lpMsgBuf);
output(newlineW);
}
ExitProcess(1);
}
2003-01-21 21:14:36 +01:00
static void fatal_string_error(int which, DWORD error_code)
{
2007-12-11 21:14:13 +01:00
WCHAR msg[2048];
2003-01-21 21:14:36 +01:00
2007-12-11 21:14:13 +01:00
if (!LoadStringW(GetModuleHandle(NULL), which,
msg, sizeof(msg)/sizeof(WCHAR)))
WINE_ERR("LoadString failed, error %d\n", GetLastError());
2003-01-21 21:14:36 +01:00
fatal_error(msg, error_code);
}
static void fatal_string(int which)
{
2007-12-11 21:14:13 +01:00
WCHAR msg[2048];
2003-01-21 21:14:36 +01:00
2007-12-11 21:14:13 +01:00
if (!LoadStringW(GetModuleHandle(NULL), which,
msg, sizeof(msg)/sizeof(WCHAR)))
WINE_ERR("LoadString failed, error %d\n", GetLastError());
2003-01-21 21:14:36 +01:00
output(msg);
ExitProcess(1);
}
2005-06-27 11:57:28 +02:00
static void usage(void)
2003-01-21 21:14:36 +01:00
{
fatal_string(STRING_USAGE);
}
2005-06-27 11:57:28 +02:00
static void license(void)
2003-01-21 21:14:36 +01:00
{
fatal_string(STRING_LICENSE);
}
2007-12-11 21:14:13 +01:00
static WCHAR *build_args( int argc, WCHAR **argvW )
{
2007-12-11 21:14:13 +01:00
int i, wlen = 1;
WCHAR *ret, *p;
static const WCHAR FormatQuotesW[] = { ' ', '\"', '%', 's', '\"', 0 };
static const WCHAR FormatW[] = { ' ', '%', 's', 0 };
for (i = 0; i < argc; i++ )
{
2007-12-11 21:14:13 +01:00
wlen += strlenW(argvW[i]) + 1;
if (strchrW(argvW[i], ' '))
wlen += 2;
}
2007-12-11 21:14:13 +01:00
ret = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
ret[0] = 0;
for (i = 0, p = ret; i < argc; i++ )
{
2007-12-11 21:14:13 +01:00
if (strchrW(argvW[i], ' '))
p += sprintfW(p, FormatQuotesW, argvW[i]);
else
2007-12-11 21:14:13 +01:00
p += sprintfW(p, FormatW, argvW[i]);
}
return ret;
}
2007-12-11 21:14:13 +01:00
int wmain (int argc, WCHAR *argv[])
2003-01-21 21:14:36 +01:00
{
2007-12-11 21:14:13 +01:00
SHELLEXECUTEINFOW sei;
WCHAR *args = NULL;
int i;
2003-01-21 21:14:36 +01:00
2007-12-11 21:14:13 +01:00
static const WCHAR openW[] = { 'o', 'p', 'e', 'n', 0 };
2003-01-21 21:14:36 +01:00
memset(&sei, 0, sizeof(sei));
sei.cbSize = sizeof(sei);
2007-12-11 21:14:13 +01:00
sei.lpVerb = openW;
2003-01-21 21:14:36 +01:00
sei.nShow = SW_SHOWNORMAL;
/* Dunno what these mean, but it looks like winMe's start uses them */
sei.fMask = SEE_MASK_FLAG_DDEWAIT|
SEE_MASK_FLAG_NO_UI|
SEE_MASK_NO_CONSOLE;
2003-01-21 21:14:36 +01:00
/* Canonical Microsoft commandline flag processing:
* flags start with /, are case insensitive,
* and may be run together in same word.
*/
for (i=1; i<argc; i++) {
2003-01-21 21:14:36 +01:00
int ci;
if (argv[i][0] != '/')
2003-01-21 21:14:36 +01:00
break;
/* Handle all options in this word */
for (ci=0; argv[i][ci]; ) {
2003-01-21 21:14:36 +01:00
/* Skip slash */
ci++;
switch(argv[i][ci]) {
2003-01-21 21:14:36 +01:00
case 'l':
case 'L':
license();
break; /* notreached */
case 'm':
case 'M':
if (argv[i][ci+1] == 'a' || argv[i][ci+1] == 'A')
2003-01-21 21:14:36 +01:00
sei.nShow = SW_SHOWMAXIMIZED;
else
sei.nShow = SW_SHOWMINIMIZED;
break;
case 'r':
case 'R':
/* sei.nShow = SW_SHOWNORMAL; */
break;
case 'w':
case 'W':
sei.fMask |= SEE_MASK_NOCLOSEPROCESS;
break;
default:
2007-12-11 21:14:13 +01:00
WINE_ERR("Option '%s' not recognized\n", wine_dbgstr_w( argv[i]+ci-1));
2003-01-21 21:14:36 +01:00
usage();
}
/* Skip to next slash */
while (argv[i][ci] && (argv[i][ci] != '/'))
2003-01-21 21:14:36 +01:00
ci++;
}
}
if (i == argc)
2003-01-21 21:14:36 +01:00
usage();
sei.lpFile = argv[i++];
2003-01-21 21:14:36 +01:00
args = build_args( argc - i, &argv[i] );
sei.lpParameters = args;
2003-01-21 21:14:36 +01:00
2007-12-11 21:14:13 +01:00
if (!ShellExecuteExW(&sei))
2003-01-21 21:14:36 +01:00
fatal_string_error(STRING_EXECFAIL, GetLastError());
HeapFree( GetProcessHeap(), 0, args );
2003-01-21 21:14:36 +01:00
if (sei.fMask & SEE_MASK_NOCLOSEPROCESS) {
DWORD exitcode;
2007-12-11 21:14:13 +01:00
WaitForSingleObject(sei.hProcess, INFINITE);
GetExitCodeProcess(sei.hProcess, &exitcode);
2003-01-21 21:14:36 +01:00
ExitProcess(exitcode);
}
ExitProcess(0);
}