我正在寻找一种自动列出所有内容的方法X资源在应用程序中使用的。给你一个例子,因为xterm
我希望有一个类似于以下内容的列表,但带有全部所使用的资源
xterm
。
background
foreground
cursorColor
vt100.geometry
scrollBar
scrollTtyOutput
...
该方法可以在应用程序的源代码上运行,但如果可以仅使用应用程序二进制文件来实现,那也会很有趣。
答案1
答案2
答案3
XrmParseCommand
在执行原始函数之前“捕获”函数并列出选项非常容易。
/* G. Allen Morris III <[email protected]> */
#define _GNU_SOURCE
#include <X11/Xresource.h>
#include <stdio.h>
#include <dlfcn.h>
static char *types[] = {
"XrmoptionNoArg",
"XrmoptionIsArg",
"XrmoptionStickyArg",
"XrmoptionSepArg",
"XrmoptionResArg",
"XrmoptionSkipArg",
"XrmoptionSkipLine",
"XrmoptionSkipNArgs"
};
void XrmParseCommand(XrmDatabase * database,
XrmOptionDescList table,
int table_count,
_Xconst char *name, int *argc_in_out, char **argv_in_out)
{
void (*original_XrmParseCommand) (XrmDatabase * database,
XrmOptionDescList table,
int table_count,
_Xconst char *name, int *argc_in_out,
char **argv_in_out);
int argc = *argc_in_out;
printf("'XrmParseCommand's %s\n", name);
for (int i = 0; i < table_count; i++) {
switch (table[i].argKind) {
case XrmoptionNoArg:
case XrmoptionIsArg:
case XrmoptionStickyArg:
case XrmoptionResArg:
case XrmoptionSkipArg:
case XrmoptionSkipLine:
case XrmoptionSkipNArgs:
case XrmoptionSepArg:
printf("%20s %30s %s \n", types[table[i].argKind], table[i].option,
table[i].specifier);
break;
default:
printf("%20s %30s %s \n", "UNKNOWN", table[i].option,
table[i].specifier);
}
}
original_XrmParseCommand = dlsym(RTLD_NEXT, "XrmParseCommand");
(*original_XrmParseCommand) (database,
table,
table_count, name, argc_in_out, argv_in_out);
}
/* eof */
生成文件
myXrmParseCommand.so : myXrmParseCommand.c
gcc -Wall -fPIC -shared -o $@ $< -ldl
运行它
#/bin/sh
make && LD_PRELOAD=./myXrmParseCommand.so xterm -e :;
Git 实验室上有一个片段这里。