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