91f8443ca7b525688c06238ee53534302430e861
[geeqie.git] / src / main.c
1 /*
2  * Copyright (C) 2006 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include <gdk/gdkkeysyms.h> /* for keyboard values */
23
24 #include <signal.h>
25 #include <sys/mman.h>
26
27 #include <math.h>
28 #ifdef G_OS_UNIX
29 #include <pwd.h>
30 #endif
31 #include <locale.h>
32
33 #include "main.h"
34
35 #include "cache.h"
36 #include "collect.h"
37 #include "collect-io.h"
38 #include "filedata.h"
39 #include "filefilter.h"
40 #include "history_list.h"
41 #include "image.h"
42 #include "image-overlay.h"
43 #include "img-view.h"
44 #include "layout.h"
45 #include "layout_image.h"
46 #include "layout_util.h"
47 #include "misc.h"
48 #include "options.h"
49 #include "rcfile.h"
50 #include "remote.h"
51 #include "secure_save.h"
52 #include "similar.h"
53 #include "ui_fileops.h"
54 #include "ui_utildlg.h"
55 #include "cache_maint.h"
56 #include "thumb.h"
57 #include "metadata.h"
58 #include "editors.h"
59 #include "exif.h"
60 #include "histogram.h"
61 #include "pixbuf_util.h"
62 #include "glua.h"
63 #include "whereami.h"
64
65 #ifdef HAVE_CLUTTER
66 #include <clutter-gtk/clutter-gtk.h>
67 #endif
68
69 #ifdef HAVE_GTHREAD
70 /** @FIXME see below */
71 #include <X11/Xlib.h>
72 #endif
73
74 /**
75  * @page diagrams Diagrams
76  * @section options_overview Options Overview
77  * 
78  * #_ConfOptions  #_LayoutOptions
79  * 
80  * @startuml
81  * 
82  * object options.h
83  * object typedefs.h
84  * 
85  * options.h : ConfOptions
86  * options.h : \n
87  * options.h : Options applicable to **all** Layout Windows
88  * options.h : These are in the <global> section of geeqierc.xml
89  * options.h : Available to all modules via the global variable **options**
90  * typedefs.h : LayoutOptions
91  * typedefs.h : \n
92  * typedefs.h : Options applicable to **each** Layout Window
93  * typedefs.h : These are in the <layout> section of geeqierc.xml
94  * typedefs.h : There is one <layout> section for each Layout Window displayed
95  * typedefs.h : Available via **<layout_window>->options**
96  * 
97  * @enduml
98  */
99
100 /**
101  * @page diagrams Diagrams
102  * @section options_diagrams_main Options - New Window From Main
103  * #main  
104  * #init_options  
105  * #layout_new_from_default  
106  * #load_config_from_file  
107  * #load_options  
108  * #setup_default_options
109  * 
110  * @startuml
111  * group main.c
112  * start
113  * group options.c
114  * : **init_options()**
115  * 
116  * Set **options** = ConfOptions from hard-coded init values;
117  * end group
118  * 
119  * group options.c
120  * : **setup_default_options()**
121  * 
122  * set hard-coded ConfOptions:
123  * 
124  * bookmarks:
125  * * dot dir
126  * * Home
127  * * Desktop
128  * * Collections
129  * safe delete path
130  * OSD template string
131  * sidecar extensions
132  * shell path and options
133  * marks tooltips
134  * help search engine;
135  * end group
136  * 
137  * if (first entry
138  * or
139  * --new-instance) then (yes)
140  * group options.c
141  * : **load_options()**
142  * ;
143  * 
144  * split
145  * : GQ_SYSTEM_WIDE_DIR
146  * /geeqierc.xml;
147  * split again
148  * : XDG_CONFIG_HOME
149  * /geeqierc.xml;
150  * split again
151  * : HOME
152  * /.geeqie/geeqierc.xml;
153  * end split
154  * 
155  * group rcfile.c
156  * : **load_config_from_file()**
157  * 
158  * set  **options** from file
159  * and all <layout window>->options  in file;
160  * end group
161  * 
162  * end group
163  * 
164  * if (broken config. file
165  * or no config file
166  * or no layout section loaded
167  * (i.e. session not saved)) then (yes)
168  * group layout.c
169  * : **layout_new_from_default()**;
170  * if (default.xml exists) then (yes)
171  * : Load user-saved
172  *  layout_window default options
173  *  from default.xml file;
174  * else (no)
175  * : Load hard-coded
176  *  layout_window default options;
177  * endif
178  * end group
179  * endif
180  * 
181  * else (no)
182  * : Send --new-window request to remote
183  *  No return to this point
184  *  This instance terminates;
185  * stop
186  * endif
187  * 
188  * : Enter gtk main loop;
189  * 
190  * end group
191  * @enduml
192  */
193
194 /**
195  * @page diagrams Diagrams
196  * @section options_diagrams_remote Options - New Window From Remote
197  * #layout_new_from_default  
198  * @startuml
199  * 
200  * group remote.c
201  * start
202  * group layout.c
203  * : **layout_new_from_default()**;
204  * if (default.xml exists) then (yes)
205  * : Load user-saved
206  *  layout_window default options
207  *  from default.xml file;
208  * else (no)
209  * : Load hard-coded
210  *  layout_window default options;
211  * endif
212  * end group
213  * : set path from PWD;
214  * @enduml
215  */
216
217 /**
218  * @page diagrams Diagrams
219  * @section options_diagrams_menu Options - New Window From Menu
220  * #layout_menu_new_window_cb  
221  * #layout_menu_window_from_current_cb  
222  * #layout_new_from_default  
223  * @startuml
224  * 
225  * group layout_util.c
226  * start
227  * 
228  * split
229  * : default;
230  * group layout.c
231  * : **layout_new_from_default()**;
232  * if (default.xml exists) then (yes)
233  * : Load user-saved
234  *  layout_window default options
235  *  from default.xml file;
236  * else (no)
237  * : Load hard-coded
238  *  layout_window default options;
239  * endif
240  * end group
241  * 
242  * split again
243  * : from current
244  * 
245  * **layout_menu_window_from_current_cb()**
246  * copy layout_window options
247  * from current window;
248  * 
249  * split again
250  * : named
251  * 
252  * **layout_menu_new_window_cb()**
253  * load layout_window options
254  * from saved xml file list;
255  * end split
256  * 
257  * end group
258  * @enduml
259  */
260   /**
261   * @file
262   * @ref options_overview Options Overview
263   */
264
265
266 gboolean thumb_format_changed = FALSE;
267 static RemoteConnection *remote_connection = NULL;
268
269 gchar *gq_prefix;
270 gchar *gq_localedir;
271 gchar *gq_helpdir;
272 gchar *gq_htmldir;
273 gchar *gq_app_dir;
274 gchar *gq_bin_dir;
275 gchar *gq_executable_path;
276 gchar *desktop_file_template;
277 gchar *instance_identifier;
278
279 /*
280  *-----------------------------------------------------------------------------
281  * keyboard functions
282  *-----------------------------------------------------------------------------
283  */
284
285 void keyboard_scroll_calc(gint *x, gint *y, GdkEventKey *event)
286 {
287         static gint delta = 0;
288         static guint32 time_old = 0;
289         static guint keyval_old = 0;
290
291         if (event->state & GDK_CONTROL_MASK)
292                 {
293                 if (*x < 0) *x = G_MININT / 2;
294                 if (*x > 0) *x = G_MAXINT / 2;
295                 if (*y < 0) *y = G_MININT / 2;
296                 if (*y > 0) *y = G_MAXINT / 2;
297
298                 return;
299                 }
300
301         if (options->progressive_key_scrolling)
302                 {
303                 guint32 time_diff;
304
305                 time_diff = event->time - time_old;
306
307                 /* key pressed within 125ms ? (1/8 second) */
308                 if (time_diff > 125 || event->keyval != keyval_old) delta = 0;
309
310                 time_old = event->time;
311                 keyval_old = event->keyval;
312
313                 delta += 2;
314                 }
315         else
316                 {
317                 delta = 8;
318                 }
319
320         *x = *x * delta * options->keyboard_scroll_step;
321         *y = *y * delta * options->keyboard_scroll_step;
322 }
323
324
325
326 /*
327  *-----------------------------------------------------------------------------
328  * command line parser (private) hehe, who needs popt anyway?
329  *-----------------------------------------------------------------------------
330  */
331
332 static void parse_command_line_add_file(const gchar *file_path, gchar **path, gchar **file,
333                                         GList **list, GList **collection_list)
334 {
335         gchar *path_parsed;
336
337         path_parsed = g_strdup(file_path);
338         parse_out_relatives(path_parsed);
339
340         if (file_extension_match(path_parsed, GQ_COLLECTION_EXT))
341                 {
342                 *collection_list = g_list_append(*collection_list, path_parsed);
343                 }
344         else
345                 {
346                 if (!*path) *path = remove_level_from_path(path_parsed);
347                 if (!*file) *file = g_strdup(path_parsed);
348                 *list = g_list_prepend(*list, path_parsed);
349                 }
350 }
351
352 static void parse_command_line_add_dir(const gchar *dir, gchar **path, gchar **file,
353                                        GList **list)
354 {
355 #if 0
356         /* This is broken because file filter is not initialized yet.
357         */
358         GList *files;
359         gchar *path_parsed;
360         FileData *dir_fd;
361
362         path_parsed = g_strdup(dir);
363         parse_out_relatives(path_parsed);
364         dir_fd = file_data_new_dir(path_parsed);
365
366
367         if (filelist_read(dir_fd, &files, NULL))
368                 {
369                 GList *work;
370
371                 files = filelist_filter(files, FALSE);
372                 files = filelist_sort_path(files);
373
374                 work = files;
375                 while (work)
376                         {
377                         FileData *fd = work->data;
378                         if (!*path) *path = remove_level_from_path(fd->path);
379                         if (!*file) *file = g_strdup(fd->path);
380                         *list = g_list_prepend(*list, fd);
381
382                         work = work->next;
383                         }
384
385                 g_list_free(files);
386                 }
387
388         g_free(path_parsed);
389         file_data_unref(dir_fd);
390 #else
391         DEBUG_1("multiple directories specified, ignoring: %s", dir);
392 #endif
393 }
394
395 static void parse_command_line_process_dir(const gchar *dir, gchar **path, gchar **file,
396                                            GList **list, gchar **first_dir)
397 {
398
399         if (!*list && !*first_dir)
400                 {
401                 *first_dir = g_strdup(dir);
402                 }
403         else
404                 {
405                 if (*first_dir)
406                         {
407                         parse_command_line_add_dir(*first_dir, path, file, list);
408                         g_free(*first_dir);
409                         *first_dir = NULL;
410                         }
411                 parse_command_line_add_dir(dir, path, file, list);
412                 }
413 }
414
415 static void parse_command_line_process_file(const gchar *file_path, gchar **path, gchar **file,
416                                             GList **list, GList **collection_list, gchar **first_dir)
417 {
418
419         if (*first_dir)
420                 {
421                 parse_command_line_add_dir(*first_dir, path, file, list);
422                 g_free(*first_dir);
423                 *first_dir = NULL;
424                 }
425         parse_command_line_add_file(file_path, path, file, list, collection_list);
426 }
427
428 static void parse_command_line(gint argc, gchar *argv[])
429 {
430         GList *list = NULL;
431         GList *remote_list = NULL;
432         GList *remote_errors = NULL;
433         gboolean remote_do = FALSE;
434         gchar *first_dir = NULL;
435         gchar *app_lock;
436         gchar *pwd;
437         gchar *current_dir;
438         gchar *geometry = NULL;
439         GtkWidget *dialog_warning;
440         GString *command_line_errors = g_string_new(NULL);
441
442         command_line = g_new0(CommandLine, 1);
443
444         command_line->argc = argc;
445         command_line->argv = argv;
446         command_line->regexp = NULL;
447
448         if (argc > 1)
449                 {
450                 gint i;
451                 gchar *base_dir = get_current_dir();
452                 i = 1;
453                 while (i < argc)
454                         {
455                         gchar *cmd_line = path_to_utf8(argv[i]);
456                         gchar *cmd_all = g_build_filename(base_dir, cmd_line, NULL);
457
458                         if (cmd_line[0] == G_DIR_SEPARATOR && isdir(cmd_line))
459                                 {
460                                 parse_command_line_process_dir(cmd_line, &command_line->path, &command_line->file, &list, &first_dir);
461                                 }
462                         else if (isdir(cmd_all))
463                                 {
464                                 parse_command_line_process_dir(cmd_all, &command_line->path, &command_line->file, &list, &first_dir);
465                                 }
466                         else if (cmd_line[0] == G_DIR_SEPARATOR && isfile(cmd_line))
467                                 {
468                                 parse_command_line_process_file(cmd_line, &command_line->path, &command_line->file,
469                                                                 &list, &command_line->collection_list, &first_dir);
470                                 }
471                         else if (isfile(cmd_all))
472                                 {
473                                 parse_command_line_process_file(cmd_all, &command_line->path, &command_line->file,
474                                                                 &list, &command_line->collection_list, &first_dir);
475                                 }
476                         else if (download_web_file(cmd_line, FALSE, NULL))
477                                 {
478                                 }
479                         else if (is_collection(cmd_line))
480                                 {
481                                 gchar *path = NULL;
482
483                                 path = collection_path(cmd_line);
484                                 parse_command_line_process_file(path, &command_line->path, &command_line->file,
485                                                                 &list, &command_line->collection_list, &first_dir);
486                                 g_free(path);
487                                 }
488                         else if (strncmp(cmd_line, "--debug", 7) == 0 && (cmd_line[7] == '\0' || cmd_line[7] == '='))
489                                 {
490                                 /* do nothing but do not produce warnings */
491                                 }
492                         else if (strncmp(cmd_line, "--disable-clutter", 17) == 0 && (cmd_line[17] == '\0'))
493                                 {
494                                 /* do nothing but do not produce warnings */
495                                 }
496                         else if (strcmp(cmd_line, "+t") == 0 ||
497                                  strcmp(cmd_line, "--with-tools") == 0)
498                                 {
499                                 command_line->tools_show = TRUE;
500
501                                 remote_list = g_list_append(remote_list, "+t");
502                                 }
503                         else if (strcmp(cmd_line, "-t") == 0 ||
504                                  strcmp(cmd_line, "--without-tools") == 0)
505                                 {
506                                 command_line->tools_hide = TRUE;
507
508                                 remote_list = g_list_append(remote_list, "-t");
509                                 }
510                         else if (strcmp(cmd_line, "-f") == 0 ||
511                                  strcmp(cmd_line, "--fullscreen") == 0)
512                                 {
513                                 command_line->startup_full_screen = TRUE;
514                                 }
515                         else if (strcmp(cmd_line, "-s") == 0 ||
516                                  strcmp(cmd_line, "--slideshow") == 0)
517                                 {
518                                 command_line->startup_in_slideshow = TRUE;
519                                 }
520                         else if (strcmp(cmd_line, "-l") == 0 ||
521                                  strcmp(cmd_line, "--list") == 0)
522                                 {
523                                 command_line->startup_command_line_collection = TRUE;
524                                 }
525                         else if (strncmp(cmd_line, "--geometry=", 11) == 0)
526                                 {
527                                 if (!command_line->geometry) command_line->geometry = g_strdup(cmd_line + 11);
528                                 }
529                         else if (strcmp(cmd_line, "-r") == 0 ||
530                                  strcmp(cmd_line, "--remote") == 0)
531                                 {
532                                 if (!remote_do)
533                                         {
534                                         remote_do = TRUE;
535                                         remote_list = remote_build_list(remote_list, argc - i, &argv[i], &remote_errors);
536                                         }
537                                 }
538                         else if ((strcmp(cmd_line, "+w") == 0) ||
539                                                 strcmp(cmd_line, "--show-log-window") == 0)
540                                 {
541                                 command_line->log_window_show = TRUE;
542                                 }
543                         else if (strncmp(cmd_line, "-o:", 3) == 0)
544                                 {
545                                 command_line->log_file = g_strdup(cmd_line + 3);
546                                 }
547                         else if (strncmp(cmd_line, "--log-file:", 11) == 0)
548                                 {
549                                 command_line->log_file = g_strdup(cmd_line + 11);
550                                 }
551                         else if (strncmp(cmd_line, "-g:", 3) == 0)
552                                 {
553                                 set_regexp(g_strdup(cmd_line+3));
554                                 }
555                         else if (strncmp(cmd_line, "-grep:", 6) == 0)
556                                 {
557                                 set_regexp(g_strdup(cmd_line+3));
558                                 }
559                         else if (strncmp(cmd_line, "-n", 2) == 0)
560                                 {
561                                 command_line->new_instance = TRUE;
562                                 }
563                         else if (strncmp(cmd_line, "--new-instance", 14) == 0)
564                                 {
565                                 command_line->new_instance = TRUE;
566                                 }
567                         else if (strcmp(cmd_line, "-rh") == 0 ||
568                                  strcmp(cmd_line, "--remote-help") == 0)
569                                 {
570                                 remote_help();
571                                 exit(0);
572                                 }
573                         else if (strcmp(cmd_line, "--blank") == 0)
574                                 {
575                                 command_line->startup_blank = TRUE;
576                                 }
577                         else if (strcmp(cmd_line, "-v") == 0 ||
578                                  strcmp(cmd_line, "--version") == 0)
579                                 {
580                                 printf_term(FALSE, "%s %s GTK%d\n", GQ_APPNAME, VERSION, gtk_major_version);
581                                 exit(0);
582                                 }
583                         else if (strcmp(cmd_line, "--alternate") == 0)
584                                 {
585                                 /* enable faster experimental algorithm */
586                                 log_printf("Alternate similarity algorithm enabled\n");
587                                 image_sim_alternate_set(TRUE);
588                                 }
589                         else if (strcmp(cmd_line, "-h") == 0 ||
590                                  strcmp(cmd_line, "--help") == 0)
591                                 {
592                                 printf_term(FALSE, "%s %s\n", GQ_APPNAME, VERSION);
593                                 printf_term(FALSE, _("Usage: %s [options] [path]\n\n"), GQ_APPNAME_LC);
594                                 print_term(FALSE, _("valid options are:\n"));
595                                 print_term(FALSE, _("  +t, --with-tools                 force show of tools\n"));
596                                 print_term(FALSE, _("  -t, --without-tools              force hide of tools\n"));
597                                 print_term(FALSE, _("  -f, --fullscreen                 start in full screen mode\n"));
598                                 print_term(FALSE, _("  -s, --slideshow                  start in slideshow mode\n"));
599                                 print_term(FALSE, _("  -l, --list [files] [collections] open collection window for command line\n"));
600                                 print_term(FALSE, _("      --blank                      start with blank file list\n"));
601                                 print_term(FALSE, _("      --geometry=XxY+XOFF+YOFF     set main window location\n"));
602                                 print_term(FALSE, _("  -n, --new-instance               open a new instance of Geeqie\n"));
603                                 print_term(FALSE, _("  -r, --remote                     send following commands to open window\n"));
604                                 print_term(FALSE, _("  -rh,--remote-help                print remote command list\n"));
605 #ifdef DEBUG
606                                 print_term(FALSE, _("      --debug[=level]              turn on debug output\n"));
607                                 print_term(FALSE, _("  -g:<regexp>, --grep:<regexp>     filter debug output\n"));
608 #endif
609                                 print_term(FALSE, _("  +w, --show-log-window            show log window\n"));
610                                 print_term(FALSE, _("  -o:<file>, --log-file:<file>     save log data to file\n"));
611                                 print_term(FALSE, _("  -v, --version                    print version info\n"));
612                                 print_term(FALSE, _("  -h, --help                       show this message\n"));
613                                 print_term(FALSE, _("      --disable-clutter            disable use of Clutter library (i.e. GPU accel.)\n"));
614                                 print_term(FALSE, _("      --cache-maintenance <path>   run cache maintenance in non-GUI mode\n\n"));
615
616 #if 0
617                                 /* these options are not officially supported!
618                                  * only for testing new features, no need to translate them */
619                                 print_term(FALSE, "  --alternate                use alternate similarity algorithm\n");
620 #endif
621
622
623                                 exit(0);
624                                 }
625                         else if (!remote_do)
626                                 {
627                                 command_line_errors = g_string_append(command_line_errors, cmd_line);
628                                 command_line_errors = g_string_append(command_line_errors, "\n");
629                                 }
630
631                         g_free(cmd_all);
632                         g_free(cmd_line);
633                         i++;
634                         }
635
636                 if (command_line_errors->len > 0)
637                         {
638                         dialog_warning = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", "Invalid parameter(s):");
639                         gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog_warning), "%s", command_line_errors->str);
640                         gtk_window_set_title(GTK_WINDOW(dialog_warning), GQ_APPNAME);
641                         gtk_window_set_keep_above(GTK_WINDOW(dialog_warning), TRUE);
642                         gtk_dialog_run(GTK_DIALOG(dialog_warning));
643                         gtk_widget_destroy(dialog_warning);
644                         g_string_free(command_line_errors, TRUE);
645
646                         exit(EXIT_FAILURE);
647                         }
648
649                 g_free(base_dir);
650                 parse_out_relatives(command_line->path);
651                 parse_out_relatives(command_line->file);
652                 }
653
654         list = g_list_reverse(list);
655
656         if (!command_line->path && first_dir)
657                 {
658                 command_line->path = first_dir;
659                 first_dir = NULL;
660
661                 parse_out_relatives(command_line->path);
662                 }
663         g_free(first_dir);
664
665         if (!command_line->new_instance)
666                 {
667                 /* If Geeqie is already running, prevent a second instance
668                  * from being started. Open a new window instead.
669                  */
670                 app_lock = g_build_filename(get_rc_dir(), ".command", NULL);
671                 if (remote_server_exists(app_lock) && !remote_do)
672                         {
673                         remote_do = TRUE;
674                         if (command_line->geometry)
675                                 {
676                                 geometry = g_strdup_printf("--geometry=%s", command_line->geometry);
677                                 remote_list = g_list_prepend(remote_list, geometry);
678                                 }
679                         remote_list = g_list_prepend(remote_list, "--new-window");
680                         }
681                 g_free(app_lock);
682                 }
683
684         if (remote_do)
685                 {
686                 if (remote_errors)
687                         {
688                         GList *work = remote_errors;
689
690                         while (work)
691                                 {
692                                 gchar *opt = work->data;
693
694                                 command_line_errors = g_string_append(command_line_errors, opt);
695                                 command_line_errors = g_string_append(command_line_errors, "\n");
696                                 work = work->next;
697                                 }
698
699                         dialog_warning = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", "Invalid parameter(s):");
700                         gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog_warning), "%s", command_line_errors->str);
701                         gtk_window_set_title(GTK_WINDOW(dialog_warning), GQ_APPNAME);
702                         gtk_window_set_keep_above(GTK_WINDOW(dialog_warning), TRUE);
703                         gtk_dialog_run(GTK_DIALOG(dialog_warning));
704                         gtk_widget_destroy(dialog_warning);
705                         g_string_free(command_line_errors, TRUE);
706
707                         exit(EXIT_FAILURE);
708                         }
709
710                 /* prepend the current dir the remote command was made from,
711                  * for use by any remote command that needs it
712                  */
713                 current_dir = g_get_current_dir();
714                 pwd = g_strconcat("--PWD:", current_dir, NULL);
715                 remote_list = g_list_prepend(remote_list, pwd);
716
717                 remote_control(argv[0], remote_list, command_line->path, list, command_line->collection_list);
718                 /* There is no return to this point
719                  */
720                 g_free(pwd);
721                 g_free(current_dir);
722                 }
723         g_free(geometry);
724         g_list_free(remote_list);
725
726         if (list && list->next)
727                 {
728                 command_line->cmd_list = list;
729                 }
730         else
731                 {
732                 string_list_free(list);
733                 command_line->cmd_list = NULL;
734                 }
735
736         if (command_line->startup_blank)
737                 {
738                 g_free(command_line->path);
739                 command_line->path = NULL;
740                 g_free(command_line->file);
741                 command_line->file = NULL;
742                 filelist_free(command_line->cmd_list);
743                 command_line->cmd_list = NULL;
744                 string_list_free(command_line->collection_list);
745                 command_line->collection_list = NULL;
746                 }
747 }
748
749 static void parse_command_line_for_debug_option(gint argc, gchar *argv[])
750 {
751 #ifdef DEBUG
752         const gchar *debug_option = "--debug";
753         gint len = strlen(debug_option);
754
755         if (argc > 1)
756                 {
757                 gint i;
758
759                 for (i = 1; i < argc; i++)
760                         {
761                         const gchar *cmd_line = argv[i];
762                         if (strncmp(cmd_line, debug_option, len) == 0)
763                                 {
764                                 gint cmd_line_len = strlen(cmd_line);
765
766                                 /* we now increment the debug state for verbosity */
767                                 if (cmd_line_len == len)
768                                         debug_level_add(1);
769                                 else if (cmd_line[len] == '=' && g_ascii_isdigit(cmd_line[len+1]))
770                                         {
771                                         gint n = atoi(cmd_line + len + 1);
772                                         if (n < 0) n = 1;
773                                         debug_level_add(n);
774                                         }
775                                 }
776                         }
777                 }
778
779         DEBUG_1("debugging output enabled (level %d)", get_debug_level());
780 #endif
781 }
782
783 #ifdef HAVE_CLUTTER
784 static gboolean parse_command_line_for_clutter_option(gint argc, gchar *argv[])
785 {
786         const gchar *clutter_option = "--disable-clutter";
787         gint len = strlen(clutter_option);
788         gboolean ret = FALSE;
789
790         if (argc > 1)
791                 {
792                 gint i;
793
794                 for (i = 1; i < argc; i++)
795                         {
796                         const gchar *cmd_line = argv[i];
797                         if (strncmp(cmd_line, clutter_option, len) == 0)
798                                 {
799                                 ret = TRUE;
800                                 }
801                         }
802                 }
803
804         return ret;
805 }
806 #endif
807
808 static gboolean parse_command_line_for_cache_maintenance_option(gint argc, gchar *argv[])
809 {
810         const gchar *cache_maintenance_option = "--cache-maintenance";
811         gint len = strlen(cache_maintenance_option);
812         gboolean ret = FALSE;
813
814         if (argc >= 2)
815                 {
816                 const gchar *cmd_line = argv[1];
817                 if (strncmp(cmd_line, cache_maintenance_option, len) == 0)
818                         {
819                         ret = TRUE;
820                         }
821                 }
822
823         return ret;
824 }
825
826 static void process_command_line_for_cache_maintenance_option(gint argc, gchar *argv[])
827 {
828         gchar *rc_path;
829         gchar *folder_path = NULL;
830         gsize size;
831         gsize i = 0;
832         gchar *buf_config_file;
833         gint diff_count;
834
835         if (argc >= 3)
836                 {
837                 folder_path = expand_tilde(argv[2]);
838
839                 if (isdir(folder_path))
840                         {
841                         rc_path = g_build_filename(get_rc_dir(), RC_FILE_NAME, NULL);
842
843                         if (isfile(rc_path))
844                                 {
845                                 if (g_file_get_contents(rc_path, &buf_config_file, &size, NULL))
846                                         {
847                                         while (i < size)
848                                                 {
849                                                 diff_count = strncmp("</global>", &buf_config_file[i], 9);
850                                                 if (diff_count == 0)
851                                                         {
852                                                         break;
853                                                         }
854                                                 i++;
855                                                 }
856                                         /* Load only the <global> section */
857                                         load_config_from_buf(buf_config_file, i + 9, FALSE);
858
859                                         if (options->thumbnails.enable_caching)
860                                                 {
861                                                 cache_maintenance(folder_path);
862                                                 }
863                                         else
864                                                 {
865                                                 print_term(TRUE, "Caching not enabled\n");
866                                                 exit(EXIT_FAILURE);
867                                                 }
868                                         g_free(buf_config_file);
869                                         }
870                                 else
871                                         {
872                                         print_term(TRUE, g_strconcat(_("Cannot load "), rc_path, "\n", NULL));
873                                         exit(EXIT_FAILURE);
874                                         }
875                                 }
876                         else
877                                 {
878                                 print_term(TRUE, g_strconcat(_("Configuration file path "), rc_path, _(" is not a file\n"), NULL));
879                                 exit(EXIT_FAILURE);
880                                 }
881                         g_free(rc_path);
882                         }
883                 else
884                         {
885                         print_term(TRUE, g_strconcat(argv[2], _(" is not a folder\n"), NULL));
886                         exit(EXIT_FAILURE);
887                         }
888                 g_free(folder_path);
889                 }
890         else
891                 {
892                 print_term(TRUE, _("No path parameter given\n"));
893                 exit(EXIT_FAILURE);
894                 }
895 }
896
897 /*
898  *-----------------------------------------------------------------------------
899  * startup, init, and exit
900  *-----------------------------------------------------------------------------
901  */
902
903 #define RC_HISTORY_NAME "history"
904 #define RC_MARKS_NAME "marks"
905
906 static void setup_env_path(void)
907 {
908         const gchar *old_path = g_getenv("PATH");
909         gchar *path = g_strconcat(gq_bin_dir, ":", old_path, NULL);
910         g_setenv("PATH", path, TRUE);
911         g_free(path);
912 }
913
914 static void keys_load(void)
915 {
916         gchar *path;
917
918         path = g_build_filename(get_rc_dir(), RC_HISTORY_NAME, NULL);
919         history_list_load(path);
920         g_free(path);
921 }
922
923 static void keys_save(void)
924 {
925         gchar *path;
926
927         path = g_build_filename(get_rc_dir(), RC_HISTORY_NAME, NULL);
928         history_list_save(path);
929         g_free(path);
930 }
931
932 static void marks_load(void)
933 {
934         gchar *path;
935
936         path = g_build_filename(get_rc_dir(), RC_MARKS_NAME, NULL);
937         marks_list_load(path);
938         g_free(path);
939 }
940
941 static void marks_save(gboolean save)
942 {
943         gchar *path;
944
945         path = g_build_filename(get_rc_dir(), RC_MARKS_NAME, NULL);
946         marks_list_save(path, save);
947         g_free(path);
948 }
949
950 static void mkdir_if_not_exists(const gchar *path)
951 {
952         if (isdir(path)) return;
953
954         log_printf(_("Creating %s dir:%s\n"), GQ_APPNAME, path);
955
956         if (!recursive_mkdir_if_not_exists(path, 0755))
957                 {
958                 log_printf(_("Could not create dir:%s\n"), path);
959                 }
960 }
961
962
963 /* We add to duplicate and modify  gtk_accel_map_print() and gtk_accel_map_save()
964  * to improve the reliability in special cases (especially when disk is full)
965  * These functions are now using secure saving stuff.
966  */
967 static void gq_accel_map_print(
968                     gpointer    data,
969                     const gchar *accel_path,
970                     guint       accel_key,
971                     GdkModifierType accel_mods,
972                     gboolean    changed)
973 {
974         GString *gstring = g_string_new(changed ? NULL : "; ");
975         SecureSaveInfo *ssi = data;
976         gchar *tmp, *name;
977
978         g_string_append(gstring, "(gtk_accel_path \"");
979
980         tmp = g_strescape(accel_path, NULL);
981         g_string_append(gstring, tmp);
982         g_free(tmp);
983
984         g_string_append(gstring, "\" \"");
985
986         name = gtk_accelerator_name(accel_key, accel_mods);
987         tmp = g_strescape(name, NULL);
988         g_free(name);
989         g_string_append(gstring, tmp);
990         g_free(tmp);
991
992         g_string_append(gstring, "\")\n");
993
994         secure_fwrite(gstring->str, sizeof(*gstring->str), gstring->len, ssi);
995
996         g_string_free(gstring, TRUE);
997 }
998
999 static gboolean gq_accel_map_save(const gchar *path)
1000 {
1001         gchar *pathl;
1002         SecureSaveInfo *ssi;
1003         GString *gstring;
1004
1005         pathl = path_from_utf8(path);
1006         ssi = secure_open(pathl);
1007         g_free(pathl);
1008         if (!ssi)
1009                 {
1010                 log_printf(_("error saving file: %s\n"), path);
1011                 return FALSE;
1012                 }
1013
1014         gstring = g_string_new("; ");
1015         if (g_get_prgname())
1016                 g_string_append(gstring, g_get_prgname());
1017         g_string_append(gstring, " GtkAccelMap rc-file         -*- scheme -*-\n");
1018         g_string_append(gstring, "; this file is an automated accelerator map dump\n");
1019         g_string_append(gstring, ";\n");
1020
1021         secure_fwrite(gstring->str, sizeof(*gstring->str), gstring->len, ssi);
1022
1023         g_string_free(gstring, TRUE);
1024
1025         gtk_accel_map_foreach((gpointer) ssi, gq_accel_map_print);
1026
1027         if (secure_close(ssi))
1028                 {
1029                 log_printf(_("error saving file: %s\nerror: %s\n"), path,
1030                            secsave_strerror(secsave_errno));
1031                 return FALSE;
1032                 }
1033
1034         return TRUE;
1035 }
1036
1037 static gchar *accep_map_filename(void)
1038 {
1039         return g_build_filename(get_rc_dir(), "accels", NULL);
1040 }
1041
1042 static void accel_map_save(void)
1043 {
1044         gchar *path;
1045
1046         path = accep_map_filename();
1047         gq_accel_map_save(path);
1048         g_free(path);
1049 }
1050
1051 static void accel_map_load(void)
1052 {
1053         gchar *path;
1054         gchar *pathl;
1055
1056         path = accep_map_filename();
1057         pathl = path_from_utf8(path);
1058         gtk_accel_map_load(pathl);
1059         g_free(pathl);
1060         g_free(path);
1061 }
1062
1063 static void gtkrc_load(void)
1064 {
1065         gchar *path;
1066         gchar *pathl;
1067
1068         /* If a gtkrc file exists in the rc directory, add it to the
1069          * list of files to be parsed at the end of gtk_init() */
1070         path = g_build_filename(get_rc_dir(), "gtkrc", NULL);
1071         pathl = path_from_utf8(path);
1072         if (access(pathl, R_OK) == 0)
1073                 gtk_rc_add_default_file(pathl);
1074         g_free(pathl);
1075         g_free(path);
1076 }
1077
1078 static void exit_program_final(void)
1079 {
1080         LayoutWindow *lw = NULL;
1081         GList *list;
1082         LayoutWindow *tmp_lw;
1083         gchar *archive_dir;
1084         GFile *archive_file;
1085
1086          /* make sure that external editors are loaded, we would save incomplete configuration otherwise */
1087         layout_editors_reload_finish();
1088
1089         remote_close(remote_connection);
1090
1091         collect_manager_flush();
1092
1093         /* Save the named windows */
1094         if (layout_window_list && layout_window_list->next)
1095                 {
1096                 list = layout_window_list;
1097                 while (list)
1098                         {
1099                         tmp_lw = list->data;
1100                         if (!g_str_has_prefix(tmp_lw->options.id, "lw"))
1101                                 {
1102                                 save_layout(list->data);
1103                                 }
1104                         list = list->next;
1105                         }
1106                 }
1107
1108         save_options(options);
1109         keys_save();
1110         accel_map_save();
1111
1112         if (layout_valid(&lw))
1113                 {
1114                 layout_free(lw);
1115                 }
1116
1117         /* Delete any files/folders in /tmp that have been created by the open archive function */
1118         archive_dir = g_build_filename(g_get_tmp_dir(), GQ_ARCHIVE_DIR, instance_identifier, NULL);
1119         if (isdir(archive_dir))
1120                 {
1121                 archive_file = g_file_new_for_path(archive_dir);
1122                 rmdir_recursive(archive_file, NULL, NULL);
1123                 g_free(archive_dir);
1124                 g_object_unref(archive_file);
1125                 }
1126
1127         /* If there are still sub-dirs created by another instance, this will fail
1128          * but that does not matter */
1129         archive_dir = g_build_filename(g_get_tmp_dir(), GQ_ARCHIVE_DIR, NULL);
1130         if (isdir(archive_dir))
1131                 {
1132                 archive_file = g_file_new_for_path(archive_dir);
1133                 g_file_delete(archive_file, NULL, NULL);
1134                 g_free(archive_dir);
1135                 g_object_unref(archive_file);
1136                 }
1137
1138         secure_close(command_line->ssi);
1139
1140         gtk_main_quit();
1141 }
1142
1143 static GenericDialog *exit_dialog = NULL;
1144
1145 static void exit_confirm_cancel_cb(GenericDialog *gd, gpointer data)
1146 {
1147         exit_dialog = NULL;
1148         generic_dialog_close(gd);
1149 }
1150
1151 static void exit_confirm_exit_cb(GenericDialog *gd, gpointer data)
1152 {
1153         exit_dialog = NULL;
1154         generic_dialog_close(gd);
1155         exit_program_final();
1156 }
1157
1158 static gint exit_confirm_dlg(void)
1159 {
1160         GtkWidget *parent;
1161         LayoutWindow *lw;
1162         gchar *msg;
1163
1164         if (exit_dialog)
1165                 {
1166                 gtk_window_present(GTK_WINDOW(exit_dialog->dialog));
1167                 return TRUE;
1168                 }
1169
1170         if (!collection_window_modified_exists()) return FALSE;
1171
1172         parent = NULL;
1173         lw = NULL;
1174         if (layout_valid(&lw))
1175                 {
1176                 parent = lw->window;
1177                 }
1178
1179         msg = g_strdup_printf("%s - %s", GQ_APPNAME, _("exit"));
1180         exit_dialog = generic_dialog_new(msg,
1181                                 "exit", parent, FALSE,
1182                                 exit_confirm_cancel_cb, NULL);
1183         g_free(msg);
1184         msg = g_strdup_printf(_("Quit %s"), GQ_APPNAME);
1185         generic_dialog_add_message(exit_dialog, GTK_STOCK_DIALOG_QUESTION,
1186                                    msg, _("Collections have been modified. Quit anyway?"), TRUE);
1187         g_free(msg);
1188         generic_dialog_add_button(exit_dialog, GTK_STOCK_QUIT, NULL, exit_confirm_exit_cb, TRUE);
1189
1190         gtk_widget_show(exit_dialog->dialog);
1191
1192         return TRUE;
1193 }
1194
1195 static void exit_program_write_metadata_cb(gint success, const gchar *dest_path, gpointer data)
1196 {
1197         if (success) exit_program();
1198 }
1199
1200 void exit_program(void)
1201 {
1202         layout_image_full_screen_stop(NULL);
1203
1204         if (metadata_write_queue_confirm(FALSE, exit_program_write_metadata_cb, NULL)) return;
1205
1206         options->marks_save ? marks_save(TRUE) : marks_save(FALSE);
1207
1208         if (exit_confirm_dlg()) return;
1209
1210         exit_program_final();
1211 }
1212
1213 /* This code is supposed to handle situation when a file mmaped by image_loader
1214  * or by exif loader is truncated by some other process.
1215  * This is probably not completely correct according to posix, because
1216  * mmap is not in the list of calls that can be used safely in signal handler,
1217  * but anyway, the handler is called in situation when the application would
1218  * crash otherwise.
1219  * Ideas for improvement are welcome ;)
1220  */
1221 /** @FIXME this probably needs some better ifdefs. Please report any compilation problems */
1222
1223 #if defined(SIGBUS) && defined(SA_SIGINFO)
1224 static void sigbus_handler_cb(int signum, siginfo_t *info, void *context)
1225 {
1226         unsigned long pagesize = sysconf(_SC_PAGE_SIZE);
1227         DEBUG_1("SIGBUS %p", info->si_addr);
1228         mmap((void *)(((unsigned long)info->si_addr / pagesize) * pagesize), pagesize, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
1229 }
1230 #endif
1231
1232 static void setup_sigbus_handler(void)
1233 {
1234 #if defined(SIGBUS) && defined(SA_SIGINFO)
1235         struct sigaction sigbus_action;
1236         sigfillset(&sigbus_action.sa_mask);
1237         sigbus_action.sa_sigaction = sigbus_handler_cb;
1238         sigbus_action.sa_flags = SA_SIGINFO;
1239
1240         sigaction(SIGBUS, &sigbus_action, NULL);
1241 #endif
1242 }
1243
1244 static void set_theme_bg_color()
1245 {
1246 #if GTK_CHECK_VERSION(3,0,0)
1247         GdkRGBA bg_color;
1248         GdkColor theme_color;
1249         GtkStyleContext *style_context;
1250         GList *work;
1251         LayoutWindow *lw;
1252
1253         if (!options->image.use_custom_border_color)
1254                 {
1255                 work = layout_window_list;
1256                 lw = work->data;
1257
1258                 style_context = gtk_widget_get_style_context(lw->window);
1259                 gtk_style_context_get_background_color(style_context, GTK_STATE_FLAG_NORMAL, &bg_color);
1260
1261                 theme_color.red = bg_color.red * 65535;
1262                 theme_color.green = bg_color.green * 65535;
1263                 theme_color.blue = bg_color.blue * 65535;
1264
1265                 while (work)
1266                         {
1267                         lw = work->data;
1268                         image_background_set_color(lw->image, &theme_color);
1269                         work = work->next;
1270                         }
1271                 }
1272
1273         view_window_colors_update();
1274 #endif
1275 }
1276
1277 static gboolean theme_change_cb(GObject *gobject, GParamSpec *pspec, gpointer data)
1278 {
1279         set_theme_bg_color();
1280
1281         return FALSE;
1282 }
1283
1284 /**
1285  * @brief Set up the application paths
1286  * 
1287  * This function is required for use of AppImages. AppImages are
1288  * relocatable, and therefore cannot use fixed paths to various components.
1289  * These paths were originally #defines created during compilation.
1290  * They are now variables, all defined relative to one level above the
1291  * directory that the executable is run from.
1292  */
1293 static void create_application_paths(gchar *argv[])
1294 {
1295         gchar *dirname;
1296         gchar *tmp;
1297         gint length;
1298         gchar *path;
1299
1300         length = wai_getExecutablePath(NULL, 0, NULL);
1301         path = (gchar *)malloc(length + 1);
1302         wai_getExecutablePath(path, length, NULL);
1303         path[length] = '\0';
1304
1305         gq_executable_path = g_strdup(path);
1306         dirname = g_path_get_dirname(gq_executable_path); // default is /usr/bin/
1307         gq_prefix = g_path_get_dirname(dirname);
1308
1309         gq_localedir = g_build_filename(gq_prefix, "share", "locale", NULL);
1310         tmp = g_build_filename(gq_prefix, "share", "doc", NULL);
1311         gq_helpdir = g_strconcat(tmp, G_DIR_SEPARATOR_S, "geeqie-", VERSION, NULL);
1312         gq_htmldir = g_build_filename(gq_helpdir, "html", NULL);
1313         gq_app_dir = g_build_filename(gq_prefix, "share", "geeqie", NULL);
1314         gq_bin_dir = g_build_filename(gq_prefix, "lib", "geeqie", NULL);
1315         desktop_file_template = g_build_filename(gq_app_dir, "template.desktop", NULL);
1316
1317         g_free(tmp);
1318         g_free(dirname);
1319         g_free(path);
1320 }
1321
1322 gboolean stderr_channel_cb(GIOChannel *source, GIOCondition condition, gpointer data)
1323 {
1324         static GString *message_str = NULL;
1325         gchar buf[10] = {0};
1326         gsize count;
1327
1328         if (!message_str)
1329                 {
1330                 message_str = g_string_new(NULL);
1331                 }
1332
1333         g_io_channel_read_chars(source, buf, 1, &count, NULL);
1334
1335         if (count > 0)
1336                 {
1337                 if (buf[0] == '\n')
1338                         {
1339                         log_printf("%s", message_str->str);
1340                         g_string_free(message_str, TRUE);
1341                         message_str = NULL;
1342                         }
1343                 else
1344                         {
1345                         message_str = g_string_append_c(message_str, buf[0]);
1346                         }
1347                 return TRUE;
1348                 }
1349         else
1350                 {
1351                 return FALSE;
1352                 }
1353 }
1354
1355 gint main(gint argc, gchar *argv[])
1356 {
1357         CollectionData *first_collection = NULL;
1358         gchar *buf;
1359         CollectionData *cd = NULL;
1360         gboolean disable_clutter = FALSE;
1361         gboolean single_dir = TRUE;
1362         LayoutWindow *lw;
1363         GtkSettings *default_settings;
1364         gint fd_stderr[2];
1365         GIOChannel *stderr_channel;
1366
1367 #ifdef HAVE_GTHREAD
1368 #if !GLIB_CHECK_VERSION(2,32,0)
1369         g_thread_init(NULL);
1370 #endif
1371         gdk_threads_init();
1372         gdk_threads_enter();
1373
1374 #endif
1375
1376         /* init execution time counter (debug only) */
1377         init_exec_time();
1378
1379         create_application_paths(argv);
1380
1381         /* setup locale, i18n */
1382         setlocale(LC_ALL, "");
1383
1384 #ifdef ENABLE_NLS
1385         bindtextdomain(PACKAGE, gq_localedir);
1386         bind_textdomain_codeset(PACKAGE, "UTF-8");
1387         textdomain(PACKAGE);
1388 #endif
1389
1390         /* Tee stderr to log window */
1391         if (pipe(fd_stderr) == 0)
1392                 {
1393                 if (dup2(fd_stderr[1], fileno(stderr)) != -1)
1394                         {
1395                         close(fd_stderr[1]);
1396                         stderr_channel = g_io_channel_unix_new(fd_stderr[0]);
1397                         g_io_add_watch(stderr_channel, G_IO_IN, (GIOFunc)stderr_channel_cb, NULL);
1398                         }
1399                 }
1400
1401         exif_init();
1402
1403 #ifdef HAVE_LUA
1404         lua_init();
1405 #endif
1406
1407         /* setup random seed for random slideshow */
1408         srand(time(NULL));
1409
1410         setup_sigbus_handler();
1411
1412         /* register global notify functions */
1413         file_data_register_notify_func(cache_notify_cb, NULL, NOTIFY_PRIORITY_HIGH);
1414         file_data_register_notify_func(thumb_notify_cb, NULL, NOTIFY_PRIORITY_HIGH);
1415         file_data_register_notify_func(histogram_notify_cb, NULL, NOTIFY_PRIORITY_HIGH);
1416         file_data_register_notify_func(collect_manager_notify_cb, NULL, NOTIFY_PRIORITY_LOW);
1417         file_data_register_notify_func(metadata_notify_cb, NULL, NOTIFY_PRIORITY_LOW);
1418
1419
1420         gtkrc_load();
1421
1422         parse_command_line_for_debug_option(argc, argv);
1423         DEBUG_1("%s main: gtk_init", get_exec_time());
1424 #ifdef HAVE_CLUTTER
1425         if (parse_command_line_for_clutter_option(argc, argv))
1426                 {
1427                 disable_clutter = TRUE;
1428                 gtk_init(&argc, &argv);
1429                 }
1430         else
1431                 {
1432                 if (gtk_clutter_init(&argc, &argv) != CLUTTER_INIT_SUCCESS)
1433                         {
1434                         log_printf("Can't initialize clutter-gtk.\nStart Geeqie with the option \"geeqie --disable-clutter\"");
1435                         runcmd("zenity --error --title=\"Geeqie\" --text \"Can't initialize clutter-gtk.\n\nStart Geeqie with the option:\n geeqie --disable-clutter\" --width=300");
1436                         exit(1);
1437                         }
1438                 }
1439 #else
1440         gtk_init(&argc, &argv);
1441 #endif
1442
1443         if (gtk_major_version < GTK_MAJOR_VERSION ||
1444             (gtk_major_version == GTK_MAJOR_VERSION && gtk_minor_version < GTK_MINOR_VERSION) )
1445                 {
1446                 log_printf("!!! This is a friendly warning.\n");
1447                 log_printf("!!! The version of GTK+ in use now is older than when %s was compiled.\n", GQ_APPNAME);
1448                 log_printf("!!!  compiled with GTK+-%d.%d\n", GTK_MAJOR_VERSION, GTK_MINOR_VERSION);
1449                 log_printf("!!!   running with GTK+-%d.%d\n", gtk_major_version, gtk_minor_version);
1450                 log_printf("!!! %s may quit unexpectedly with a relocation error.\n", GQ_APPNAME);
1451                 }
1452
1453         DEBUG_1("%s main: pixbuf_inline_register_stock_icons", get_exec_time());
1454         pixbuf_inline_register_stock_icons();
1455
1456         DEBUG_1("%s main: setting default options before commandline handling", get_exec_time());
1457         options = init_options(NULL);
1458         setup_default_options(options);
1459         if (disable_clutter)
1460                 {
1461                 options->disable_gpu = TRUE;
1462                 }
1463
1464         /* Generate a unique identifier used by the open archive function */
1465         instance_identifier = g_strdup_printf("%x", g_random_int());
1466
1467         DEBUG_1("%s main: mkdir_if_not_exists", get_exec_time());
1468         /* these functions don't depend on config file */
1469         mkdir_if_not_exists(get_rc_dir());
1470         mkdir_if_not_exists(get_collections_dir());
1471         mkdir_if_not_exists(get_thumbnails_cache_dir());
1472         mkdir_if_not_exists(get_metadata_cache_dir());
1473         mkdir_if_not_exists(get_window_layouts_dir());
1474
1475         setup_env_path();
1476
1477         if (parse_command_line_for_cache_maintenance_option(argc, argv))
1478                 {
1479                 process_command_line_for_cache_maintenance_option(argc, argv);
1480                 }
1481         else
1482                 {
1483                 DEBUG_1("%s main: parse_command_line", get_exec_time());
1484                 parse_command_line(argc, argv);
1485
1486                 keys_load();
1487                 accel_map_load();
1488
1489                 /* restore session from the config file */
1490
1491
1492                 DEBUG_1("%s main: load_options", get_exec_time());
1493                 if (!load_options(options))
1494                         {
1495                         /* load_options calls these functions after it parses global options, we have to call it here if it fails */
1496                         filter_add_defaults();
1497                         filter_rebuild();
1498                         }
1499
1500         #ifdef HAVE_CLUTTER
1501         /** @FIXME For the background of this see:
1502          * https://github.com/BestImageViewer/geeqie/issues/397
1503          * The feature CLUTTER_FEATURE_SWAP_EVENTS indictates if the
1504          * system is liable to exhibit this problem.
1505          * The user is provided with an override in Preferences/Behavior
1506          */
1507                 if (!options->override_disable_gpu && !options->disable_gpu)
1508                         {
1509                         DEBUG_1("CLUTTER_FEATURE_SWAP_EVENTS %d",clutter_feature_available(CLUTTER_FEATURE_SWAP_EVENTS));
1510                         if (clutter_feature_available(CLUTTER_FEATURE_SWAP_EVENTS) != 0)
1511                                 {
1512                                 options->disable_gpu = TRUE;
1513                                 }
1514                         }
1515         #endif
1516
1517                 /* handle missing config file and commandline additions*/
1518                 if (!layout_window_list)
1519                         {
1520                         /* broken or no config file or no <layout> section */
1521                         layout_new_from_default();
1522                         }
1523
1524                 layout_editors_reload_start();
1525
1526                 /* If no --list option, open a separate collection window for each
1527                  * .gqv file on the command line
1528                  */
1529                 if (command_line->collection_list && !command_line->startup_command_line_collection)
1530                         {
1531                         GList *work;
1532
1533                         work = command_line->collection_list;
1534                         while (work)
1535                                 {
1536                                 CollectWindow *cw;
1537                                 const gchar *path;
1538
1539                                 path = work->data;
1540                                 work = work->next;
1541
1542                                 cw = collection_window_new(path);
1543                                 if (!first_collection && cw) first_collection = cw->cd;
1544                                 }
1545                         }
1546
1547                 if (command_line->log_file)
1548                         {
1549                         gchar *pathl;
1550                         gchar *path = g_strdup(command_line->log_file);
1551
1552                         pathl = path_from_utf8(path);
1553                         command_line->ssi = secure_open(pathl);
1554                         }
1555
1556                 /* If there is a files list on the command line and no --list option,
1557                  * check if they are all in the same folder
1558                  */
1559                 if (command_line->cmd_list && !(command_line->startup_command_line_collection))
1560                         {
1561                         GList *work;
1562                         gchar *path = NULL;
1563
1564                         work = command_line->cmd_list;
1565
1566                         while (work && single_dir)
1567                                 {
1568                                 gchar *dirname;
1569
1570                                 dirname = g_path_get_dirname(work->data);
1571                                 if (!path)
1572                                         {
1573                                         path = g_strdup(dirname);
1574                                         }
1575                                 else
1576                                         {
1577                                         if (g_strcmp0(path, dirname) != 0)
1578                                                 {
1579                                                 single_dir = FALSE;
1580                                                 }
1581                                         }
1582                                 g_free(dirname);
1583                                 work = work->next;
1584                                 }
1585                         g_free(path);
1586                         }
1587
1588                 /* Files from multiple folders, or --list option given
1589                  * then open an unnamed collection and insert all files
1590                  */
1591                 if ((command_line->cmd_list && !single_dir) || (command_line->startup_command_line_collection && command_line->cmd_list))
1592                         {
1593                         GList *work;
1594                         CollectWindow *cw;
1595
1596                         cw = collection_window_new(NULL);
1597                         cd = cw->cd;
1598
1599                         collection_path_changed(cd);
1600
1601                         work = command_line->cmd_list;
1602                         while (work)
1603                                 {
1604                                 FileData *fd;
1605
1606                                 fd = file_data_new_simple(work->data);
1607                                 collection_add(cd, fd, FALSE);
1608                                 file_data_unref(fd);
1609                                 work = work->next;
1610                                 }
1611
1612                         work = command_line->collection_list;
1613                         while (work)
1614                                 {
1615                                 collection_load(cd, (gchar *)work->data, COLLECTION_LOAD_APPEND);
1616                                 work = work->next;
1617                                 }
1618
1619                         if (cd->list) layout_image_set_collection(NULL, cd, cd->list->data);
1620
1621                         /* mem leak, we never unref this collection when !startup_command_line_collection
1622                          * (the image view of the main window does not hold a ref to the collection)
1623                          * this is sort of unavoidable, for if it did hold a ref, next/back
1624                          * may not work as expected when closing collection windows.
1625                          *
1626                          * collection_unref(cd);
1627                          */
1628
1629                         }
1630                 else if (first_collection)
1631                         {
1632                         layout_image_set_collection(NULL, first_collection,
1633                                                     collection_get_first(first_collection));
1634                         }
1635
1636                 /* If the files on the command line are from one folder, select those files
1637                  * unless it is a command line collection - then leave focus on collection window
1638                  */
1639                 lw = NULL;
1640                 layout_valid(&lw);
1641
1642                 if (single_dir && command_line->cmd_list && !command_line->startup_command_line_collection)
1643                         {
1644                         GList *work;
1645                         GList *selected;
1646                         FileData *fd;
1647
1648                         selected = NULL;
1649                         work = command_line->cmd_list;
1650                         while (work)
1651                                 {
1652                                 fd = file_data_new_simple((gchar *)work->data);
1653                                 selected = g_list_append(selected, fd);
1654                                 file_data_unref(fd);
1655                                 work = work->next;
1656                                 }
1657                         layout_select_list(lw, selected);
1658                         }
1659
1660                 buf = g_build_filename(get_rc_dir(), ".command", NULL);
1661                 remote_connection = remote_server_init(buf, cd);
1662                 g_free(buf);
1663
1664                 marks_load();
1665         }
1666
1667         default_settings = gtk_settings_get_default();
1668         g_signal_connect(default_settings, "notify::gtk-theme-name", G_CALLBACK(theme_change_cb), NULL);
1669         set_theme_bg_color();
1670
1671         DEBUG_1("%s main: gtk_main", get_exec_time());
1672         gtk_main();
1673 #ifdef HAVE_GTHREAD
1674         gdk_threads_leave();
1675 #endif
1676         return 0;
1677 }
1678 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */