r233: Tidied up choices.c quite a lot. Also, replaced the 'guess' file with a
[rox-filer/dt.git] / ROX-Filer / src / main.c
blob630e4ce739f3cef6be5e018f0124a3d738da67f8
1 /*
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * Copyright (C) 2000, Thomas Leonard, <tal197@ecs.soton.ac.uk>.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation; either version 2 of the License, or (at your option)
10 * any later version.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "config.h"
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <sys/types.h>
27 #include <signal.h>
28 #include <sys/wait.h>
29 #include <unistd.h>
30 #include <fcntl.h>
31 #include <pwd.h>
32 #include <grp.h>
34 #ifdef HAVE_GETOPT_LONG
35 # include <getopt.h>
36 #endif
38 #include <gtk/gtk.h>
39 #include "collection.h"
41 #include "main.h"
42 #include "support.h"
43 #include "gui_support.h"
44 #include "filer.h"
45 #include "mount.h"
46 #include "menu.h"
47 #include "dnd.h"
48 #include "options.h"
49 #include "choices.h"
50 #include "type.h"
51 #include "pixmaps.h"
52 #include "dir.h"
53 #include "action.h"
55 int number_of_windows = 0; /* Quit when this reaches 0 again... */
56 int to_error_log = -1; /* Write here to log errors */
58 uid_t euid;
59 gid_t egid;
60 int ngroups; /* Number of supplemental groups */
61 gid_t *supplemental_groups = NULL;
62 char *home_dir;
64 #define VERSION "ROX-Filer 0.1.19\n" \
65 "Copyright (C) 2000 Thomas Leonard.\n" \
66 "ROX-Filer comes with ABSOLUTELY NO WARRANTY,\n" \
67 "to the extent permitted by law.\n" \
68 "You may redistribute copies of ROX-Filer\n" \
69 "under the terms of the GNU General Public License.\n" \
70 "For more information about these matters, " \
71 "see the file named COPYING.\n"
73 #ifdef HAVE_GETOPT_LONG
74 # define USAGE "Try `ROX-Filer/AppRun --help' for more information.\n"
75 # define SHORT_ONLY_WARNING ""
76 #else
77 # define USAGE "Try `ROX-Filer/AppRun -h' for more information.\n"
78 # define SHORT_ONLY_WARNING \
79 "NOTE: Your system does not support long options - \n" \
80 "you must use the short versions instead.\n\n"
81 #endif
83 #define SHORT_OPS "t:b:ohv"
85 #define HELP "Usage: ROX-Filer/AppRun [OPTION]... [DIR]...\n" \
86 "Open filer windows showing each directory listed, or $HOME \n" \
87 "if no directories are given.\n\n" \
88 " -h, --help display this help and exit\n" \
89 " -v, --version display the version information and exit\n" \
90 " -t, --top [DIR] open DIR as a top-edge panel\n" \
91 " -b, --bottom [DIR] open DIR as a bottom-edge panel\n" \
92 " -o, --override override window manager control of panels\n" \
93 "\n" SHORT_ONLY_WARNING \
94 "Report bugs to <tal197@ecs.soton.ac.uk>.\n"
96 #ifdef HAVE_GETOPT_LONG
97 static struct option long_opts[] =
99 {"top", 1, NULL, 't'},
100 {"bottom", 1, NULL, 'b'},
101 {"override", 0, NULL, 'o'},
102 {"help", 0, NULL, 'h'},
103 {"version", 0, NULL, 'v'},
104 {NULL, 0, NULL, 0},
106 #endif
108 /* Take control of panels away from WM? */
109 gboolean override_redirect = FALSE;
111 static void child_died(int signum)
113 int status;
114 int child;
116 /* Find out which children exited and allow them to die */
119 child = waitpid(-1, &status, WNOHANG);
121 if (child == 0 || child == -1)
122 return;
124 /* fprintf(stderr, "Child %d exited\n", child); */
126 } while (1);
129 #define BUFLEN 40
130 void stderr_cb(gpointer data, gint source, GdkInputCondition condition)
132 char buf[BUFLEN];
133 static GtkWidget *log = NULL;
134 static GtkWidget *window = NULL;
135 ssize_t len;
137 if (!window)
139 GtkWidget *hbox, *scrollbar;
141 window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
142 gtk_window_set_title(GTK_WINDOW(window),
143 "ROX-Filer message log");
144 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
145 gtk_window_set_default_size(GTK_WINDOW(window), 600, 300);
146 gtk_signal_connect_object(GTK_OBJECT(window), "delete_event",
147 gtk_widget_hide, GTK_OBJECT(window));
150 hbox = gtk_hbox_new(FALSE, 0);
151 gtk_container_add(GTK_CONTAINER(window), hbox);
152 scrollbar = gtk_vscrollbar_new(NULL);
154 log = gtk_text_new(NULL,
155 gtk_range_get_adjustment(GTK_RANGE(scrollbar)));
156 gtk_box_pack_start(GTK_BOX(hbox), log, TRUE, TRUE, 0);
157 gtk_box_pack_start(GTK_BOX(hbox), scrollbar, FALSE, TRUE, 0);
160 if (!GTK_WIDGET_MAPPED(window))
161 gtk_widget_show_all(window);
163 len = read(source, buf, BUFLEN);
164 if (len > 0)
165 gtk_text_insert(GTK_TEXT(log), NULL, NULL, NULL, buf, len);
168 int main(int argc, char **argv)
170 int stderr_pipe[2];
171 struct sigaction act;
172 GList *panel_dirs = NULL;
173 GList *panel_sides = NULL;
175 home_dir = g_get_home_dir();
177 #ifdef HAVE_LIBVFS
178 mc_vfs_init();
179 #endif
180 gtk_init(&argc, &argv);
182 while (1)
184 int c;
185 #ifdef HAVE_GETOPT_LONG
186 int long_index;
187 c = getopt_long(argc, argv, SHORT_OPS,
188 long_opts, &long_index);
189 #else
190 c = getopt(argc, argv, SHORT_OPS);
191 #endif
193 if (c == EOF)
194 break; /* No more options */
196 switch (c)
198 case 'o':
199 override_redirect = TRUE;
200 break;
201 case 'v':
202 printf(VERSION);
203 return EXIT_SUCCESS;
204 case 'h':
205 printf(HELP);
206 return EXIT_SUCCESS;
207 case 't':
208 case 'b':
209 panel_sides = g_list_prepend(panel_sides,
210 (gpointer) c);
211 panel_dirs = g_list_prepend(panel_dirs,
212 *optarg == '=' ? optarg + 1
213 : optarg);
214 break;
215 default:
216 printf(USAGE);
217 return EXIT_FAILURE;
221 choices_init();
223 gui_support_init();
224 pixmaps_init();
225 dir_init();
226 menu_init();
227 dnd_init();
228 filer_init();
229 mount_init();
230 options_init();
231 type_init();
232 action_init();
234 options_load();
236 /* Let child processes die */
237 act.sa_handler = child_died;
238 sigemptyset(&act.sa_mask);
239 act.sa_flags = SA_NOCLDSTOP;
240 sigaction(SIGCHLD, &act, NULL);
242 /* Ignore SIGPIPE - check for EPIPE errors instead */
243 act.sa_handler = SIG_IGN;
244 sigemptyset(&act.sa_mask);
245 act.sa_flags = 0;
246 sigaction(SIGPIPE, &act, NULL);
248 euid = geteuid();
249 egid = getegid();
250 ngroups = getgroups(0, NULL);
251 if (ngroups < 0)
252 ngroups = 0;
253 else if (ngroups > 0)
255 supplemental_groups = g_malloc(sizeof(gid_t) * ngroups);
256 getgroups(ngroups, supplemental_groups);
259 if (euid == 0)
261 if (get_choice("!!!DANGER!!!",
262 "Running ROX-Filer as root is VERY dangerous. If I "
263 "had a warranty (I don't) then doing this would "
264 "void it", 2,
265 "Don't click here", "Quit") != 0)
266 exit(EXIT_SUCCESS);
269 if (optind == argc && !panel_dirs)
270 filer_opendir(home_dir, PANEL_NO);
271 else
273 int i = optind;
274 GList *dir = panel_dirs;
275 GList *side = panel_sides;
277 while (dir)
279 int c = (int) side->data;
281 filer_opendir((char *) dir->data,
282 c == 't' ? PANEL_TOP : PANEL_BOTTOM);
283 dir = dir->next;
284 side = side->next;
287 g_list_free(dir);
288 g_list_free(side);
290 while (i < argc)
291 filer_opendir(argv[i++], PANEL_NO);
294 pipe(stderr_pipe);
295 close_on_exec(stderr_pipe[0], TRUE);
296 close_on_exec(stderr_pipe[1], TRUE);
297 gdk_input_add(stderr_pipe[0], GDK_INPUT_READ, stderr_cb, NULL);
298 to_error_log = stderr_pipe[1];
300 gtk_main();
302 return EXIT_SUCCESS;