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