Move DoShowOptions to xf86Configure.c, delete xf86ShowOpts.c
Gets rid of duplicate static copy of optionTypeToString by putting both callers of that helper function in the same source file. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Daniel Stone <daniel@fooishbar.org> Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
parent
43fa127426
commit
6450f6ca7e
|
@ -35,7 +35,7 @@ xf86DefModeSet.c: $(srcdir)/modeline2c.awk $(MODEDEFSOURCES)
|
|||
BUILT_SOURCES = xf86DefModeSet.c
|
||||
|
||||
AM_LDFLAGS = -r
|
||||
libcommon_la_SOURCES = xf86Configure.c xf86ShowOpts.c xf86Bus.c xf86Config.c \
|
||||
libcommon_la_SOURCES = xf86Configure.c xf86Bus.c xf86Config.c \
|
||||
xf86Cursor.c $(DGASOURCES) xf86DPMS.c \
|
||||
xf86Events.c xf86Globals.c xf86AutoConfig.c \
|
||||
xf86Option.c xf86Init.c \
|
||||
|
|
|
@ -757,3 +757,54 @@ bail:
|
|||
fflush(stderr);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
/* Xorg -showopts:
|
||||
* For each driver module installed, print out the list
|
||||
* of options and their argument types, then exit
|
||||
*
|
||||
* Author: Marcus Schaefer, ms@suse.de
|
||||
*/
|
||||
|
||||
void DoShowOptions (void) {
|
||||
int i = 0;
|
||||
char **vlist = 0;
|
||||
char *pSymbol = 0;
|
||||
XF86ModuleData *initData = 0;
|
||||
if (! (vlist = xf86DriverlistFromCompile())) {
|
||||
ErrorF("Missing output drivers\n");
|
||||
goto bail;
|
||||
}
|
||||
xf86LoadModules (vlist,0);
|
||||
free(vlist);
|
||||
for (i = 0; i < xf86NumDrivers; i++) {
|
||||
if (xf86DriverList[i]->AvailableOptions) {
|
||||
OptionInfoPtr pOption = (OptionInfoPtr)(*xf86DriverList[i]->AvailableOptions)(0,0);
|
||||
if (! pOption) {
|
||||
ErrorF ("(EE) Couldn't read option table for %s driver\n",
|
||||
xf86DriverList[i]->driverName
|
||||
);
|
||||
continue;
|
||||
}
|
||||
XNFasprintf(&pSymbol, "%sModuleData",
|
||||
xf86DriverList[i]->driverName);
|
||||
initData = LoaderSymbol (pSymbol);
|
||||
if (initData) {
|
||||
XF86ModuleVersionInfo *vers = initData->vers;
|
||||
OptionInfoPtr p;
|
||||
ErrorF ("Driver[%d]:%s[%s] {\n",
|
||||
i,xf86DriverList[i]->driverName,vers->vendor
|
||||
);
|
||||
for (p = pOption; p->name != NULL; p++) {
|
||||
ErrorF ("\t%s:%s\n", p->name,
|
||||
optionTypeToString(p->type));
|
||||
}
|
||||
ErrorF ("}\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
bail:
|
||||
OsCleanup (TRUE);
|
||||
AbortDDX (EXIT_ERR_DRIVERS);
|
||||
fflush (stderr);
|
||||
exit (0);
|
||||
}
|
||||
|
|
|
@ -1,122 +0,0 @@
|
|||
/* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86ShopwOpts.c,v 3.80 2003/10/08 14:58:27 dawes Exp $ */
|
||||
/*
|
||||
* Copyright 2000-2002 by Alan Hourihane, Flint Mountain, North Wales.
|
||||
*
|
||||
* Permission to use, copy, modify, distribute, and sell this software and its
|
||||
* documentation for any purpose is hereby granted without fee, provided that
|
||||
* the above copyright notice appear in all copies and that both that
|
||||
* copyright notice and this permission notice appear in supporting
|
||||
* documentation, and that the name of Alan Hourihane not be used in
|
||||
* advertising or publicity pertaining to distribution of the software without
|
||||
* specific, written prior permission. Alan Hourihane makes no representations
|
||||
* about the suitability of this software for any purpose. It is provided
|
||||
* "as is" without express or implied warranty.
|
||||
*
|
||||
* ALAN HOURIHANE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
||||
* EVENT SHALL ALAN HOURIHANE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*
|
||||
* Author: Marcus Schaefer, ms@suse.de
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <X11/X.h>
|
||||
#include <X11/Xmd.h>
|
||||
#include "os.h"
|
||||
#ifdef XFree86LOADER
|
||||
#include "loaderProcs.h"
|
||||
#endif
|
||||
#include "xf86.h"
|
||||
#include "xf86Config.h"
|
||||
#include "xf86_OSlib.h"
|
||||
#include "xf86Priv.h"
|
||||
/* #include "xf86PciData.h" */
|
||||
#define IN_XSERVER
|
||||
#include "xf86Parser.h"
|
||||
#include "xf86tokens.h"
|
||||
#include "Configint.h"
|
||||
#include "xf86DDC.h"
|
||||
#if defined(__sparc__) && !defined(__OpenBSD__)
|
||||
#include "xf86Bus.h"
|
||||
#include "xf86Sbus.h"
|
||||
#endif
|
||||
#include "globals.h"
|
||||
|
||||
static const char*
|
||||
optionTypeToSting(OptionValueType type)
|
||||
{
|
||||
switch (type) {
|
||||
case OPTV_NONE:
|
||||
return "";
|
||||
case OPTV_INTEGER:
|
||||
return "<int>";
|
||||
case OPTV_STRING:
|
||||
return "<str>";
|
||||
case OPTV_ANYSTR:
|
||||
return "<str>";
|
||||
case OPTV_REAL:
|
||||
return "<real>";
|
||||
case OPTV_BOOLEAN:
|
||||
return "<bool>";
|
||||
case OPTV_FREQ:
|
||||
return "<freq>";
|
||||
case OPTV_PERCENT:
|
||||
return "<percent>";
|
||||
default:
|
||||
return "<undef>";
|
||||
}
|
||||
}
|
||||
|
||||
void DoShowOptions (void) {
|
||||
int i = 0;
|
||||
char **vlist = 0;
|
||||
char *pSymbol = 0;
|
||||
XF86ModuleData *initData = 0;
|
||||
if (! (vlist = xf86DriverlistFromCompile())) {
|
||||
ErrorF("Missing output drivers\n");
|
||||
goto bail;
|
||||
}
|
||||
xf86LoadModules (vlist,0);
|
||||
free(vlist);
|
||||
for (i = 0; i < xf86NumDrivers; i++) {
|
||||
if (xf86DriverList[i]->AvailableOptions) {
|
||||
OptionInfoPtr pOption = (OptionInfoPtr)(*xf86DriverList[i]->AvailableOptions)(0,0);
|
||||
if (! pOption) {
|
||||
ErrorF ("(EE) Couldn't read option table for %s driver\n",
|
||||
xf86DriverList[i]->driverName
|
||||
);
|
||||
continue;
|
||||
}
|
||||
XNFasprintf(&pSymbol, "%sModuleData",
|
||||
xf86DriverList[i]->driverName);
|
||||
initData = LoaderSymbol (pSymbol);
|
||||
if (initData) {
|
||||
XF86ModuleVersionInfo *vers = initData->vers;
|
||||
OptionInfoPtr p;
|
||||
ErrorF ("Driver[%d]:%s[%s] {\n",
|
||||
i,xf86DriverList[i]->driverName,vers->vendor
|
||||
);
|
||||
for (p = pOption; p->name != NULL; p++) {
|
||||
ErrorF ("\t%s:%s\n", p->name,
|
||||
optionTypeToSting(p->type));
|
||||
}
|
||||
ErrorF ("}\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
bail:
|
||||
OsCleanup (TRUE);
|
||||
AbortDDX (EXIT_ERR_DRIVERS);
|
||||
fflush (stderr);
|
||||
exit (0);
|
||||
}
|
Loading…
Reference in New Issue