changed indentation to use spaces only
[wmaker-crm.git] / util / wdread.c
blobf42ea5a523520820f682b8eeb22074df4515fb99
1 /* wdread.c - read value from defaults database
3 * WindowMaker window manager
5 * Copyright (c) 1997-2003 Alfredo K. Kojima
6 * (cowardly remade from wdwrite.c; by judas@hell on Jan 26 2001)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 * USA.
24 #define PROG_VERSION "wdread (Window Maker) 0.2"
28 * WindowMaker defaults DB reader
32 #include "../src/wconfig.h"
34 #include <stdlib.h>
35 #include <string.h>
36 #include <stdio.h>
37 #include <unistd.h>
39 #include <WINGs/WUtil.h>
41 #include <pwd.h>
44 char *ProgName;
46 char*
47 gethomedir()
49 char *home = getenv("HOME");
50 struct passwd *user;
52 if (home)
53 return home;
55 user = getpwuid(getuid());
56 if (!user) {
57 perror(ProgName);
58 return "/";
60 if (!user->pw_dir) {
61 return "/";
62 } else {
63 return user->pw_dir;
69 void
70 wAbort()
72 exit(0);
75 void help()
77 printf("Syntax:\n%s [OPTIONS] <domain> <option>\n", ProgName);
78 puts("");
79 puts(" --help display this help message");
80 puts(" --version output version information and exit");
81 exit(1);
85 int main(int argc, char **argv)
87 char path[256];
88 WMPropList *key, *value, *dict;
89 char *gsdir;
90 int i;
92 ProgName = argv[0];
94 for (i = 1; i < argc; i++) {
95 if (strcmp("--help", argv[i])==0) {
96 help();
97 exit(0);
98 } else if (strcmp("--version", argv[i])==0) {
99 puts(PROG_VERSION);
100 exit(0);
104 if (argc<3) {
105 printf("%s: invalid argument format\n", ProgName);
106 printf("Try '%s --help' for more information\n", ProgName);
107 exit(1);
110 key = WMCreatePLString(argv[2]);
112 gsdir = getenv("GNUSTEP_USER_ROOT");
113 if (gsdir) {
114 strcpy(path, gsdir);
115 } else {
116 strcpy(path, gethomedir());
117 strcat(path, "/GNUstep");
119 strcat(path, "/");
120 strcat(path, DEFAULTS_DIR);
121 strcat(path, "/");
122 strcat(path, argv[1]);
124 if ((dict = WMReadPropListFromFile(path)) == NULL)
125 return 1; /* bad domain */
126 if ((value = WMGetFromPLDictionary(dict, key)) == NULL)
127 return 2; /* bad key */
129 printf("%s\n", WMGetPropListDescription(value, True));
130 return 0;