merging fifo support back in :/ experimental! (doesnt work)
[uzbl-mobile] / uzbl.c
1 // Original code taken from the example webkit-gtk+ application. see notice below.
2 // Modified code is licensed under the GPL 3.  See LICENSE file.
3
4
5 /*
6  * Copyright (C) 2006, 2007 Apple Inc.
7  * Copyright (C) 2007 Alp Toker <alp@atoker.com>
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
19  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
22  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
26  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31
32 #define LENGTH(x) (sizeof x / sizeof x[0])
33
34 #include <gtk/gtk.h>
35 #include <gdk/gdkx.h>
36 #include <gdk/gdkkeysyms.h>
37 #include <webkit/webkit.h>
38 #include <pthread.h>
39 #include <stdio.h>
40 #include <string.h>
41 #include <sys/stat.h>
42 #include <sys/types.h>
43 #include <unistd.h>
44 #include <stdlib.h>
45 #include <errno.h>
46 #include <string.h>
47 #include <sys/types.h>
48 #include <fcntl.h>
49 #include <sys/socket.h>
50 #include <sys/un.h>
51
52 /* housekeeping / internal variables */
53 static GtkWidget* main_window;
54 static GtkWidget* mainbar;
55 static GtkWidget* mainbar_label;
56 static WebKitWebView* web_view;
57 static gchar* main_title;
58 static gchar selected_url[500] = "\0";
59 static gint load_progress;
60 static Window xwin = 0;
61 static char fifo_path[64];
62 static char socket_path[108];
63
64 /* state variables (initial values coming from command line arguments but may be changed later) */
65 static gchar*   uri         = NULL;
66 static gchar*   config_file = NULL;
67 static gchar    config_file_path[500];
68 static gboolean verbose     = FALSE;
69
70 /* settings from config: group behaviour */
71 static gchar*   history_handler    = NULL;
72 static gchar*   fifo_dir           = NULL;
73 static gchar*   socket_dir         = NULL;
74 static gchar*   download_handler   = NULL;
75 static gboolean always_insert_mode = FALSE;
76 static gboolean show_status        = FALSE;
77 static gboolean insert_mode        = FALSE;
78 static gboolean status_top         = FALSE;
79 static gchar*   modkey             = NULL;
80 static guint    modmask            = 0;
81 static gchar*   home_page          = NULL;
82
83 /* settings from config: group bindings_internal */
84 static GHashTable *internal_bindings;
85
86 /* settings from config: group bindings_external */
87 static GHashTable *external_bindings;
88
89 /* command list */
90 static GHashTable *commands;
91
92 /* commandline arguments (set initial values for the state variables) */
93 static GOptionEntry entries[] =
94 {
95     { "uri",     'u', 0, G_OPTION_ARG_STRING, &uri,         "Uri to load", NULL },
96     { "verbose", 'v', 0, G_OPTION_ARG_NONE,   &verbose,     "Be verbose",  NULL },
97     { "config",  'c', 0, G_OPTION_ARG_STRING, &config_file, "Config file", NULL },
98     { NULL,      0, 0, 0, NULL, NULL, NULL }
99 };
100
101 /* for internal list of commands */
102 typedef struct
103 {
104     gpointer command;
105     void (*func_1_param)(WebKitWebView*);
106     void (*func_2_params)(WebKitWebView*, const gchar *);
107 } Command;
108
109 /* XDG stuff */
110 char *XDG_CONFIG_HOME_default[256];
111 char *XDG_CONFIG_DIRS_default = "/etc/xdg";
112
113 static void
114 update_title (GtkWindow* window);
115
116 static void
117 load_uri ( WebKitWebView * web_view, const gchar * uri);
118
119 static void
120 new_window_load_uri (const gchar * uri);
121
122 static void
123 go_home ( WebKitWebView * web_view);
124
125 static void
126 close_uzbl ( WebKitWebView * web_view);
127
128 static gboolean
129 run_command(const char *command, const char *args);
130
131
132 /* --- CALLBACKS --- */
133
134 static gboolean
135 new_window_cb (WebKitWebView *web_view, WebKitWebFrame *frame, WebKitNetworkRequest *request, WebKitWebNavigationAction *navigation_action, WebKitWebPolicyDecision *policy_decision, gpointer user_data) {
136     (void) web_view;
137     (void) frame;
138     (void) navigation_action;
139     (void) policy_decision;
140     (void) user_data;
141     const gchar* uri = webkit_network_request_get_uri (request);
142     printf("New window requested -> %s \n", uri);
143     new_window_load_uri(uri);
144     return (FALSE);
145 }
146
147 WebKitWebView*
148 create_web_view_cb (WebKitWebView  *web_view, WebKitWebFrame *frame, gpointer user_data) {
149     (void) web_view;
150     (void) frame;
151     (void) user_data;
152     if (selected_url[0]!=0) {
153         printf("\nNew web view -> %s\n",selected_url);
154         new_window_load_uri(selected_url);
155     } else {
156         printf("New web view -> %s\n","Nothing to open, exiting");
157     }
158     return (NULL);
159 }
160
161 static gboolean
162 download_cb (WebKitWebView *web_view, GObject *download, gpointer user_data) {
163     (void) web_view;
164     (void) user_data;
165     if (download_handler) {
166         const gchar* uri = webkit_download_get_uri ((WebKitDownload*)download);
167         printf("Download -> %s\n",uri);
168         run_command(download_handler, uri);
169     }
170     return (FALSE);
171 }
172
173 static void
174 go_back_cb (WebKitWebView* page) {
175     (void) page;
176     webkit_web_view_go_back (web_view);
177 }
178
179 static void
180 go_forward_cb (WebKitWebView* page) {
181     (void) page;
182     webkit_web_view_go_forward (web_view);
183 }
184
185 static void
186 toggle_status_cb (WebKitWebView* page) {
187     (void) page;
188     if (show_status) {
189         gtk_widget_hide(mainbar);
190     } else {
191         gtk_widget_show(mainbar);
192     }
193     show_status = !show_status;
194     update_title (GTK_WINDOW (main_window));
195 }
196
197 static void
198 link_hover_cb (WebKitWebView* page, const gchar* title, const gchar* link, gpointer data) {
199     (void) page;
200     (void) title;
201     (void) data;    
202     //ADD HOVER URL TO WINDOW TITLE
203     selected_url[0] = '\0';
204     if (link) {
205         strcpy (selected_url, link);
206     }
207     update_title (GTK_WINDOW (main_window));
208 }
209
210 static void
211 title_change_cb (WebKitWebView* web_view, WebKitWebFrame* web_frame, const gchar* title, gpointer data) {
212     (void) web_view;
213     (void) web_frame;
214     (void) data;
215     if (main_title)
216         g_free (main_title);
217     main_title = g_strdup (title);
218     update_title (GTK_WINDOW (main_window));
219 }
220
221 static void
222 progress_change_cb (WebKitWebView* page, gint progress, gpointer data) {
223     (void) page;
224     (void) data;
225     load_progress = progress;
226     update_title (GTK_WINDOW (main_window));
227 }
228
229 static void
230 load_commit_cb (WebKitWebView* page, WebKitWebFrame* frame, gpointer data) {
231     (void) page;
232     (void) data;
233     free (uri);
234     GString* newuri = g_string_new (webkit_web_frame_get_uri (frame));
235     uri = g_string_free (newuri, FALSE);
236 }
237
238 static void
239 destroy_cb (GtkWidget* widget, gpointer data) {
240     (void) widget;
241     (void) data;
242     gtk_main_quit ();
243 }
244
245 static void
246 log_history_cb () {
247    if (history_handler) {
248        time_t rawtime;
249        struct tm * timeinfo;
250        char date [80];
251        time ( &rawtime );
252        timeinfo = localtime ( &rawtime );
253        strftime (date, 80, "%Y-%m-%d %H:%M:%S", timeinfo);
254        GString* args = g_string_new ("");
255        g_string_printf (args, "'%s' '%s' '%s'", uri, "TODO:page title here", date);
256        run_command(history_handler, args->str);
257        g_string_free (args, TRUE);
258    }
259 }
260                                                                                                                                                              
261 /* -- command to callback/function map for things we cannot attach to any signals */
262 // TODO: reload, home, quit
263
264 static Command cmdlist[] =
265 {
266     { "back",          &go_back_cb,                    NULL },
267     { "forward",       &go_forward_cb,                 NULL },
268     { "refresh",       &webkit_web_view_reload,        NULL }, //Buggy
269     { "stop",          &webkit_web_view_stop_loading,  NULL },
270     { "zoom_in",       &webkit_web_view_zoom_in,       NULL }, //Can crash (when max zoom reached?).
271     { "zoom_out",      &webkit_web_view_zoom_out,      NULL },
272     { "uri",           (void *) NULL,             &load_uri },
273     { "toggle_status", &toggle_status_cb,              NULL },
274     { "home"         , &go_home,                       NULL },
275     { "exit"         , &close_uzbl,                    NULL },
276     { NULL,            NULL,                           NULL }
277 //{ "get uri",  &webkit_web_view_get_uri},
278 };
279
280 static void
281 commands_hash(void)
282 {
283   unsigned int i = 0;
284   commands = g_hash_table_new(g_str_hash, g_str_equal);
285   
286   while(cmdlist[i].command != NULL){
287     g_hash_table_insert(commands, cmdlist[i].command, &cmdlist[i]);
288     i++;
289   }
290 }
291
292 /* -- CORE FUNCTIONS -- */
293
294 static bool
295 file_exists (const char * filename) {
296     FILE *file = fopen (filename, "r");
297     if (file) {
298         fclose (file);
299         return true;
300     }
301     return false;
302 }
303
304 static void
305 load_uri (WebKitWebView * web_view, const gchar * uri) {
306     if (uri != NULL) {
307         GString* newuri = g_string_new (uri);
308         if (g_strrstr (uri, "://") == NULL)
309             g_string_prepend (newuri, "http://"); 
310         webkit_web_view_load_uri (web_view, newuri->str);
311         g_string_free (newuri, TRUE);
312     }
313 }
314
315 static void
316 new_window_load_uri (const gchar * uri) {
317     GString* to_execute = g_string_new ("");
318     if (!config_file) {
319         g_string_printf (to_execute, "uzbl --uri '%s'", uri);
320     } else {
321         g_string_printf (to_execute, "uzbl --uri '%s' --config '%s'", uri, config_file);
322     }
323     printf("Spawning %s\n",to_execute->str);
324     if (!g_spawn_command_line_async (to_execute->str, NULL)) {
325         if (!config_file) {
326             g_string_printf (to_execute, "./uzbl --uri '%s'", uri);
327         } else {
328             g_string_printf (to_execute, "./uzbl --uri '%s' --config '%s'", uri, config_file);
329         }
330         printf("Spawning %s\n",to_execute->str);
331         g_spawn_command_line_async (to_execute->str, NULL);
332     }
333     g_string_free (to_execute, TRUE);
334 }
335
336 static void
337 go_home (WebKitWebView * web_view) {
338     if (home_page)
339         webkit_web_view_load_uri (web_view, home_page);
340 }
341
342 static void
343 close_uzbl (WebKitWebView * web_view) {
344     (void) web_view;
345     gtk_main_quit ();
346 }
347
348 // make sure to put '' around args, so that if there is whitespace we can still keep arguments together.
349 static gboolean
350 run_command(const char *command, const char *args) {
351    //command <uzbl conf> <uzbl pid> <uzbl win id> <uzbl fifo file> <uzbl socket file> [args]
352     GString* to_execute = g_string_new ("");
353     gboolean result;
354     g_string_printf (to_execute, "%s '%s' '%i' '%i' '%s' '%s'", command, config_file, (int) getpid() , (int) xwin, fifo_path, socket_path);
355     if(args) {
356         g_string_append_printf (to_execute, " %s", args);
357     }
358     result = g_spawn_command_line_async (to_execute->str, NULL);
359     printf("Called %s.  Result: %s\n", to_execute->str, (result ? "TRUE" : "FALSE" ));
360     g_string_free (to_execute, TRUE);
361     return result;
362 }
363
364 static void
365 parse_command(const char *cmd) {
366     Command *c = NULL;
367     char buffer[512];
368     strcpy (buffer, cmd);
369     char * saveptr;
370     char * command_name  = strtok_r (buffer, " ", &saveptr);
371     gchar * command_param = strtok_r (NULL,  " ,", &saveptr);
372   
373     if((c = g_hash_table_lookup(commands, command_name)) != NULL){
374         if (c->func_2_params != NULL) {
375             if (command_param != NULL) {
376               printf ("command executing: \"%s %s\"\n", command_name, command_param);
377               c->func_2_params (web_view, command_param);
378             } else {
379                 if (c->func_1_param != NULL) {
380                   printf ("command executing: \"%s\"\n", command_name);
381                   c->func_1_param (web_view);
382                 } else 
383                     fprintf (stderr, "command needs a parameter. \"%s\" is not complete\n", command_name);
384             }
385         } else if (c->func_1_param != NULL) {
386             printf ("command executing: \"%s\"\n", command_name);
387             c->func_1_param (web_view);
388         }
389     } else
390         fprintf (stderr, "command \"%s\" not understood. ignoring.\n", cmd);
391 }
392
393 static void
394 control_fifo(GIOChannel *fd) {
395     gchar *ctl_line;
396     gsize ctl_line_length, term_pos;
397
398     if(!fd)
399        return;
400
401     g_io_channel_read_line(fd, &ctl_line, &ctl_line_length, &term_pos, NULL); //TODO: support partial writes
402     ctl_line[term_pos] ='\0';
403     parse_command(ctl_line);
404      
405     return;
406 }
407
408 static void
409 create_fifo() {
410     GIOChannel *chan = NULL;
411
412     if (fifo_dir) {
413         sprintf (fifo_path, "%s/uzbl_fifo_%d", fifo_dir, (int) xwin);
414     } else {
415         sprintf (fifo_path, "/tmp/uzbl_fifo_%d", (int) xwin);
416     }
417     printf ("Control fifo opened in %s\n", fifo_path);
418     if (mkfifo (fifo_path, 0666) == -1) {
419         printf ("Possible error creating fifo\n");
420     }
421
422     if( (chan = g_io_channel_new_file((gchar *) fifo_path, "r+", NULL)) )
423         g_io_add_watch(chan, G_IO_IN|G_IO_HUP, (GIOFunc) control_fifo, chan);
424     return;
425 }
426
427 static void
428 *control_socket() {
429     if (socket_dir) {
430         sprintf (socket_path, "%s/uzbl_socket_%d", socket_dir, (int) xwin);
431     } else {
432         sprintf (socket_path, "/tmp/uzbl_socket_%d", (int) xwin);
433     }
434  
435     int sock, clientsock, len;
436     unsigned int t;
437     struct sockaddr_un local, remote;
438
439     sock = socket (AF_UNIX, SOCK_STREAM, 0);
440
441     local.sun_family = AF_UNIX;
442     strcpy (local.sun_path, socket_path);
443     unlink (local.sun_path);
444
445     len = strlen (local.sun_path) + sizeof (local.sun_family);
446     bind (sock, (struct sockaddr *) &local, len);
447
448     if (errno == -1) {
449         printf ("A problem occurred when opening a socket in %s\n", socket_path);
450     } else {
451         printf ("Control socket opened in %s\n", socket_path);
452     }
453
454     listen (sock, 5);
455  
456     char buffer[512];
457     char temp[128];
458     int done, n;
459     for(;;) {
460         memset (buffer, 0, sizeof (buffer));
461
462         t          = sizeof (remote);
463         clientsock = accept (sock, (struct sockaddr *) &remote, &t);
464         printf ("Connected to client\n");
465
466         done = 0;
467         do {
468             memset (temp, 0, sizeof (temp));
469             n = recv (clientsock, temp, 128, 0);
470             if (n == 0) {
471                 buffer[strlen (buffer)] = '\0';
472                 done = 1;
473             }
474
475             if (!done)
476                 strcat (buffer, temp);
477         } while (!done);
478
479         if (strcmp (buffer, "\n") < 0) {
480             buffer[strlen (buffer) - 1] = '\0';
481         } else {
482           buffer[strlen (buffer)] = '\0';
483         }
484
485         parse_command (buffer);
486         close (clientsock);
487     }
488     
489     return NULL;
490
491  
492 static void
493 setup_threading () {
494     pthread_t control_thread;
495     pthread_create(&control_thread, NULL, control_socket, NULL);
496 }
497
498 static void
499 update_title (GtkWindow* window) {
500     GString* string_long = g_string_new ("");
501     GString* string_short = g_string_new ("");
502     if (!always_insert_mode)
503         g_string_append (string_long, (insert_mode ? "[I] " : "[C] "));
504     g_string_append (string_long, main_title);
505     g_string_append (string_short, main_title);
506     g_string_append (string_long, " - Uzbl browser");
507     g_string_append (string_short, " - Uzbl browser");
508     if (load_progress < 100)
509         g_string_append_printf (string_long, " (%d%%)", load_progress);
510
511     if (selected_url[0]!=0) {
512         g_string_append_printf (string_long, " -> (%s)", selected_url);
513     }
514
515     gchar* title_long = g_string_free (string_long, FALSE);
516     gchar* title_short = g_string_free (string_short, FALSE);
517
518     if (show_status) {
519         gtk_window_set_title (window, title_short);
520         gtk_label_set_text(GTK_LABEL(mainbar_label), title_long);
521     } else {
522         gtk_window_set_title (window, title_long);
523     }
524
525     g_free (title_long);
526     g_free (title_short);
527 }
528  
529 static gboolean
530 key_press_cb (WebKitWebView* page, GdkEventKey* event)
531 {
532     (void) page;
533     gpointer act;
534     gboolean result=FALSE; //TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.
535     if (event->type != GDK_KEY_PRESS || event->keyval == GDK_Page_Up || event->keyval == GDK_Page_Down
536         || event->keyval == GDK_Up || event->keyval == GDK_Down || event->keyval == GDK_Left || event->keyval == GDK_Right)
537         return result;
538
539     //TURN OFF/ON INSERT MODE
540     if (!always_insert_mode && ((insert_mode && (event->keyval == GDK_Escape)) || (!insert_mode && (event->string[0] == 'i')))) {
541         insert_mode = !insert_mode;
542         update_title (GTK_WINDOW (main_window));
543         return TRUE;
544     }
545
546     //INTERNAL BINDINGS
547     if((act = g_hash_table_lookup(internal_bindings, event->string)) != NULL)
548         if (!insert_mode || (event->state == modmask)) {
549             parse_command (act);
550             result = TRUE;
551         }
552     
553     //EXTERNAL BINDINGS
554     if((act = g_hash_table_lookup(external_bindings, event->string)) != NULL)
555         if (!insert_mode || (event->state == modmask)) {
556             run_command (act, NULL);
557             result = TRUE;
558         }
559     
560     if (!result)
561         result = (insert_mode ? FALSE : TRUE);      
562
563     return result;
564 }
565
566 static GtkWidget*
567 create_browser () {
568     GtkWidget* scrolled_window = gtk_scrolled_window_new (NULL, NULL);
569     gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_NEVER, GTK_POLICY_NEVER); //todo: some sort of display of position/total length. like what emacs does
570
571     web_view = WEBKIT_WEB_VIEW (webkit_web_view_new ());
572     gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (web_view));
573
574     g_signal_connect (G_OBJECT (web_view), "title-changed", G_CALLBACK (title_change_cb), web_view);
575     g_signal_connect (G_OBJECT (web_view), "load-progress-changed", G_CALLBACK (progress_change_cb), web_view);
576     g_signal_connect (G_OBJECT (web_view), "load-committed", G_CALLBACK (load_commit_cb), web_view);
577     g_signal_connect (G_OBJECT (web_view), "load-committed", G_CALLBACK (log_history_cb), web_view);
578     g_signal_connect (G_OBJECT (web_view), "hovering-over-link", G_CALLBACK (link_hover_cb), web_view);
579     g_signal_connect (G_OBJECT (web_view), "key-press-event", G_CALLBACK (key_press_cb), web_view);
580     g_signal_connect (G_OBJECT (web_view), "new-window-policy-decision-requested", G_CALLBACK (new_window_cb), web_view); 
581     g_signal_connect (G_OBJECT (web_view), "download-requested", G_CALLBACK (download_cb), web_view); 
582     g_signal_connect (G_OBJECT (web_view), "create-web-view", G_CALLBACK (create_web_view_cb), web_view);  
583
584     return scrolled_window;
585 }
586
587 static GtkWidget*
588 create_mainbar () {
589     mainbar = gtk_hbox_new (FALSE, 0);
590     mainbar_label = gtk_label_new ("");  
591     gtk_misc_set_alignment (GTK_MISC(mainbar_label), 0, 0);
592     gtk_misc_set_padding (GTK_MISC(mainbar_label), 2, 2);
593     gtk_box_pack_start (GTK_BOX (mainbar), mainbar_label, TRUE, TRUE, 0);
594     return mainbar;
595 }
596
597 static
598 GtkWidget* create_window () {
599     GtkWidget* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
600     gtk_window_set_default_size (GTK_WINDOW (window), 800, 600);
601     gtk_widget_set_name (window, "Uzbl browser");
602     g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy_cb), NULL);
603
604     return window;
605 }
606
607 static void
608 add_binding (char *binding, char *action, bool internal) {
609   g_hash_table_insert(internal ? internal_bindings : external_bindings,
610                       binding, action);
611 }
612
613 static void
614 settings_init () {
615     GKeyFile* config;
616     gboolean res  = FALSE;
617     gchar** keysi = NULL;
618     gchar** keyse = NULL;
619     char *saveptr;
620
621     if (!config_file) {
622         const char* XDG_CONFIG_HOME = getenv ("XDG_CONFIG_HOME");
623         if (! XDG_CONFIG_HOME || ! strcmp (XDG_CONFIG_HOME, "")) {
624           XDG_CONFIG_HOME = (char *)XDG_CONFIG_HOME_default;
625         }
626         printf("XDG_CONFIG_HOME: %s\n", XDG_CONFIG_HOME);
627     
628         strcpy (config_file_path, XDG_CONFIG_HOME);
629         strcat (config_file_path, "/uzbl/config");
630         if (file_exists (config_file_path)) {
631           printf ("Config file %s found.\n", config_file_path);
632           config_file = &config_file_path[0];
633         } else {
634             // Now we check $XDG_CONFIG_DIRS
635             char *XDG_CONFIG_DIRS = getenv ("XDG_CONFIG_DIRS");
636             if (! XDG_CONFIG_DIRS || ! strcmp (XDG_CONFIG_DIRS, ""))
637                 XDG_CONFIG_DIRS = XDG_CONFIG_DIRS_default;
638
639             printf("XDG_CONFIG_DIRS: %s\n", XDG_CONFIG_DIRS);
640
641             char buffer[512];
642             strcpy (buffer, XDG_CONFIG_DIRS);
643             const gchar* dir = (char *) strtok_r (buffer, ":", &saveptr);
644             while (dir && ! file_exists (config_file_path)) {
645                 strcpy (config_file_path, dir);
646                 strcat (config_file_path, "/uzbl/config_file_pathig");
647                 if (file_exists (config_file_path)) {
648                     printf ("Config file %s found.\n", config_file_path);
649                     config_file = &config_file_path[0];
650                 }
651                 dir = (char * ) strtok_r (NULL, ":", &saveptr);
652             }
653         }
654     }
655
656     if (config_file) {
657         config = g_key_file_new ();
658         res = g_key_file_load_from_file (config, config_file, G_KEY_FILE_NONE, NULL);
659           if(res) {
660             printf ("Config %s loaded\n", config_file);
661           } else {
662             fprintf (stderr, "Config %s loading failed\n", config_file);
663         }
664     } else {
665         printf ("No configuration.\n");
666     }
667
668     if (res) {
669         history_handler    = g_key_file_get_value   (config, "behavior", "history_handler",    NULL);
670         download_handler   = g_key_file_get_value   (config, "behavior", "download_handler",   NULL);
671         always_insert_mode = g_key_file_get_boolean (config, "behavior", "always_insert_mode", NULL);
672         show_status        = g_key_file_get_boolean (config, "behavior", "show_status",        NULL);
673         modkey             = g_key_file_get_value   (config, "behavior", "modkey",             NULL);
674         keysi              = g_key_file_get_keys    (config, "bindings_internal",        NULL, NULL);
675         keyse              = g_key_file_get_keys    (config, "bindings_external",        NULL, NULL);
676         status_top         = g_key_file_get_boolean (config, "behavior", "status_top",         NULL);
677         home_page          = g_key_file_get_value   (config, "behavior", "home_page",          NULL);
678         if (! fifo_dir)
679             fifo_dir       = g_key_file_get_value   (config, "behavior", "fifo_dir",           NULL);
680         if (! socket_dir)
681             socket_dir     = g_key_file_get_value   (config, "behavior", "socket_dir",         NULL);
682     }
683         
684     printf ("History handler: %s\n",    (history_handler    ? history_handler  : "disabled"));
685     printf ("Download manager: %s\n",   (download_handler   ? download_handler : "disabled"));
686     printf ("Fifo directory: %s\n",     (fifo_dir           ? fifo_dir         : "/tmp"));
687     printf ("Socket directory: %s\n",   (socket_dir         ? socket_dir       : "/tmp"));
688     printf ("Always insert mode: %s\n", (always_insert_mode ? "TRUE"           : "FALSE"));
689     printf ("Show status: %s\n",        (show_status        ? "TRUE"           : "FALSE"));
690     printf ("Status top: %s\n",         (status_top         ? "TRUE"           : "FALSE"));
691     printf ("Modkey: %s\n",             (modkey             ? modkey           : "disabled"));
692     printf ("Home page: %s\n",          (home_page          ? home_page        : "disabled"));
693
694     if (! modkey)
695         modkey = "";
696
697     //POSSIBLE MODKEY VALUES (COMBINATIONS CAN BE USED)
698     gchar* modkeyup = g_utf8_strup (modkey, -1);
699     if (g_strrstr (modkeyup,"SHIFT") != NULL)    modmask |= GDK_SHIFT_MASK;    //the Shift key.
700     if (g_strrstr (modkeyup,"LOCK") != NULL)     modmask |= GDK_LOCK_MASK;     //a Lock key (depending on the modifier mapping of the X server this may either be CapsLock or ShiftLock).
701     if (g_strrstr (modkeyup,"CONTROL") != NULL)  modmask |= GDK_CONTROL_MASK;  //the Control key.
702     if (g_strrstr (modkeyup,"MOD1") != NULL)     modmask |= GDK_MOD1_MASK;     //the fourth modifier key (it depends on the modifier mapping of the X server which key is interpreted as this modifier, but normally it is the Alt key).
703     if (g_strrstr (modkeyup,"MOD2") != NULL)     modmask |= GDK_MOD2_MASK;     //the fifth modifier key (it depends on the modifier mapping of the X server which key is interpreted as this modifier).
704     if (g_strrstr (modkeyup,"MOD3") != NULL)     modmask |= GDK_MOD3_MASK;     //the sixth modifier key (it depends on the modifier mapping of the X server which key is interpreted as this modifier).
705     if (g_strrstr (modkeyup,"MOD4") != NULL)     modmask |= GDK_MOD4_MASK;     //the seventh modifier key (it depends on the modifier mapping of the X server which key is interpreted as this modifier).
706     if (g_strrstr (modkeyup,"MOD5") != NULL)     modmask |= GDK_MOD5_MASK;     //the eighth modifier key (it depends on the modifier mapping of the X server which key is interpreted as this modifier).
707     if (g_strrstr (modkeyup,"BUTTON1") != NULL)  modmask |= GDK_BUTTON1_MASK;  //the first mouse button.
708     if (g_strrstr (modkeyup,"BUTTON2") != NULL)  modmask |= GDK_BUTTON2_MASK;  //the second mouse button.
709     if (g_strrstr (modkeyup,"BUTTON3") != NULL)  modmask |= GDK_BUTTON3_MASK;  //the third mouse button.
710     if (g_strrstr (modkeyup,"BUTTON4") != NULL)  modmask |= GDK_BUTTON4_MASK;  //the fourth mouse button.
711     if (g_strrstr (modkeyup,"BUTTON5") != NULL)  modmask |= GDK_BUTTON5_MASK;  //the fifth mouse button.
712     if (g_strrstr (modkeyup,"SUPER") != NULL)    modmask |= GDK_SUPER_MASK;    //the Super modifier. Since 2.10
713     if (g_strrstr (modkeyup,"HYPER") != NULL)    modmask |= GDK_HYPER_MASK;    //the Hyper modifier. Since 2.10
714     if (g_strrstr (modkeyup,"META") != NULL)     modmask |= GDK_META_MASK;     //the Meta modifier. Since 2.10  */
715     free (modkeyup);
716
717     if (keysi) {
718         int i = 0;
719         for (i = 0; keysi[i]; i++) {
720             gchar *binding = g_key_file_get_string (config, "bindings_internal", keysi[i], NULL);
721             printf ("Action: %s, Binding: %s (internal)\n", g_strdup (keysi[i]), binding);
722             add_binding (binding, g_strdup (keysi[i]), true);
723         }
724     }
725     if (keyse) {
726         int i = 0;
727         for (i = 0; keyse[i]; i++) {
728             gchar *binding = g_key_file_get_string (config, "bindings_external", keyse[i], NULL);
729             printf ("Action: %s, Binding: %s (external)\n", g_strdup (keyse[i]), binding);
730             add_binding (binding, g_strdup (keyse[i]), false);
731         }
732     }
733 }
734
735 int
736 main (int argc, char* argv[]) {
737     gtk_init (&argc, &argv);
738     if (!g_thread_supported ())
739         g_thread_init (NULL);
740
741     printf("Uzbl start location: %s\n", argv[0]);
742
743     strcat ((char *) XDG_CONFIG_HOME_default, getenv ("HOME"));
744     strcat ((char *) XDG_CONFIG_HOME_default, "/.config");
745
746     GError *error = NULL;
747     GOptionContext* context = g_option_context_new ("- some stuff here maybe someday");
748     g_option_context_add_main_entries (context, entries, NULL);
749     g_option_context_add_group (context, gtk_get_option_group (TRUE));
750     g_option_context_parse (context, &argc, &argv, &error);
751     /* initialize has tables */
752     internal_bindings = g_hash_table_new(g_str_hash, g_str_equal);
753     external_bindings = g_hash_table_new(g_str_hash, g_str_equal);
754
755     settings_init ();
756     commands_hash ();
757     
758     if (always_insert_mode)
759         insert_mode = TRUE;
760
761     GtkWidget* vbox = gtk_vbox_new (FALSE, 0);
762     if (status_top)
763         gtk_box_pack_start (GTK_BOX (vbox), create_mainbar (), FALSE, TRUE, 0);
764     gtk_box_pack_start (GTK_BOX (vbox), create_browser (), TRUE, TRUE, 0);
765     if (!status_top)
766         gtk_box_pack_start (GTK_BOX (vbox), create_mainbar (), FALSE, TRUE, 0);
767
768     main_window = create_window ();
769     gtk_container_add (GTK_CONTAINER (main_window), vbox);
770
771     load_uri (web_view, uri);
772
773     gtk_widget_grab_focus (GTK_WIDGET (web_view));
774     gtk_widget_show_all (main_window);
775     xwin = GDK_WINDOW_XID (GTK_WIDGET (main_window)->window);
776     printf("window_id %i\n",(int) xwin);
777     printf("pid %i\n", getpid ());
778
779     if (!show_status)
780         gtk_widget_hide(mainbar);
781
782     setup_threading ();
783     create_fifo ();
784
785     gtk_main ();
786
787     unlink (socket_path);
788     unlink (fifo_path);
789     return 0;
790 }
791
792 /* vi: set et ts=4: */