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