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