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