Merge branch 'bar/experimental' into experimental
[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 #define GDK_Escape 0xff1b
34
35 #include <gtk/gtk.h>
36 #include <gdk/gdkx.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
46 /* housekeeping / internal variables */
47 static GtkWidget* main_window;
48 static GtkWidget* mainbar;
49 static WebKitWebView* web_view;
50 static gchar* main_title;
51 static gchar selected_url[500];
52 static gint load_progress;
53 static guint status_context_id;
54 static Window xwin = 0;
55 static char fifopath[64];
56
57 /* state variables (initial values coming from command line arguments but may be changed later) */
58 static gchar*   uri         = NULL;
59 static gchar*   config_file = NULL;
60 static gboolean verbose     = FALSE;
61
62 /* settings from config: group behaviour */
63 static gchar*   history_handler    = NULL;
64 static gchar*   fifodir            = NULL;
65 static gchar*   download_handler   = NULL;
66 static gboolean always_insert_mode = FALSE;
67 static gboolean show_status        = FALSE;
68 static gboolean insert_mode        = FALSE;
69 static gchar*   modkey             = NULL;
70
71
72 typedef struct
73 {
74     const char *binding;
75     const char *action;
76 } Binding;
77
78 /* settings from config: group bindings_internal */
79 static Binding internal_bindings[256];
80 static int     num_internal_bindings = 0;
81
82 /* settings from config: group bindings_external */
83 static Binding external_bindings[256];
84 static int     num_external_bindings = 0;
85
86 /* commandline arguments (set initial values for the state variables) */
87 static GOptionEntry entries[] =
88 {
89     { "uri",     'u', 0, G_OPTION_ARG_STRING, &uri,         "Uri to load", NULL },
90     { "verbose", 'v', 0, G_OPTION_ARG_NONE,   &verbose,     "Be verbose",  NULL },
91     { "config",  'c', 0, G_OPTION_ARG_STRING, &config_file, "Config file", NULL },
92     { NULL }
93 };
94
95 /* for internal list of commands */
96 typedef struct
97 {
98     const char *command;
99     void (*func_1_param)(WebKitWebView*);
100     void (*func_2_params)(WebKitWebView*, char *);
101 } Command;
102
103
104 static void
105 update_title (GtkWindow* window);
106
107 static gboolean
108 run_command(const char *command, const char *args);
109
110
111 /* --- CALLBACKS --- */
112 static void
113 go_back_cb (GtkWidget* widget, gpointer data) {
114     webkit_web_view_go_back (web_view);
115 }
116
117 static void
118 go_forward_cb (GtkWidget* widget, gpointer data) {
119     webkit_web_view_go_forward (web_view);
120 }
121
122
123 static void
124 link_hover_cb (WebKitWebView* page, const gchar* title, const gchar* link, gpointer data) {
125     /* underflow is allowed */
126     //gtk_statusbar_pop (main_statusbar, status_context_id);
127     //if (link)
128     //    gtk_statusbar_push (main_statusbar, status_context_id, link);
129     //TODO implementation roadmap pending..
130     
131     //ADD HOVER URL TO WINDOW TITLE
132     selected_url[0] = '\0';
133     if (link) {
134         strcpy (selected_url, link);
135     }
136     update_title (GTK_WINDOW (main_window));
137 }
138
139 static void
140 title_change_cb (WebKitWebView* web_view, WebKitWebFrame* web_frame, const gchar* title, gpointer data) {
141     if (main_title)
142         g_free (main_title);
143     main_title = g_strdup (title);
144     update_title (GTK_WINDOW (main_window));
145 }
146
147 static void
148 progress_change_cb (WebKitWebView* page, gint progress, gpointer data) {
149     load_progress = progress;
150     update_title (GTK_WINDOW (main_window));
151 }
152
153 static void
154 load_commit_cb (WebKitWebView* page, WebKitWebFrame* frame, gpointer data) {
155     strcpy (uri, webkit_web_frame_get_uri (frame));
156 }
157
158 static void
159 destroy_cb (GtkWidget* widget, gpointer data) {
160     gtk_main_quit ();
161 }
162
163 static void
164 log_history_cb () {
165    time_t rawtime;
166    struct tm * timeinfo;
167    char date [80];
168    time ( &rawtime );
169    timeinfo = localtime ( &rawtime );
170    strftime (date, 80, "%Y-%m-%d %H:%M:%S", timeinfo);
171    GString* args = g_string_new ("");
172    g_string_printf (args, "'%s' '%s' '%s'", uri, "TODO:page title here", date);
173    run_command(history_handler, args->str);
174 }
175
176 /* -- command to callback/function map for things we cannot attach to any signals */
177 // TODO: reload, home, quit
178 static Command commands[] =
179 {
180     { "back",     &go_back_cb,                    NULL },
181     { "forward",  &go_forward_cb,                 NULL },
182     { "refresh",  &webkit_web_view_reload,        NULL }, //Buggy
183     { "stop",     &webkit_web_view_stop_loading,  NULL },
184     { "zoom_in",  &webkit_web_view_zoom_in,       NULL }, //Can crash (when max zoom reached?).
185     { "zoom_out", &webkit_web_view_zoom_out,      NULL } ,
186     { "uri",      NULL, &webkit_web_view_load_uri      }
187 //{ "get uri",  &webkit_web_view_get_uri},
188 };
189
190 /* -- CORE FUNCTIONS -- */
191
192 static bool
193 file_exists (const char * filename)
194 {
195     FILE *file = fopen (filename, "r");
196     if (file) {
197         fclose (file);
198         return true;
199     }
200     return false;
201 }
202
203 // make sure to put '' around args, so that if there is whitespace we can still keep arguments together.
204 static gboolean
205 run_command(const char *command, const char *args) {
206    //command <uzbl conf> <uzbl pid> <uzbl win id> <uzbl fifo file> [args]
207     GString* to_execute = g_string_new ("");
208     gboolean result;
209     g_string_printf (to_execute, "%s '%s' '%i' '%i' '%s' %s", command, config_file, (int) getpid() , (int) xwin, "/tmp/uzbl_25165827", args);
210     result = system(to_execute->str);
211     printf("Called %s.  Result: %s\n", to_execute->str, (result ? "FALSE" : "TRUE" ));
212     return result;
213 }
214
215 static void
216 parse_command(const char *command) {
217     int i;
218     Command *c;
219     char * command_name  = strtok (command, " ");
220     char * command_param = strtok (NULL,  " ,"); //dunno how this works, but it seems to work
221
222     Command *c_tmp;
223     for (i = 0; i < LENGTH (commands); i++) {
224         c_tmp = &commands[i];
225         if (strncmp (command_name, c_tmp->command, strlen (c_tmp->command)) == 0) {
226             c = c_tmp;
227         }
228     }
229     if (c != NULL) {
230         if (c->func_2_params != NULL) {
231             if (command_param != NULL) {
232                 printf ("command executing: \"%s %s\"\n", command_name, command_param);
233                 c->func_2_params (web_view, command_param);
234             } else {
235                 if (c->func_1_param != NULL) {
236                     printf ("command executing: \"%s\"\n", command_name);
237                     c->func_1_param (web_view);
238                 } else {
239                     fprintf (stderr, "command needs a parameter. \"%s\" is not complete\n", command_name);
240                 }
241             }
242         } else if (c->func_1_param != NULL) {
243             printf ("command executing: \"%s\"\n", command_name);
244             c->func_1_param (web_view);
245         }
246     } else {
247         fprintf (stderr, "command \"%s\" not understood. ignoring.\n", command);
248     }
249 }
250  
251 static void
252 *control_fifo() {
253     if (fifodir) {
254         sprintf (fifopath, "%s/uzbl_%d", fifodir, (int) xwin);
255     } else {
256         sprintf (fifopath, "/tmp/uzbl_%d", (int) xwin);
257     }
258  
259     if (mkfifo (fifopath, 0666) == -1) {
260         printf ("Possible error creating fifo\n");
261     }
262  
263     printf ("Control fifo opened in %s\n", fifopath);
264  
265     while (true) {
266         FILE *fifo = fopen (fifopath, "r");
267         if (!fifo) {
268             printf ("Could not open %s for reading\n", fifopath);
269             return NULL;
270         }
271         
272         char buffer[256];
273         memset (buffer, 0, sizeof (buffer));
274         while (!feof (fifo) && fgets (buffer, sizeof (buffer), fifo)) {
275             if (strcmp (buffer, "\n")) {
276                 buffer[strlen (buffer) - 1] = '\0'; // Remove newline
277                 parse_command (buffer);
278             }
279         }
280     }
281     
282     return NULL;
283
284  
285 static void
286 setup_threading () {
287     pthread_t control_thread;
288     pthread_create(&control_thread, NULL, control_fifo, NULL);
289 }
290
291 static void
292 update_title (GtkWindow* window) {
293     GString* string = g_string_new ("");
294     if (!always_insert_mode)
295         g_string_append (string, (insert_mode ? "[I] " : "[C] "));
296     g_string_append (string, main_title);
297     g_string_append (string, " - Uzbl browser");
298     if (load_progress < 100)
299         g_string_append_printf (string, " (%d%%)", load_progress);
300
301     if (selected_url[0]!=0) {
302         g_string_append_printf (string, " -> (%s)", selected_url);
303     }
304
305     gchar* title = g_string_free (string, FALSE);
306     gtk_window_set_title (window, title);
307     g_free (title);
308 }
309  
310 static gboolean
311 key_press_cb (WebKitWebView* page, GdkEventKey* event)
312 {
313     int i;
314     gboolean result=FALSE; //TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.
315     if (event->type != GDK_KEY_PRESS) 
316         return result;
317
318     //TURN OFF INSERT MODE
319     if (insert_mode && (event->keyval == GDK_Escape)) {
320         insert_mode = FALSE;
321         update_title (GTK_WINDOW (main_window));
322         return TRUE;
323     }
324
325     //TURN ON INSERT MODE
326     if (!insert_mode && (event->string[0] == 'i')) {
327         insert_mode = TRUE;
328         update_title (GTK_WINDOW (main_window));
329         return TRUE;
330     }
331
332     //INTERNAL KEYS
333     if (always_insert_mode || !insert_mode) {
334         for (i = 0; i < num_internal_bindings; i++) {
335             if (event->string[0] == internal_bindings[i].binding[0]) {
336                 parse_command (internal_bindings[i].action);
337                 result = TRUE;
338             }   
339         }
340     }
341     if (!result)
342         result = (insert_mode ? FALSE : TRUE);      
343
344     return result;
345 }
346
347 static GtkWidget*
348 create_browser () {
349     GtkWidget* scrolled_window = gtk_scrolled_window_new (NULL, NULL);
350     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
351
352     web_view = WEBKIT_WEB_VIEW (webkit_web_view_new ());
353     gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (web_view));
354
355     g_signal_connect (G_OBJECT (web_view), "title-changed", G_CALLBACK (title_change_cb), web_view);
356     g_signal_connect (G_OBJECT (web_view), "load-progress-changed", G_CALLBACK (progress_change_cb), web_view);
357     g_signal_connect (G_OBJECT (web_view), "load-committed", G_CALLBACK (load_commit_cb), web_view);
358     g_signal_connect (G_OBJECT (web_view), "load-committed", G_CALLBACK (log_history_cb), web_view);
359     g_signal_connect (G_OBJECT (web_view), "hovering-over-link", G_CALLBACK (link_hover_cb), web_view);
360     g_signal_connect (G_OBJECT (web_view), "key-press-event", G_CALLBACK (key_press_cb), web_view);
361
362     return scrolled_window;
363 }
364
365 static GtkWidget*
366 create_mainbar () {
367     mainbar = gtk_hbox_new (FALSE, 0);
368
369     //status_context_id = gtk_statusbar_get_context_id (main_statusbar, "Link Hover");
370
371     return mainbar;
372 }
373
374 static
375 GtkWidget* create_window () {
376     GtkWidget* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
377     gtk_window_set_default_size (GTK_WINDOW (window), 800, 600);
378     gtk_widget_set_name (window, "Uzbl browser");
379     g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy_cb), NULL);
380
381     return window;
382 }
383
384 static void
385 add_binding (char *binding, char *action, bool internal) {
386     Binding bind = {binding, action};
387     if (internal) {
388         internal_bindings[num_internal_bindings] = bind;
389         num_internal_bindings ++;
390     } else {
391         external_bindings[num_external_bindings] = bind;
392         num_external_bindings ++;
393     }
394 }
395
396 static void
397 settings_init () {
398     if (config_file) {
399         printf("Config file: %s\n", config_file);
400
401         GKeyFile* config = g_key_file_new ();
402         gboolean res = g_key_file_load_from_file (config, config_file, G_KEY_FILE_NONE, NULL); //TODO: pass config file as argument
403
404         if (res) {
405             printf ("Config loaded\n");
406         } else {
407             fprintf (stderr, "Config loading failed\n"); //TODO: exit codes with gtk? 
408         }
409
410         history_handler = g_key_file_get_value (config, "behavior", "history_handler", NULL);
411         if (history_handler) {
412             printf ("History handler: %s\n", history_handler);
413         } else {
414             printf ("History handler disabled\n");
415         }
416
417         download_handler = g_key_file_get_value (config, "behavior", "download_handler", NULL);
418         if (download_handler) {
419             printf ("Download manager: %s\n", download_handler);
420         } else {
421             printf ("Download manager disabled\n");
422         }
423
424         if (! fifodir)
425             fifodir = g_key_file_get_value (config, "behavior", "fifodir", NULL);
426         if (fifodir) {
427             printf ("Fifo directory: %s\n", fifodir);
428         } else {
429             printf ("Fifo directory: /tmp\n");
430         }
431
432         always_insert_mode = g_key_file_get_boolean (config, "behavior", "always_insert_mode", NULL);
433         printf ("Always insert mode: %s\n", (always_insert_mode ? "TRUE" : "FALSE"));
434
435         show_status = g_key_file_get_boolean (config, "behavior", "show_status", NULL);
436         printf ("Show status: %s\n", (show_status ? "TRUE" : "FALSE"));
437
438         modkey = g_key_file_get_value (config, "behavior", "modkey", NULL);
439         if (modkey) {
440             printf ("Mod key: %s\n", modkey);
441         } else {
442             printf ("Mod key disabled/\n");
443         }
444
445         gchar **keysi = g_key_file_get_keys (config, "bindings_internal", NULL, NULL);
446         int i = 0;
447         for (i = 0; keysi[i]; i++) {
448             gchar *binding = g_key_file_get_string (config, "bindings_internal", keysi[i], NULL);
449             printf ("Action: %s, Binding: %s (internal)\n", g_strdup (keysi[i]), binding);
450             add_binding (binding, g_strdup (keysi[i]), true);
451         }
452
453         gchar **keyse = g_key_file_get_keys (config, "bindings_external", NULL, NULL);
454         for (i = 0; keyse[i]; i++) {
455             gchar *binding = g_key_file_get_string(config, "bindings_external", keyse[i], NULL);
456             printf ("Action: %s, Binding: %s (external)\n", g_strdup (keyse[i]), binding);
457             add_binding (binding, g_strdup (keyse[i]), false);
458         }
459     } else {
460         printf ("No configuration.\n");
461     }
462 }
463
464 int
465 main (int argc, char* argv[]) {
466     gtk_init (&argc, &argv);
467     if (!g_thread_supported ())
468         g_thread_init (NULL);
469
470     GError *error = NULL;
471     GOptionContext* context = g_option_context_new ("- some stuff here maybe someday");
472     g_option_context_add_main_entries (context, entries, NULL);
473     g_option_context_add_group (context, gtk_get_option_group (TRUE));
474     g_option_context_parse (context, &argc, &argv, &error);
475
476     settings_init ();
477     if (always_insert_mode)
478         insert_mode = TRUE;
479
480     GtkWidget* vbox = gtk_vbox_new (FALSE, 0);
481     gtk_box_pack_start (GTK_BOX (vbox), create_mainbar (), FALSE, TRUE, 0);
482     gtk_box_pack_start (GTK_BOX (vbox), create_browser (), TRUE, TRUE, 0);
483
484     main_window = create_window ();
485     gtk_container_add (GTK_CONTAINER (main_window), vbox);
486
487     webkit_web_view_load_uri (web_view, uri);
488
489     gtk_widget_grab_focus (GTK_WIDGET (web_view));
490     gtk_widget_show_all (main_window);
491     xwin = GDK_WINDOW_XID (GTK_WIDGET (main_window)->window);
492     printf("window_id %i\n",(int) xwin);
493     printf("pid %i\n", getpid ());
494
495     setup_threading ();
496
497     gtk_main ();
498
499     unlink (fifopath);
500     return 0;
501 }