2000-03-18 22:56:10 +01:00
|
|
|
/*
|
|
|
|
* Option parsing
|
|
|
|
*
|
|
|
|
* Copyright 2000 Alexandre Julliard
|
2002-03-10 00:29:33 +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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2000-03-18 22:56:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <string.h>
|
2000-05-30 19:51:44 +02:00
|
|
|
#include <stdlib.h>
|
2000-03-18 22:56:10 +01:00
|
|
|
|
|
|
|
#include "winbase.h"
|
2000-12-15 04:38:11 +01:00
|
|
|
#include "winnls.h"
|
2002-09-13 00:07:02 +02:00
|
|
|
#include "winternl.h"
|
2000-11-08 05:28:54 +01:00
|
|
|
#include "wine/library.h"
|
2000-03-18 22:56:10 +01:00
|
|
|
#include "options.h"
|
2001-07-23 02:04:00 +02:00
|
|
|
#include "module.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2000-03-18 22:56:10 +01:00
|
|
|
|
2001-01-11 00:56:59 +01:00
|
|
|
struct option_descr
|
2000-03-18 22:56:10 +01:00
|
|
|
{
|
|
|
|
const char *longname;
|
|
|
|
char shortname;
|
|
|
|
int has_arg;
|
2000-05-30 19:51:44 +02:00
|
|
|
int inherit;
|
2000-03-18 22:56:10 +01:00
|
|
|
void (*func)( const char *arg );
|
|
|
|
const char *usage;
|
|
|
|
};
|
|
|
|
|
2000-07-16 20:21:34 +02:00
|
|
|
const char *argv0; /* the original argv[0] */
|
|
|
|
const char *full_argv0; /* the full path of argv[0] (if known) */
|
2000-05-29 23:25:10 +02:00
|
|
|
|
2000-05-30 19:51:44 +02:00
|
|
|
static char *inherit_str; /* options to pass to child processes */
|
|
|
|
|
2002-10-01 20:07:37 +02:00
|
|
|
static void DECLSPEC_NORETURN out_of_memory(void);
|
2000-05-30 19:51:44 +02:00
|
|
|
static void out_of_memory(void)
|
|
|
|
{
|
|
|
|
MESSAGE( "Virtual memory exhausted\n" );
|
|
|
|
ExitProcess(1);
|
|
|
|
}
|
|
|
|
|
2000-11-05 05:51:34 +01:00
|
|
|
static void do_debugmsg( const char *arg );
|
2000-03-18 22:56:10 +01:00
|
|
|
static void do_help( const char *arg );
|
|
|
|
static void do_version( const char *arg );
|
|
|
|
|
2001-01-11 00:56:59 +01:00
|
|
|
static const struct option_descr option_table[] =
|
2000-03-18 22:56:10 +01:00
|
|
|
{
|
2000-11-05 05:51:34 +01:00
|
|
|
{ "debugmsg", 0, 1, 1, do_debugmsg,
|
2000-03-18 22:56:10 +01:00
|
|
|
"--debugmsg name Turn debugging-messages on or off" },
|
2001-03-20 03:11:08 +01:00
|
|
|
{ "dll", 0, 1, 1, MODULE_AddLoadOrderOption,
|
2000-03-18 22:56:10 +01:00
|
|
|
"--dll name Enable or disable built-in DLLs" },
|
2000-05-30 19:51:44 +02:00
|
|
|
{ "help", 'h', 0, 0, do_help,
|
2000-03-18 22:56:10 +01:00
|
|
|
"--help,-h Show this help message" },
|
2000-05-30 19:51:44 +02:00
|
|
|
{ "version", 'v', 0, 0, do_version,
|
2000-03-18 22:56:10 +01:00
|
|
|
"--version,-v Display the Wine version" },
|
2000-10-24 04:22:16 +02:00
|
|
|
{ NULL, 0, 0, 0, NULL, NULL } /* terminator */
|
2000-03-18 22:56:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void do_help( const char *arg )
|
|
|
|
{
|
|
|
|
OPTIONS_Usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void do_version( const char *arg )
|
|
|
|
{
|
2002-04-11 23:54:01 +02:00
|
|
|
MESSAGE( "%s\n", PACKAGE_STRING );
|
2000-03-18 22:56:10 +01:00
|
|
|
ExitProcess(0);
|
|
|
|
}
|
|
|
|
|
2000-11-05 05:51:34 +01:00
|
|
|
static void do_debugmsg( const char *arg )
|
|
|
|
{
|
2002-06-04 19:48:41 +02:00
|
|
|
if (wine_dbg_parse_options( arg ))
|
2000-11-05 05:51:34 +01:00
|
|
|
{
|
2002-06-04 19:48:41 +02:00
|
|
|
MESSAGE("%s: Syntax: --debugmsg [class]+xxx,... or -debugmsg [class]-xxx,...\n", argv0);
|
|
|
|
MESSAGE("Example: --debugmsg +all,warn-heap\n"
|
|
|
|
" turn on all messages except warning heap messages\n");
|
|
|
|
MESSAGE("Available message classes: err, warn, fixme, trace\n\n");
|
|
|
|
ExitProcess(1);
|
|
|
|
}
|
2000-11-05 05:51:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-30 19:51:44 +02:00
|
|
|
static void remove_options( char *argv[], int pos, int count, int inherit )
|
2000-03-18 22:56:10 +01:00
|
|
|
{
|
2000-05-30 19:51:44 +02:00
|
|
|
if (inherit)
|
|
|
|
{
|
|
|
|
int i, len = 0;
|
|
|
|
for (i = 0; i < count; i++) len += strlen(argv[pos+i]) + 1;
|
|
|
|
if (inherit_str)
|
|
|
|
{
|
2000-06-07 04:03:54 +02:00
|
|
|
if (!(inherit_str = realloc( inherit_str, strlen(inherit_str) + 1 + len )))
|
2000-05-30 19:51:44 +02:00
|
|
|
out_of_memory();
|
|
|
|
strcat( inherit_str, " " );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!(inherit_str = malloc( len ))) out_of_memory();
|
|
|
|
inherit_str[0] = 0;
|
|
|
|
}
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
strcat( inherit_str, argv[pos+i] );
|
|
|
|
if (i < count-1) strcat( inherit_str, " " );
|
|
|
|
}
|
|
|
|
}
|
2000-03-18 22:56:10 +01:00
|
|
|
while ((argv[pos] = argv[pos+count])) pos++;
|
|
|
|
}
|
|
|
|
|
2000-05-30 19:51:44 +02:00
|
|
|
/* parse options from the argv array and remove all the recognized ones */
|
|
|
|
static void parse_options( char *argv[] )
|
2000-03-18 22:56:10 +01:00
|
|
|
{
|
2001-01-11 00:56:59 +01:00
|
|
|
const struct option_descr *opt;
|
2000-03-18 22:56:10 +01:00
|
|
|
int i;
|
|
|
|
|
2000-05-30 19:51:44 +02:00
|
|
|
for (i = 0; argv[i]; i++)
|
2000-03-18 22:56:10 +01:00
|
|
|
{
|
2000-12-18 04:49:49 +01:00
|
|
|
const char *equalarg = NULL;
|
2000-03-18 22:56:10 +01:00
|
|
|
char *p = argv[i];
|
|
|
|
if (*p++ != '-') continue; /* not an option */
|
|
|
|
if (*p && !p[1]) /* short name */
|
|
|
|
{
|
|
|
|
if (*p == '-') break; /* "--" option */
|
|
|
|
for (opt = option_table; opt->longname; opt++) if (opt->shortname == *p) break;
|
|
|
|
}
|
|
|
|
else /* long name */
|
|
|
|
{
|
2000-12-18 04:49:49 +01:00
|
|
|
const char *equal = strchr (p, '=');
|
2000-03-18 22:56:10 +01:00
|
|
|
if (*p == '-') p++;
|
|
|
|
/* check for the long name */
|
2000-12-18 04:49:49 +01:00
|
|
|
for (opt = option_table; opt->longname; opt++) {
|
|
|
|
/* Plain --option */
|
2000-03-18 22:56:10 +01:00
|
|
|
if (!strcmp( p, opt->longname )) break;
|
2000-12-18 04:49:49 +01:00
|
|
|
|
|
|
|
/* --option=value */
|
|
|
|
if (opt->has_arg &&
|
|
|
|
equal &&
|
|
|
|
strlen (opt->longname) == equal - p &&
|
|
|
|
!strncmp (p, opt->longname, equal - p)) {
|
|
|
|
equalarg = equal + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-03-18 22:56:10 +01:00
|
|
|
}
|
|
|
|
if (!opt->longname) continue;
|
|
|
|
|
2000-12-18 04:49:49 +01:00
|
|
|
if (equalarg)
|
|
|
|
{
|
|
|
|
opt->func( equalarg );
|
|
|
|
remove_options( argv, i, 1, opt->inherit );
|
|
|
|
}
|
|
|
|
else if (opt->has_arg && argv[i+1])
|
2000-03-18 22:56:10 +01:00
|
|
|
{
|
|
|
|
opt->func( argv[i+1] );
|
2000-05-30 19:51:44 +02:00
|
|
|
remove_options( argv, i, 2, opt->inherit );
|
2000-03-18 22:56:10 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
opt->func( "" );
|
2000-05-30 19:51:44 +02:00
|
|
|
remove_options( argv, i, 1, opt->inherit );
|
2000-03-18 22:56:10 +01:00
|
|
|
}
|
|
|
|
i--;
|
|
|
|
}
|
2000-05-30 19:51:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* inherit options from WINEOPTIONS variable */
|
|
|
|
static void inherit_options( char *buffer )
|
|
|
|
{
|
|
|
|
char *argv[256];
|
2000-11-01 04:11:12 +01:00
|
|
|
unsigned int n;
|
2000-05-30 19:51:44 +02:00
|
|
|
|
|
|
|
char *p = strtok( buffer, " \t" );
|
2000-11-01 04:11:12 +01:00
|
|
|
for (n = 0; n < sizeof(argv)/sizeof(argv[0])-1 && p; n++)
|
2000-05-30 19:51:44 +02:00
|
|
|
{
|
2000-11-01 04:11:12 +01:00
|
|
|
argv[n] = p;
|
2000-05-30 19:51:44 +02:00
|
|
|
p = strtok( NULL, " \t" );
|
|
|
|
}
|
2000-11-01 04:11:12 +01:00
|
|
|
argv[n] = NULL;
|
2000-05-30 19:51:44 +02:00
|
|
|
parse_options( argv );
|
|
|
|
if (argv[0]) /* an option remains */
|
|
|
|
{
|
|
|
|
MESSAGE( "Unknown option '%s' in WINEOPTIONS variable\n\n", argv[0] );
|
|
|
|
OPTIONS_Usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* OPTIONS_Usage
|
|
|
|
*/
|
|
|
|
void OPTIONS_Usage(void)
|
|
|
|
{
|
2001-01-11 00:56:59 +01:00
|
|
|
const struct option_descr *opt;
|
2002-04-11 23:54:01 +02:00
|
|
|
MESSAGE( "%s\n\n", PACKAGE_STRING );
|
2000-12-15 22:28:47 +01:00
|
|
|
MESSAGE( "Usage: %s [options] [--] program_name [arguments]\n", argv0 );
|
|
|
|
MESSAGE("The -- has to be used if you specify arguments (of the program)\n\n");
|
2000-05-30 19:51:44 +02:00
|
|
|
MESSAGE( "Options:\n" );
|
|
|
|
for (opt = option_table; opt->longname; opt++) MESSAGE( " %s\n", opt->usage );
|
|
|
|
ExitProcess(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* OPTIONS_ParseOptions
|
|
|
|
*/
|
|
|
|
void OPTIONS_ParseOptions( char *argv[] )
|
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (GetEnvironmentVariableA( "WINEOPTIONS", buffer, sizeof(buffer) ) && buffer[0])
|
|
|
|
inherit_options( buffer );
|
2002-04-14 21:36:02 +02:00
|
|
|
if (!argv) return;
|
2000-05-30 19:51:44 +02:00
|
|
|
|
|
|
|
parse_options( argv + 1 );
|
|
|
|
|
|
|
|
SetEnvironmentVariableA( "WINEOPTIONS", inherit_str );
|
2000-03-18 22:56:10 +01:00
|
|
|
|
|
|
|
/* check if any option remains */
|
|
|
|
for (i = 1; argv[i]; i++)
|
|
|
|
{
|
|
|
|
if (!strcmp( argv[i], "--" ))
|
|
|
|
{
|
2000-05-30 19:51:44 +02:00
|
|
|
remove_options( argv, i, 1, 0 );
|
2000-03-18 22:56:10 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (argv[i][0] == '-')
|
|
|
|
{
|
2000-05-30 19:51:44 +02:00
|
|
|
MESSAGE( "Unknown option '%s'\n\n", argv[i] );
|
2000-03-18 22:56:10 +01:00
|
|
|
OPTIONS_Usage();
|
|
|
|
}
|
|
|
|
}
|
2000-12-15 04:38:11 +01:00
|
|
|
}
|