Trim trailing white spaces.
[geeqie.git] / src / main.c
index 9dd042c..ab5ded3 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Geeqie
  * (C) 2006 John Ellis
- * Copyright (C) 2008 The Geeqie Team
+ * Copyright (C) 2008 - 2012 The Geeqie Team
  *
  * Author: John Ellis
  *
  * This software comes with no warranty of any kind, use at your own risk!
  */
 
+#include <gdk/gdkkeysyms.h> /* for keyboard values */
+
+#include <signal.h>
+#include <sys/mman.h>
+
+#include <math.h>
+#ifdef G_OS_UNIX
+#include <pwd.h>
+#endif
+#include <locale.h>
 
 #include "main.h"
 
 #include "cache.h"
 #include "collect.h"
 #include "collect-io.h"
-#include "debug.h"
-#include "dnd.h"
-#include "editors.h"
 #include "filedata.h"
 #include "filefilter.h"
-#include "fullscreen.h"
+#include "history_list.h"
 #include "image-overlay.h"
-#include "img-view.h"
 #include "layout.h"
 #include "layout_image.h"
-#include "menu.h"
-#include "pixbuf_util.h"
-#include "preferences.h"
-#include "rcfile.h"
+#include "layout_util.h"
+#include "options.h"
 #include "remote.h"
+#include "secure_save.h"
 #include "similar.h"
-#include "slideshow.h"
-#include "utilops.h"
-#include "ui_bookmark.h"
-#include "ui_help.h"
 #include "ui_fileops.h"
-#include "ui_tabcomp.h"
 #include "ui_utildlg.h"
+#include "cache_maint.h"
+#include "thumb.h"
+#include "metadata.h"
+#include "editors.h"
+#include "exif.h"
+#include "histogram.h"
+#include "pixbuf_util.h"
 
-#include <gdk/gdkkeysyms.h> /* for keyboard values */
-
-
-#include <math.h>
+#ifdef HAVE_CLUTTER
+#include <clutter-gtk/clutter-gtk.h>
+#endif
 
 
+gboolean thumb_format_changed = FALSE;
 static RemoteConnection *remote_connection = NULL;
-static CollectionData *command_collection = NULL;
-
-
-/*
- *-----------------------------------------------------------------------------
- * misc (public)
- *-----------------------------------------------------------------------------
- */
-
-GtkWidget *window_new(GtkWindowType type, const gchar *name, const gchar *icon,
-                     const gchar *icon_file, const gchar *subtitle)
-{
-       gchar *title;
-       GtkWidget *window;
-
-       window = gtk_window_new(type);
-       if (!window) return NULL;
-
-       if (subtitle)
-               {
-               title = g_strdup_printf("%s - %s", subtitle, GQ_APPNAME);
-               }
-       else
-               {
-               title = g_strdup_printf("%s", GQ_APPNAME);
-               }
-
-       gtk_window_set_title(GTK_WINDOW(window), title);
-       g_free(title);
-
-       window_set_icon(window, icon, icon_file);
-       gtk_window_set_role(GTK_WINDOW(window), name);
-       gtk_window_set_wmclass(GTK_WINDOW(window), name, GQ_WMCLASS);
-
-       return window;
-}
-
-void window_set_icon(GtkWidget *window, const gchar *icon, const gchar *file)
-{
-       if (!icon && !file) icon = PIXBUF_INLINE_ICON;
-
-       if (icon)
-               {
-               GdkPixbuf *pixbuf;
-
-               pixbuf = pixbuf_inline(icon);
-               if (pixbuf)
-                       {
-                       gtk_window_set_icon(GTK_WINDOW(window), pixbuf);
-                       g_object_unref(pixbuf);
-                       }
-               }
-       else
-               {
-               gtk_window_set_icon_from_file(GTK_WINDOW(window), file, NULL);
-               }
-}
-
-gint window_maximized(GtkWidget *window)
-{
-       GdkWindowState state;
-
-       if (!window || !window->window) return FALSE;
-
-       state = gdk_window_get_state(window->window);
-       return (state & GDK_WINDOW_STATE_MAXIMIZED);
-}
-
-gdouble get_zoom_increment(void)
-{
-       return ((options->image.zoom_increment != 0) ? (gdouble)options->image.zoom_increment / 10.0 : 1.0);
-}
-
-
-/*
- *-----------------------------------------------------------------------------
- * Open  browser with the help Documentation
- *-----------------------------------------------------------------------------
- */
-
-static gchar *command_result(const gchar *binary, const gchar *command)
-{
-       gchar *result = NULL;
-       FILE *f;
-       char buf[2048];
-       int l;
-
-       if (!binary) return NULL;
-       if (!file_in_path(binary)) return NULL;
-
-       if (!command) return g_strdup(binary);
-       if (command[0] == '!') return g_strdup(command + 1);
-
-       f = popen(command, "r");
-       if (!f) return NULL;
-
-       while ((l = fread(buf, sizeof(char), sizeof(buf), f)) > 0)
-               {
-               if (!result)
-                       {
-                       int n = 0;
-
-                       while (n < l && buf[n] != '\n' && buf[n] != '\r') n++;
-                       if (n > 0) result = g_strndup(buf, n);
-                       }
-               }
-
-       pclose(f);
-
-       return result;
-}
-
-static void help_browser_command(const gchar *command, const gchar *path)
-{
-       gchar *result;
-       gchar *buf;
-       gchar *begin;
-       gchar *end;
-
-       if (!command || !path) return;
-
-       DEBUG_1("Help command pre \"%s\", \"%s\"", command, path);
-
-       buf = g_strdup(command);
-       begin = strstr(buf, "%s");
-       if (begin)
-               {
-               *begin = '\0';
-               end = begin + 2;
-               begin = buf;
-
-               result = g_strdup_printf("%s%s%s &", begin, path, end);
-               }
-       else
-               {
-               result = g_strdup_printf("%s \"%s\" &", command, path);
-               }
-       g_free(buf);
-
-       DEBUG_1("Help command post [%s]", result);
-
-       system(result);
-
-       g_free(result);
-}
-
-/*
- * each set of 2 strings is one browser:
- *   the 1st is the binary to look for in the path
- *   the 2nd has 3 capabilities:
- *        NULL     exec binary with html file path as command line
- *        string   exec string and use results for command line
- *        !string  use text following ! as command line, replacing optional %s with html file path
-*/
-static gchar *html_browsers[] =
-{
-       /* Redhat has a nifty htmlview script to start the user's preferred browser */
-       "htmlview",     NULL,
-       /* GNOME 2 */
-       "gconftool-2",  "gconftool-2 -g /desktop/gnome/url-handlers/http/command",
-       /* KDE */
-       "kfmclient",    "!kfmclient exec \"%s\"",
-       /* use fallbacks */
-       "firefox",      NULL,
-       "mozilla",      NULL,
-       "konqueror",    NULL,
-       "netscape",     NULL,
-       NULL,           NULL
-};
-
-static void help_browser_run(void)
-{
-       gchar *result = NULL;
-       gint i;
-
-       i = 0;
-       while (!result && html_browsers[i])
-               {
-               result = command_result(html_browsers[i], html_browsers[i+1]);
-               i += 2;
-               }
-
-       if (!result)
-               {
-               printf("Unable to detect an installed browser.\n");
-               return;
-               }
-
-       help_browser_command(result, GQ_HTMLDIR "/index.html");
-
-       g_free(result);
-}
-
-/*
- *-----------------------------------------------------------------------------
- * help window
- *-----------------------------------------------------------------------------
- */
-
-static GtkWidget *help_window = NULL;
-
-static void help_window_destroy_cb(GtkWidget *window, gpointer data)
-{
-       help_window = NULL;
-}
-
-void help_window_show(const gchar *key)
-{
-       if (key && strcmp(key, "html_contents") == 0)
-               {
-               help_browser_run();
-               return;
-               }
-
-       if (help_window)
-               {
-               gtk_window_present(GTK_WINDOW(help_window));
-               if (key) help_window_set_key(help_window, key);
-               return;
-               }
-
-       {
-       gchar *title = g_strdup_printf("%s - %s", _("Help"), GQ_APPNAME);
-       help_window = help_window_new(title, GQ_WMCLASS, "help",
-                                     GQ_HELPDIR "/README", key);
-       g_free(title);
-       }
-       g_signal_connect(G_OBJECT(help_window), "destroy",
-                        G_CALLBACK(help_window_destroy_cb), NULL);
-}
-
 
 /*
  *-----------------------------------------------------------------------------
@@ -325,485 +101,6 @@ void keyboard_scroll_calc(gint *x, gint *y, GdkEventKey *event)
 }
 
 
-/*
- *-----------------------------------------------------------------------------
- * remote functions
- *-----------------------------------------------------------------------------
- */
-
-static void gr_image_next(const gchar *text, gpointer data)
-{
-       layout_image_next(NULL);
-}
-
-static void gr_image_prev(const gchar *text, gpointer data)
-{
-       layout_image_prev(NULL);
-}
-
-static void gr_image_first(const gchar *text, gpointer data)
-{
-       layout_image_first(NULL);
-}
-
-static void gr_image_last(const gchar *text, gpointer data)
-{
-       layout_image_last(NULL);
-}
-
-static void gr_fullscreen_toggle(const gchar *text, gpointer data)
-{
-       layout_image_full_screen_toggle(NULL);
-}
-
-static void gr_fullscreen_start(const gchar *text, gpointer data)
-{
-       layout_image_full_screen_start(NULL);
-}
-
-static void gr_fullscreen_stop(const gchar *text, gpointer data)
-{
-       layout_image_full_screen_stop(NULL);
-}
-
-static void gr_slideshow_start_rec(const gchar *text, gpointer data)
-{
-       GList *list;
-
-       list = filelist_recursive(text);
-       if (!list) return;
-//printf("length: %d\n", g_list_length(list));
-       layout_image_slideshow_stop(NULL);
-       layout_image_slideshow_start_from_list(NULL, list);
-}
-
-static void gr_slideshow_toggle(const gchar *text, gpointer data)
-{
-       layout_image_slideshow_toggle(NULL);
-}
-
-static void gr_slideshow_start(const gchar *text, gpointer data)
-{
-       layout_image_slideshow_start(NULL);
-}
-
-static void gr_slideshow_stop(const gchar *text, gpointer data)
-{
-       layout_image_slideshow_stop(NULL);
-}
-
-static void gr_slideshow_delay(const gchar *text, gpointer data)
-{
-       gdouble n;
-
-       n = strtod(text, NULL);
-       if (n < SLIDESHOW_MIN_SECONDS || n > SLIDESHOW_MAX_SECONDS)
-               {
-               printf_term("Remote slideshow delay out of range (%.1f to %.1f)\n",
-                           SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS);
-               return;
-               }
-       options->slideshow.delay = (gint)(n * 10.0 + 0.01);
-}
-
-static void gr_tools_show(const gchar *text, gpointer data)
-{
-       gint popped;
-       gint hidden;
-
-       if (layout_tools_float_get(NULL, &popped, &hidden) && hidden)
-               {
-               layout_tools_float_set(NULL, popped, FALSE);
-               }
-}
-
-static void gr_tools_hide(const gchar *text, gpointer data)
-{
-       gint popped;
-       gint hidden;
-
-       if (layout_tools_float_get(NULL, &popped, &hidden) && !hidden)
-               {
-               layout_tools_float_set(NULL, popped, TRUE);
-               }
-}
-
-static gint gr_quit_idle_cb(gpointer data)
-{
-       exit_program();
-
-       return FALSE;
-}
-
-static void gr_quit(const gchar *text, gpointer data)
-{
-       /* schedule exit when idle, if done from within a
-        * remote handler remote_close will crash
-        */
-       g_idle_add(gr_quit_idle_cb, NULL);
-}
-
-static void gr_file_load(const gchar *text, gpointer data)
-{
-       if (isfile(text))
-               {
-               if (file_extension_match(text, ".gqv"))
-                       {
-                       collection_window_new(text);
-                       }
-               else
-                       {
-                       layout_set_path(NULL, text);
-                       }
-               }
-       else if (isdir(text))
-               {
-               layout_set_path(NULL, text);
-               }
-       else
-               {
-               printf("remote sent filename that does not exist:\"%s\"\n", text);
-               }
-}
-
-static void gr_file_view(const gchar *text, gpointer data)
-{
-       view_window_new(file_data_new_simple(text));
-}
-
-static void gr_list_clear(const gchar *text, gpointer data)
-{
-       if (command_collection) collection_unref(command_collection);
-       command_collection = NULL;
-}
-
-static void gr_list_add(const gchar *text, gpointer data)
-{
-       gint new = TRUE;
-
-       if (!command_collection)
-               {
-               CollectionData *cd;
-
-               cd = collection_new("");
-
-               g_free(cd->path);
-               cd->path = NULL;
-               g_free(cd->name);
-               cd->name = g_strdup(_("Command line"));
-
-               command_collection = cd;
-               }
-       else
-               {
-               new = (!collection_get_first(command_collection));
-               }
-
-       if (collection_add(command_collection, file_data_new_simple(text), FALSE) && new)
-               {
-               layout_image_set_collection(NULL, command_collection,
-                                           collection_get_first(command_collection));
-               }
-}
-
-static void gr_raise(const gchar *text, gpointer data)
-{
-       LayoutWindow *lw = NULL;
-
-       if (layout_valid(&lw))
-               {
-               gtk_window_present(GTK_WINDOW(lw->window));
-               }
-}
-
-typedef struct _RemoteCommandEntry RemoteCommandEntry;
-struct _RemoteCommandEntry {
-       gchar *opt_s;
-       gchar *opt_l;
-       void (*func)(const gchar *text, gpointer data);
-       gint needs_extra;
-       gint prefer_command_line;
-       gchar *description;
-};
-
-static RemoteCommandEntry remote_commands[] = {
-       /* short, long                  callback,               extra, prefer,description */
-       { "-n", "--next",               gr_image_next,          FALSE, FALSE, N_("next image") },
-       { "-b", "--back",               gr_image_prev,          FALSE, FALSE, N_("previous image") },
-       { NULL, "--first",              gr_image_first,         FALSE, FALSE, N_("first image") },
-       { NULL, "--last",               gr_image_last,          FALSE, FALSE, N_("last image") },
-       { "-f", "--fullscreen",         gr_fullscreen_toggle,   FALSE, TRUE,  N_("toggle full screen") },
-       { "-fs","--fullscreen-start",   gr_fullscreen_start,    FALSE, FALSE, N_("start full screen") },
-       { "-fS","--fullscreen-stop",    gr_fullscreen_stop,     FALSE, FALSE, N_("stop full screen") },
-       { "-s", "--slideshow",          gr_slideshow_toggle,    FALSE, TRUE,  N_("toggle slide show") },
-       { "-ss","--slideshow-start",    gr_slideshow_start,     FALSE, FALSE, N_("start slide show") },
-       { "-sS","--slideshow-stop",     gr_slideshow_stop,      FALSE, FALSE, N_("stop slide show") },
-       { "-sr","--slideshow-recurse",  gr_slideshow_start_rec, TRUE,  FALSE, N_("start recursive slide show") },
-       { "-d", "--delay=",             gr_slideshow_delay,     TRUE,  FALSE, N_("set slide show delay in seconds") },
-       { "+t", "--tools-show",         gr_tools_show,          FALSE, TRUE,  N_("show tools") },
-       { "-t", "--tools-hide",         gr_tools_hide,          FALSE, TRUE,  N_("hide tools") },
-       { "-q", "--quit",               gr_quit,                FALSE, FALSE, N_("quit") },
-       { NULL, "file:",                gr_file_load,           TRUE,  FALSE, N_("open file") },
-       { NULL, "view:",                gr_file_view,           TRUE,  FALSE, N_("open file in new window") },
-       { NULL, "--list-clear",         gr_list_clear,          FALSE, FALSE, NULL },
-       { NULL, "--list-add:",          gr_list_add,            TRUE,  FALSE, NULL },
-       { NULL, "raise",                gr_raise,               FALSE, FALSE, NULL },
-       { NULL, NULL, NULL, FALSE, FALSE, NULL }
-};
-
-static RemoteCommandEntry *remote_command_find(const gchar *text, const gchar **offset)
-{
-       gint match = FALSE;
-       gint i;
-
-       i = 0;
-       while (!match && remote_commands[i].func != NULL)
-               {
-               if (remote_commands[i].needs_extra)
-                       {
-                       if (remote_commands[i].opt_s &&
-                           strncmp(remote_commands[i].opt_s, text, strlen(remote_commands[i].opt_s)) == 0)
-                               {
-                               if (offset) *offset = text + strlen(remote_commands[i].opt_s);
-                               return &remote_commands[i];
-                               }
-                       else if (remote_commands[i].opt_l &&
-                                strncmp(remote_commands[i].opt_l, text, strlen(remote_commands[i].opt_l)) == 0)
-                               {
-                               if (offset) *offset = text + strlen(remote_commands[i].opt_l);
-                               return &remote_commands[i];
-                               }
-                       }
-               else
-                       {
-                       if ((remote_commands[i].opt_s && strcmp(remote_commands[i].opt_s, text) == 0) ||
-                           (remote_commands[i].opt_l && strcmp(remote_commands[i].opt_l, text) == 0))
-                               {
-                               if (offset) *offset = text;
-                               return &remote_commands[i];
-                               }
-                       }
-
-               i++;
-               }
-
-       return NULL;
-}
-
-static void remote_cb(RemoteConnection *rc, const gchar *text, gpointer data)
-{
-       RemoteCommandEntry *entry;
-       const gchar *offset;
-
-       entry = remote_command_find(text, &offset);
-       if (entry && entry->func)
-               {
-               entry->func(offset, data);
-               }
-       else
-               {
-               printf("unknown remote command:%s\n", text);
-               }
-}
-
-static void remote_help(void)
-{
-       gint i;
-
-       print_term(_("Remote command list:\n"));
-
-       i = 0;
-       while (remote_commands[i].func != NULL)
-               {
-               if (remote_commands[i].description)
-                       {
-                       printf_term("  %-3s%s %-20s %s\n",
-                                   (remote_commands[i].opt_s) ? remote_commands[i].opt_s : "",
-                                   (remote_commands[i].opt_s && remote_commands[i].opt_l) ? "," : " ",
-                                   (remote_commands[i].opt_l) ? remote_commands[i].opt_l : "",
-                                   _(remote_commands[i].description));
-                       }
-               i++;
-               }
-}
-
-static GList *remote_build_list(GList *list, int argc, char *argv[])
-{
-       gint i;
-
-       i = 1;
-       while (i < argc)
-               {
-               RemoteCommandEntry *entry;
-
-               entry = remote_command_find(argv[i], NULL);
-               if (entry)
-                       {
-                       list = g_list_append(list, argv[i]);
-                       }
-               i++;
-               }
-
-       return list;
-}
-
-static void remote_control(const gchar *arg_exec, GList *remote_list, const gchar *path,
-                                 GList *cmd_list, GList *collection_list)
-{
-       RemoteConnection *rc;
-       gint started = FALSE;
-       gchar *buf;
-
-       buf = g_strconcat(homedir(), "/", GQ_RC_DIR, "/.command", NULL);
-       rc = remote_client_open(buf);
-       if (!rc)
-               {
-               GString *command;
-               GList *work;
-               gint retry_count = 12;
-               gint blank = FALSE;
-
-               printf_term(_("Remote %s not running, starting..."), GQ_APPNAME);
-
-               command = g_string_new(arg_exec);
-
-               work = remote_list;
-               while (work)
-                       {
-                       gchar *text;
-                       RemoteCommandEntry *entry;
-
-                       text = work->data;
-                       work = work->next;
-
-                       entry = remote_command_find(text, NULL);
-                       if (entry)
-                               {
-                               if (entry->prefer_command_line)
-                                       {
-                                       remote_list = g_list_remove(remote_list, text);
-                                       g_string_append(command, " ");
-                                       g_string_append(command, text);
-                                       }
-                               if (entry->opt_l && strcmp(entry->opt_l, "file:") == 0)
-                                       {
-                                       blank = TRUE;
-                                       }
-                               }
-                       }
-
-               if (blank || cmd_list || path) g_string_append(command, " --blank");
-               if (get_debug_level()) g_string_append(command, " --debug");
-
-               g_string_append(command, " &");
-               system(command->str);
-               g_string_free(command, TRUE);
-
-               while (!rc && retry_count > 0)
-                       {
-                       usleep((retry_count > 10) ? 500000 : 1000000);
-                       rc = remote_client_open(buf);
-                       if (!rc) print_term(".");
-                       retry_count--;
-                       }
-
-               print_term("\n");
-
-               started = TRUE;
-               }
-       g_free(buf);
-
-       if (rc)
-               {
-               GList *work;
-               const gchar *prefix;
-               gint use_path = TRUE;
-               gint sent = FALSE;
-
-               work = remote_list;
-               while (work)
-                       {
-                       gchar *text;
-                       RemoteCommandEntry *entry;
-
-                       text = work->data;
-                       work = work->next;
-
-                       entry = remote_command_find(text, NULL);
-                       if (entry &&
-                           entry->opt_l &&
-                           strcmp(entry->opt_l, "file:") == 0) use_path = FALSE;
-
-                       remote_client_send(rc, text);
-
-                       sent = TRUE;
-                       }
-
-               if (cmd_list && cmd_list->next)
-                       {
-                       prefix = "--list-add:";
-                       remote_client_send(rc, "--list-clear");
-                       }
-               else
-                       {
-                       prefix = "file:";
-                       }
-
-               work = cmd_list;
-               while (work)
-                       {
-                       FileData *fd;
-                       gchar *text;
-
-                       fd = work->data;
-                       work = work->next;
-
-                       text = g_strconcat(prefix, fd->path, NULL);
-                       remote_client_send(rc, text);
-                       g_free(text);
-
-                       sent = TRUE;
-                       }
-
-               if (path && !cmd_list && use_path)
-                       {
-                       gchar *text;
-
-                       text = g_strdup_printf("file:%s", path);
-                       remote_client_send(rc, text);
-                       g_free(text);
-
-                       sent = TRUE;
-                       }
-
-               work = collection_list;
-               while (work)
-                       {
-                       const gchar *name;
-                       gchar *text;
-
-                       name = work->data;
-                       work = work->next;
-
-                       text = g_strdup_printf("file:%s", name);
-                       remote_client_send(rc, text);
-                       g_free(text);
-
-                       sent = TRUE;
-                       }
-
-               if (!started && !sent)
-                       {
-                       remote_client_send(rc, "raise");
-                       }
-               }
-       else
-               {
-               print_term(_("Remote not available\n"));
-               }
-
-       _exit(0);
-}
 
 /*
  *-----------------------------------------------------------------------------
@@ -811,12 +108,6 @@ static void remote_control(const gchar *arg_exec, GList *remote_list, const gcha
  *-----------------------------------------------------------------------------
  */
 
-static gint startup_blank = FALSE;
-static gint startup_full_screen = FALSE;
-static gint startup_in_slideshow = FALSE;
-static gint startup_command_line_collection = FALSE;
-
-
 static void parse_command_line_add_file(const gchar *file_path, gchar **path, gchar **file,
                                        GList **list, GList **collection_list)
 {
@@ -825,7 +116,7 @@ static void parse_command_line_add_file(const gchar *file_path, gchar **path, gc
        path_parsed = g_strdup(file_path);
        parse_out_relatives(path_parsed);
 
-       if (file_extension_match(path_parsed, ".gqv"))
+       if (file_extension_match(path_parsed, GQ_COLLECTION_EXT))
                {
                *collection_list = g_list_append(*collection_list, path_parsed);
                }
@@ -833,20 +124,26 @@ static void parse_command_line_add_file(const gchar *file_path, gchar **path, gc
                {
                if (!*path) *path = remove_level_from_path(path_parsed);
                if (!*file) *file = g_strdup(path_parsed);
-               *list = g_list_prepend(*list, file_data_new_simple(path_parsed));
+               *list = g_list_prepend(*list, file_data_new_group(path_parsed));
                }
 }
 
 static void parse_command_line_add_dir(const gchar *dir, gchar **path, gchar **file,
                                       GList **list)
 {
-       GList *files = NULL;
+#if 0
+       /* This is broken because file filter is not initialized yet.
+       */
+       GList *files;
        gchar *path_parsed;
+       FileData *dir_fd;
 
        path_parsed = g_strdup(dir);
        parse_out_relatives(path_parsed);
+       dir_fd = file_data_new_dir(path_parsed);
+       
 
-       if (filelist_read(path_parsed, &files, NULL))
+       if (filelist_read(dir_fd, &files, NULL))
                {
                GList *work;
 
@@ -868,6 +165,10 @@ static void parse_command_line_add_dir(const gchar *dir, gchar **path, gchar **f
                }
 
        g_free(path_parsed);
+       file_data_unref(dir_fd);
+#else
+       DEBUG_1("multiple directories specified, ignoring: %s", dir);
+#endif
 }
 
 static void parse_command_line_process_dir(const gchar *dir, gchar **path, gchar **file,
@@ -903,14 +204,18 @@ static void parse_command_line_process_file(const gchar *file_path, gchar **path
        parse_command_line_add_file(file_path, path, file, list, collection_list);
 }
 
-static void parse_command_line(int argc, char *argv[], gchar **path, gchar **file,
-                              GList **cmd_list, GList **collection_list,
-                              gchar **geometry)
+static void parse_command_line(gint argc, gchar *argv[])
 {
        GList *list = NULL;
        GList *remote_list = NULL;
-       gint remote_do = FALSE;
+       GList *remote_errors = NULL;
+       gboolean remote_do = FALSE;
        gchar *first_dir = NULL;
+       
+       command_line = g_new0(CommandLine, 1);
+       
+       command_line->argc = argc;
+       command_line->argv = argv;
 
        if (argc > 1)
                {
@@ -919,26 +224,26 @@ static void parse_command_line(int argc, char *argv[], gchar **path, gchar **fil
                i = 1;
                while (i < argc)
                        {
-                       const gchar *cmd_line = argv[i];
-                       gchar *cmd_all = concat_dir_and_file(base_dir, cmd_line);
+                       gchar *cmd_line = path_to_utf8(argv[i]);
+                       gchar *cmd_all = g_build_filename(base_dir, cmd_line, NULL);
 
-                       if (cmd_line[0] == '/' && isdir(cmd_line))
+                       if (cmd_line[0] == G_DIR_SEPARATOR && isdir(cmd_line))
                                {
-                               parse_command_line_process_dir(cmd_line, path, file, &list, &first_dir);
+                               parse_command_line_process_dir(cmd_line, &command_line->path, &command_line->file, &list, &first_dir);
                                }
                        else if (isdir(cmd_all))
                                {
-                               parse_command_line_process_dir(cmd_all, path, file, &list, &first_dir);
+                               parse_command_line_process_dir(cmd_all, &command_line->path, &command_line->file, &list, &first_dir);
                                }
-                       else if (cmd_line[0] == '/' && isfile(cmd_line))
+                       else if (cmd_line[0] == G_DIR_SEPARATOR && isfile(cmd_line))
                                {
-                               parse_command_line_process_file(cmd_line, path, file,
-                                                               &list, collection_list, &first_dir);
+                               parse_command_line_process_file(cmd_line, &command_line->path, &command_line->file,
+                                                               &list, &command_line->collection_list, &first_dir);
                                }
                        else if (isfile(cmd_all))
                                {
-                               parse_command_line_process_file(cmd_all, path, file,
-                                                               &list, collection_list, &first_dir);
+                               parse_command_line_process_file(cmd_all, &command_line->path, &command_line->file,
+                                                               &list, &command_line->collection_list, &first_dir);
                                }
                        else if (strncmp(cmd_line, "--debug", 7) == 0 && (cmd_line[7] == '\0' || cmd_line[7] == '='))
                                {
@@ -947,36 +252,35 @@ static void parse_command_line(int argc, char *argv[], gchar **path, gchar **fil
                        else if (strcmp(cmd_line, "+t") == 0 ||
                                 strcmp(cmd_line, "--with-tools") == 0)
                                {
-                               options->layout.tools_float = FALSE;
-                               options->layout.tools_hidden = FALSE;
+                               command_line->tools_show = TRUE;
 
                                remote_list = g_list_append(remote_list, "+t");
                                }
                        else if (strcmp(cmd_line, "-t") == 0 ||
                                 strcmp(cmd_line, "--without-tools") == 0)
                                {
-                               options->layout.tools_hidden = TRUE;
+                               command_line->tools_hide = TRUE;
 
                                remote_list = g_list_append(remote_list, "-t");
                                }
                        else if (strcmp(cmd_line, "-f") == 0 ||
                                 strcmp(cmd_line, "--fullscreen") == 0)
                                {
-                               startup_full_screen = TRUE;
+                               command_line->startup_full_screen = TRUE;
                                }
                        else if (strcmp(cmd_line, "-s") == 0 ||
                                 strcmp(cmd_line, "--slideshow") == 0)
                                {
-                               startup_in_slideshow = TRUE;
+                               command_line->startup_in_slideshow = TRUE;
                                }
                        else if (strcmp(cmd_line, "-l") == 0 ||
                                 strcmp(cmd_line, "--list") == 0)
                                {
-                               startup_command_line_collection = TRUE;
+                               command_line->startup_command_line_collection = TRUE;
                                }
                        else if (strncmp(cmd_line, "--geometry=", 11) == 0)
                                {
-                               if (!*geometry) *geometry = g_strdup(cmd_line + 11);
+                               if (!command_line->geometry) command_line->geometry = g_strdup(cmd_line + 11);
                                }
                        else if (strcmp(cmd_line, "-r") == 0 ||
                                 strcmp(cmd_line, "--remote") == 0)
@@ -984,7 +288,7 @@ static void parse_command_line(int argc, char *argv[], gchar **path, gchar **fil
                                if (!remote_do)
                                        {
                                        remote_do = TRUE;
-                                       remote_list = remote_build_list(remote_list, argc, argv);
+                                       remote_list = remote_build_list(remote_list, argc - i, &argv[i], &remote_errors);
                                        }
                                }
                        else if (strcmp(cmd_line, "-rh") == 0 ||
@@ -995,24 +299,24 @@ static void parse_command_line(int argc, char *argv[], gchar **path, gchar **fil
                                }
                        else if (strcmp(cmd_line, "--blank") == 0)
                                {
-                               startup_blank = TRUE;
+                               command_line->startup_blank = TRUE;
                                }
                        else if (strcmp(cmd_line, "-v") == 0 ||
                                 strcmp(cmd_line, "--version") == 0)
                                {
-                               printf("%s %s\n", GQ_APPNAME, VERSION);
+                               printf_term("%s %s\n", GQ_APPNAME, VERSION);
                                exit(0);
                                }
                        else if (strcmp(cmd_line, "--alternate") == 0)
                                {
                                /* enable faster experimental algorithm */
-                               printf("Alternate similarity algorithm enabled\n");
+                               log_printf("Alternate similarity algorithm enabled\n");
                                image_sim_alternate_set(TRUE);
                                }
                        else if (strcmp(cmd_line, "-h") == 0 ||
                                 strcmp(cmd_line, "--help") == 0)
                                {
-                               printf("%s %s\n", GQ_APPNAME, VERSION);
+                               printf_term("%s %s\n", GQ_APPNAME, VERSION);
                                printf_term(_("Usage: %s [options] [path]\n\n"), GQ_APPNAME_LC);
                                print_term(_("valid options are:\n"));
                                print_term(_("  +t, --with-tools           force show of tools\n"));
@@ -1043,42 +347,71 @@ static void parse_command_line(int argc, char *argv[], gchar **path, gchar **fil
                                }
 
                        g_free(cmd_all);
+                       g_free(cmd_line);
                        i++;
                        }
                g_free(base_dir);
-               parse_out_relatives(*path);
-               parse_out_relatives(*file);
+               parse_out_relatives(command_line->path);
+               parse_out_relatives(command_line->file);
                }
 
        list = g_list_reverse(list);
 
-       if (!*path && first_dir)
+       if (!command_line->path && first_dir)
                {
-               *path = first_dir;
+               command_line->path = first_dir;
                first_dir = NULL;
 
-               parse_out_relatives(*path);
+               parse_out_relatives(command_line->path);
                }
        g_free(first_dir);
 
        if (remote_do)
                {
-               remote_control(argv[0], remote_list, *path, list, *collection_list);
+               if (remote_errors)
+                       {
+                       GList *work = remote_errors;
+                       
+                       printf_term(_("Invalid or ignored remote options: "));
+                       while (work)
+                               {
+                               gchar *opt = work->data;
+                                               
+                               printf_term("%s%s", (work == remote_errors) ? "" : ", ", opt);
+                               work = work->next;
+                               }
+
+                       printf_term(_("\nUse --remote-help for valid remote options.\n"));
+                       }
+
+               remote_control(argv[0], remote_list, command_line->path, list, command_line->collection_list);
                }
        g_list_free(remote_list);
 
        if (list && list->next)
                {
-               *cmd_list = list;
+               command_line->cmd_list = list;
                }
        else
                {
                filelist_free(list);
-               *cmd_list = NULL;
+               command_line->cmd_list = NULL;
+               }
+
+       if (command_line->startup_blank)
+               {
+               g_free(command_line->path);
+               command_line->path = NULL;
+               g_free(command_line->file);
+               command_line->file = NULL;
+               filelist_free(command_line->cmd_list);
+               command_line->cmd_list = NULL;
+               string_list_free(command_line->collection_list);
+               command_line->collection_list = NULL;
                }
 }
 
-static void parse_command_line_for_debug_option(int argc, char *argv[])
+static void parse_command_line_for_debug_option(gint argc, gchar *argv[])
 {
 #ifdef DEBUG
        const gchar *debug_option = "--debug";
@@ -1120,11 +453,19 @@ static void parse_command_line_for_debug_option(int argc, char *argv[])
 
 #define RC_HISTORY_NAME "history"
 
+static void setup_env_path(void)
+{
+       const gchar *old_path = g_getenv("PATH");
+       gchar *path = g_strconcat(GQ_BIN_DIR, ":", old_path, NULL);
+        g_setenv("PATH", path, TRUE);
+       g_free(path);
+}
+
 static void keys_load(void)
 {
        gchar *path;
 
-       path = g_strconcat(homedir(), "/", GQ_RC_DIR, "/", RC_HISTORY_NAME, NULL);
+       path = g_build_filename(get_rc_dir(), RC_HISTORY_NAME, NULL);
        history_list_load(path);
        g_free(path);
 }
@@ -1133,112 +474,158 @@ static void keys_save(void)
 {
        gchar *path;
 
-       path = g_strconcat(homedir(), "/", GQ_RC_DIR, "/", RC_HISTORY_NAME, NULL);
+       path = g_build_filename(get_rc_dir(), RC_HISTORY_NAME, NULL);
        history_list_save(path);
        g_free(path);
 }
 
-static void check_for_home_path(gchar *path)
+static void mkdir_if_not_exists(const gchar *path)
 {
-       gchar *buf;
+       if (isdir(path)) return;
 
-       buf = g_strconcat(homedir(), "/", path, NULL);
-       if (!isdir(buf))
-               {
-               printf_term(_("Creating %s dir:%s\n"), GQ_APPNAME, buf);
+       log_printf(_("Creating %s dir:%s\n"), GQ_APPNAME, path);
 
-               if (!mkdir_utf8(buf, 0755))
-                       {
-                       printf_term(_("Could not create dir:%s\n"), buf);
-                       }
+       if (!recursive_mkdir_if_not_exists(path, 0755))
+               {
+               log_printf(_("Could not create dir:%s\n"), path);
                }
-       g_free(buf);
 }
 
-static void setup_default_options(void)
+
+/* We add to duplicate and modify  gtk_accel_map_print() and gtk_accel_map_save()
+ * to improve the reliability in special cases (especially when disk is full)
+ * These functions are now using secure saving stuff.
+ */
+static void gq_accel_map_print(
+                   gpointer    data,
+                   const gchar *accel_path,
+                   guint       accel_key,
+                   GdkModifierType accel_mods,
+                   gboolean    changed)
 {
-       gchar *path;
-       gint i;
+       GString *gstring = g_string_new(changed ? NULL : "; ");
+       SecureSaveInfo *ssi = data;
+       gchar *tmp, *name;
 
-       for (i = 0; i < GQ_EDITOR_SLOTS; i++)
-               {
-               options->editor_name[i] = NULL;
-               options->editor_command[i] = NULL;
-               }
+       g_string_append(gstring, "(gtk_accel_path \"");
 
-       editor_reset_defaults();
+       tmp = g_strescape(accel_path, NULL);
+       g_string_append(gstring, tmp);
+       g_free(tmp);
 
-       bookmark_add_default(_("Home"), homedir());
-       path = concat_dir_and_file(homedir(), "Desktop");
-       bookmark_add_default(_("Desktop"), path);
-       g_free(path);
-       path = concat_dir_and_file(homedir(), GQ_RC_DIR_COLLECTIONS);
-       bookmark_add_default(_("Collections"), path);
-       g_free(path);
+       g_string_append(gstring, "\" \"");
 
-       g_free(options->file_ops.safe_delete_path);
-       options->file_ops.safe_delete_path = concat_dir_and_file(homedir(), GQ_RC_DIR_TRASH);
+       name = gtk_accelerator_name(accel_key, accel_mods);
+       tmp = g_strescape(name, NULL);
+       g_free(name);
+       g_string_append(gstring, tmp);
+       g_free(tmp);
 
-       for (i = 0; i < COLOR_PROFILE_INPUTS; i++)
-               {
-               options->color_profile.input_file[i] = NULL;
-               options->color_profile.input_name[i] = NULL;
-               }
+       g_string_append(gstring, "\")\n");
+
+       secure_fwrite(gstring->str, sizeof(*gstring->str), gstring->len, ssi);
 
-       set_default_image_overlay_template_string(options);
-       sidecar_ext_add_defaults();
-       options->layout.order = g_strdup("123");
+       g_string_free(gstring, TRUE);
 }
 
-static void exit_program_final(void)
+static gboolean gq_accel_map_save(const gchar *path)
 {
-       gchar *path;
        gchar *pathl;
-       LayoutWindow *lw = NULL;
+       SecureSaveInfo *ssi;
+       GString *gstring;
 
-       remote_close(remote_connection);
+       pathl = path_from_utf8(path);
+       ssi = secure_open(pathl);
+       g_free(pathl);
+       if (!ssi)
+               {
+               log_printf(_("error saving file: %s\n"), path);
+               return FALSE;
+               }
+       
+       gstring = g_string_new("; ");
+       if (g_get_prgname())
+               g_string_append(gstring, g_get_prgname());
+       g_string_append(gstring, " GtkAccelMap rc-file         -*- scheme -*-\n");
+       g_string_append(gstring, "; this file is an automated accelerator map dump\n");
+       g_string_append(gstring, ";\n");
 
-       collect_manager_flush();
+       secure_fwrite(gstring->str, sizeof(*gstring->str), gstring->len, ssi);
 
-       if (layout_valid(&lw))
+       g_string_free(gstring, TRUE);
+
+       gtk_accel_map_foreach((gpointer) ssi, gq_accel_map_print);
+
+       if (secure_close(ssi))
                {
-               options->layout.main_window.maximized =  window_maximized(lw->window);
-               if (!options->layout.main_window.maximized)
-                       {
-                       layout_geometry_get(NULL, &options->layout.main_window.x, &options->layout.main_window.y,
-                                           &options->layout.main_window.w, &options->layout.main_window.h);
-                       }
-               options->image_overlay.common.enabled = image_osd_get(lw->image, NULL);
+               log_printf(_("error saving file: %s\nerror: %s\n"), path,
+                          secsave_strerror(secsave_errno));
+               return FALSE;
                }
 
-       layout_geometry_get_dividers(NULL, &options->layout.main_window.hdivider_pos, &options->layout.main_window.vdivider_pos);
+       return TRUE;
+}
 
-       layout_views_get(NULL, &options->layout.dir_view_type, &options->layout.file_view_type);
+static gchar *accep_map_filename(void)
+{
+       return g_build_filename(get_rc_dir(), "accels", NULL);
+}
 
-       options->layout.show_thumbnails = layout_thumb_get(NULL);
-       options->layout.show_marks = layout_marks_get(NULL);
+static void accel_map_save(void)
+{
+       gchar *path;
 
-       layout_sort_get(NULL, &options->file_sort.method, &options->file_sort.ascending);
+       path = accep_map_filename();
+       gq_accel_map_save(path);
+       g_free(path);
+}
 
-       layout_geometry_get_tools(NULL, &options->layout.float_window.x, &options->layout.float_window.y,
-                                 &options->layout.float_window.w, &options->layout.float_window.h, &options->layout.float_window.vdivider_pos);
-       layout_tools_float_get(NULL, &options->layout.tools_float, &options->layout.tools_hidden);
-       options->layout.toolbar_hidden = layout_toolbar_hidden(NULL);
+static void accel_map_load(void)
+{
+       gchar *path;
+       gchar *pathl;
 
-       options->color_profile.enabled = layout_image_color_profile_get_use(NULL);
-       layout_image_color_profile_get(NULL,
-                                      &options->color_profile.input_type,
-                                      &options->color_profile.screen_type,
-                                      &options->color_profile.use_image);
+       path = accep_map_filename();
+       pathl = path_from_utf8(path);
+       gtk_accel_map_load(pathl);
+       g_free(pathl);
+       g_free(path);
+}
 
-       save_options();
-       keys_save();
+static void gtkrc_load(void)
+{
+       gchar *path;
+       gchar *pathl;
 
-       path = g_strconcat(homedir(), "/", GQ_RC_DIR, "/accels", NULL);
+       /* If a gtkrc file exists in the rc directory, add it to the
+        * list of files to be parsed at the end of gtk_init() */
+       path = g_build_filename(get_rc_dir(), "gtkrc", NULL);
        pathl = path_from_utf8(path);
-       gtk_accel_map_save(pathl);
+       if (access(pathl, R_OK) == 0)
+               gtk_rc_add_default_file(pathl);
        g_free(pathl);
        g_free(path);
+}
+
+static void exit_program_final(void)
+{
+       LayoutWindow *lw = NULL;
+
+        /* make sure that external editors are loaded, we would save incomplete configuration otherwise */
+       layout_editors_reload_finish();
+
+       remote_close(remote_connection);
+
+       collect_manager_flush();
+
+       save_options(options);
+       keys_save();
+       accel_map_save();
+
+       if (layout_valid(&lw))
+               {
+               layout_free(lw);
+               }
 
        gtk_main_quit();
 }
@@ -1281,7 +668,7 @@ static gint exit_confirm_dlg(void)
 
        msg = g_strdup_printf("%s - %s", GQ_APPNAME, _("exit"));
        exit_dialog = generic_dialog_new(msg,
-                               GQ_WMCLASS, "exit", parent, FALSE,
+                               "exit", parent, FALSE,
                                exit_confirm_cancel_cb, NULL);
        g_free(msg);
        msg = g_strdup_printf(_("Quit %s"), GQ_APPNAME);
@@ -1295,112 +682,164 @@ static gint exit_confirm_dlg(void)
        return TRUE;
 }
 
+static void exit_program_write_metadata_cb(gint success, const gchar *dest_path, gpointer data)
+{
+       if (success) exit_program();
+}
+
 void exit_program(void)
 {
        layout_image_full_screen_stop(NULL);
 
+       if (metadata_write_queue_confirm(FALSE, exit_program_write_metadata_cb, NULL)) return;
+
        if (exit_confirm_dlg()) return;
 
        exit_program_final();
 }
 
-int main (int argc, char *argv[])
+/* This code is supposed to handle situation when a file mmaped by image_loader
+ * or by exif loader is truncated by some other process.
+ * This is probably not completely correct according to posix, because
+ * mmap is not in the list of calls that can be used safely in signal handler,
+ * but anyway, the handler is called in situation when the application would
+ * crash otherwise.
+ * Ideas for improvement are welcome ;)
+ */
+/* FIXME: this probably needs some better ifdefs. Please report any compilation problems */
+
+#if defined(SIGBUS) && defined(SA_SIGINFO)
+static void sigbus_handler_cb(int signum, siginfo_t *info, void *context)
+{
+       unsigned long pagesize = sysconf(_SC_PAGE_SIZE);
+       DEBUG_1("SIGBUS %p", info->si_addr);
+       mmap((void *)(((unsigned long)info->si_addr / pagesize) * pagesize), pagesize, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
+}
+#endif
+
+static void setup_sigbus_handler(void)
+{
+#if defined(SIGBUS) && defined(SA_SIGINFO)
+       struct sigaction sigbus_action;
+       sigfillset(&sigbus_action.sa_mask);
+       sigbus_action.sa_sigaction = sigbus_handler_cb;
+       sigbus_action.sa_flags = SA_SIGINFO;
+
+       sigaction(SIGBUS, &sigbus_action, NULL);
+#endif
+}
+
+gint main(gint argc, gchar *argv[])
 {
-       LayoutWindow *lw;
-       gchar *path = NULL;
-       gchar *cmd_path = NULL;
-       gchar *cmd_file = NULL;
-       GList *cmd_list = NULL;
-       GList *collection_list = NULL;
        CollectionData *first_collection = NULL;
-       gchar *geometry = NULL;
        gchar *buf;
-       gchar *bufl;
+       CollectionData *cd = NULL;
+
+#ifdef HAVE_GTHREAD
+       g_thread_init(NULL);
+       gdk_threads_init();
+       gdk_threads_enter();
 
+#endif
+       
        /* init execution time counter (debug only) */
        init_exec_time();
 
        /* setup locale, i18n */
-       gtk_set_locale();
+       setlocale(LC_ALL, "");
+
+#ifdef ENABLE_NLS
        bindtextdomain(PACKAGE, GQ_LOCALEDIR);
        bind_textdomain_codeset(PACKAGE, "UTF-8");
        textdomain(PACKAGE);
+#endif
 
+       exif_init();
+       
        /* setup random seed for random slideshow */
        srand(time(NULL));
 
-#if 1
-       printf("%s %s, This is an alpha release.\n", GQ_APPNAME, VERSION);
-#endif
-       parse_command_line_for_debug_option(argc, argv);
+       setup_sigbus_handler();
 
-       options = init_options(NULL);
-       setup_default_options();
-       load_options();
+       /* register global notify functions */
+       file_data_register_notify_func(cache_notify_cb, NULL, NOTIFY_PRIORITY_HIGH);
+       file_data_register_notify_func(thumb_notify_cb, NULL, NOTIFY_PRIORITY_HIGH);
+       file_data_register_notify_func(histogram_notify_cb, NULL, NOTIFY_PRIORITY_HIGH);
+       file_data_register_notify_func(collect_manager_notify_cb, NULL, NOTIFY_PRIORITY_LOW);
+       file_data_register_notify_func(metadata_notify_cb, NULL, NOTIFY_PRIORITY_LOW);
+       
 
-       parse_command_line(argc, argv, &cmd_path, &cmd_file, &cmd_list, &collection_list, &geometry);
+       gtkrc_load();
 
+       parse_command_line_for_debug_option(argc, argv);
+       DEBUG_1("%s main: gtk_init", get_exec_time());
+#ifdef HAVE_CLUTTER
+       if (gtk_clutter_init(&argc, &argv) != CLUTTER_INIT_SUCCESS)
+               {
+               log_printf("Can't initialize clutter-gtk.\n");
+               exit(1);
+               }
+#else
        gtk_init(&argc, &argv);
+#endif
 
        if (gtk_major_version < GTK_MAJOR_VERSION ||
            (gtk_major_version == GTK_MAJOR_VERSION && gtk_minor_version < GTK_MINOR_VERSION) )
                {
-               printf_term("!!! This is a friendly warning.\n");
-               printf_term("!!! The version of GTK+ in use now is older than when %s was compiled.\n", GQ_APPNAME);
-               printf_term("!!!  compiled with GTK+-%d.%d\n", GTK_MAJOR_VERSION, GTK_MINOR_VERSION);
-               printf_term("!!!   running with GTK+-%d.%d\n", gtk_major_version, gtk_minor_version);
-               printf_term("!!! %s may quit unexpectedly with a relocation error.\n", GQ_APPNAME);
+               log_printf("!!! This is a friendly warning.\n");
+               log_printf("!!! The version of GTK+ in use now is older than when %s was compiled.\n", GQ_APPNAME);
+               log_printf("!!!  compiled with GTK+-%d.%d\n", GTK_MAJOR_VERSION, GTK_MINOR_VERSION);
+               log_printf("!!!   running with GTK+-%d.%d\n", gtk_major_version, gtk_minor_version);
+               log_printf("!!! %s may quit unexpectedly with a relocation error.\n", GQ_APPNAME);
                }
 
-       check_for_home_path(GQ_RC_DIR);
-       check_for_home_path(GQ_RC_DIR_COLLECTIONS);
-       check_for_home_path(GQ_CACHE_RC_THUMB);
-       check_for_home_path(GQ_CACHE_RC_METADATA);
+       DEBUG_1("%s main: pixbuf_inline_register_stock_icons", get_exec_time());
+       pixbuf_inline_register_stock_icons();
+
+       DEBUG_1("%s main: setting default options before commandline handling", get_exec_time());
+       options = init_options(NULL);
+       setup_default_options(options);
+
+       DEBUG_1("%s main: parse_command_line", get_exec_time());
+       parse_command_line(argc, argv);
+
+       DEBUG_1("%s main: mkdir_if_not_exists", get_exec_time());
+       /* these functions don't depend on config file */
+       mkdir_if_not_exists(get_rc_dir());
+       mkdir_if_not_exists(get_collections_dir());
+       mkdir_if_not_exists(get_thumbnails_cache_dir());
+       mkdir_if_not_exists(get_metadata_cache_dir());
+
+       setup_env_path();
 
        keys_load();
-       filter_add_defaults();
-       filter_rebuild();
+       accel_map_load();
 
-       buf = g_strconcat(homedir(), "/", GQ_RC_DIR, "/accels", NULL);
-       bufl = path_from_utf8(buf);
-       gtk_accel_map_load(bufl);
-       g_free(bufl);
-       g_free(buf);
+       /* restore session from the config file */
 
-       if (startup_blank)
-               {
-               g_free(cmd_path);
-               cmd_path = NULL;
-               g_free(cmd_file);
-               cmd_file = NULL;
-               filelist_free(cmd_list);
-               cmd_list = NULL;
-               string_list_free(collection_list);
-               collection_list = NULL;
-
-               path = NULL;
-               }
-       else if (cmd_path)
-               {
-               path = g_strdup(cmd_path);
-               }
-       else if (options->startup_path_enable && options->startup_path && isdir(options->startup_path))
+
+       DEBUG_1("%s main: load_options", get_exec_time());
+       if (!load_options(options))
                {
-               path = g_strdup(options->startup_path);
+               /* load_options calls these functions after it parses global options, we have to call it here if it fails */
+               filter_add_defaults();
+               filter_rebuild();
                }
-       else
+
+       /* handle missing config file and commandline additions*/
+       if (!layout_window_list)
                {
-               path = get_current_dir();
+               /* broken or no config file */
+               layout_new_from_config(NULL, NULL, TRUE);
                }
 
-       lw = layout_new_with_geometry(NULL, options->layout.tools_float, options->layout.tools_hidden, geometry);
-       layout_sort_set(lw, options->file_sort.method, options->file_sort.ascending);
+       layout_editors_reload_start();
 
-       if (collection_list && !startup_command_line_collection)
+       if (command_line->collection_list && !command_line->startup_command_line_collection)
                {
                GList *work;
 
-               work = collection_list;
+               work = command_line->collection_list;
                while (work)
                        {
                        CollectWindow *cw;
@@ -1414,13 +853,12 @@ int main (int argc, char *argv[])
                        }
                }
 
-       if (cmd_list ||
-           (startup_command_line_collection && collection_list))
+       if (command_line->cmd_list ||
+           (command_line->startup_command_line_collection && command_line->collection_list))
                {
-               CollectionData *cd;
                GList *work;
 
-               if (startup_command_line_collection)
+               if (command_line->startup_command_line_collection)
                        {
                        CollectWindow *cw;
 
@@ -1430,7 +868,6 @@ int main (int argc, char *argv[])
                else
                        {
                        cd = collection_new("");        /* if we pass NULL, untitled counter is falsely increm. */
-                       command_collection = cd;
                        }
 
                g_free(cd->path);
@@ -1440,22 +877,21 @@ int main (int argc, char *argv[])
 
                collection_path_changed(cd);
 
-               work = cmd_list;
+               work = command_line->cmd_list;
                while (work)
                        {
-                       collection_add(cd, file_data_new_simple((gchar *)work->data), FALSE);
+                       collection_add(cd, (FileData *)work->data, FALSE);
                        work = work->next;
                        }
 
-               work = collection_list;
+               work = command_line->collection_list;
                while (work)
                        {
                        collection_load(cd, (gchar *)work->data, COLLECTION_LOAD_APPEND);
                        work = work->next;
                        }
 
-               layout_set_path(lw, path);
-               if (cd->list) layout_image_set_collection(lw, cd, cd->list->data);
+               if (cd->list) layout_image_set_collection(NULL, cd, cd->list->data);
 
                /* mem leak, we never unref this collection when !startup_command_line_collection
                 * (the image view of the main window does not hold a ref to the collection)
@@ -1466,37 +902,21 @@ int main (int argc, char *argv[])
                 */
 
                }
-       else if (cmd_file)
+       else if (first_collection)
                {
-               layout_set_path(lw, cmd_file);
+               layout_image_set_collection(NULL, first_collection,
+                                           collection_get_first(first_collection));
                }
-       else
-               {
-               layout_set_path(lw, path);
-               if (first_collection)
-                       {
-                       layout_image_set_collection(lw, first_collection,
-                                                   collection_get_first(first_collection));
-                       }
-               }
-
-       image_osd_set(lw->image, (options->image_overlay.common.show_at_startup || options->image_overlay.common.enabled) ? OSD_SHOW_INFO : OSD_SHOW_NOTHING);
-
-       g_free(geometry);
-       g_free(cmd_path);
-       g_free(cmd_file);
-       filelist_free(cmd_list);
-       string_list_free(collection_list);
-       g_free(path);
 
-       if (startup_full_screen) layout_image_full_screen_start(lw);
-       if (startup_in_slideshow) layout_image_slideshow_start(lw);
-
-       buf = g_strconcat(homedir(), "/", GQ_RC_DIR, "/.command", NULL);
-       remote_connection = remote_server_open(buf);
-       remote_server_subscribe(remote_connection, remote_cb, NULL);
+       buf = g_build_filename(get_rc_dir(), ".command", NULL);
+       remote_connection = remote_server_init(buf, cd);
        g_free(buf);
-
+       
+       DEBUG_1("%s main: gtk_main", get_exec_time());
        gtk_main();
+#ifdef HAVE_GTHREAD
+       gdk_threads_leave();
+#endif
        return 0;
 }
+/* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */