Control interface works!
[uzbl-mobile] / uzbl.c
1 // Original code taken from the example webkit-gtk+ application. see notice below.
2
3 /*
4  * Copyright (C) 2006, 2007 Apple Inc.
5  * Copyright (C) 2007 Alp Toker <alp@atoker.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
20  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
23  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
24  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #include <gtk/gtk.h>
30 #include <webkit/webkit.h>
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <errno.h>
35 #include <string.h>
36 #include <fcntl.h>
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <unistd.h>
40 #include <pthread.h>
41
42 static GtkWidget*     main_window;
43 static GtkWidget*     uri_entry;
44 static GtkStatusbar*  main_statusbar;
45 static WebKitWebView* web_view;
46 static gchar*         main_title;
47 static gint           load_progress;
48 static guint          status_context_id;
49
50 static gchar* uri         = NULL;
51 static gboolean verbose   = FALSE;
52 static gboolean statusbar = TRUE;
53
54 static GOptionEntry entries[] =
55 {
56   { "uri", 'u', 0, G_OPTION_ARG_STRING, &uri, "Uri to load", NULL },
57   { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be verbose", NULL },
58   { "hide-statusbar", 'hs', 0, G_OPTION_ARG_NONE, &statusbar, "Be verbose", NULL },
59   { NULL }
60 };
61
62
63 static void
64 activate_uri_entry_cb (GtkWidget* entry, gpointer data)
65 {
66     const gchar* uri = gtk_entry_get_text (GTK_ENTRY (entry));
67     g_assert (uri);
68     webkit_web_view_load_uri (web_view, uri);
69 }
70
71 static void update_title (GtkWindow* window)
72 {
73     GString* string = g_string_new (main_title);
74     g_string_append (string, " - Uzbl browser");
75     if (load_progress < 100)
76         g_string_append_printf (string, " (%d%%)", load_progress);
77     gchar* title = g_string_free (string, FALSE);
78     gtk_window_set_title (window, title);
79     g_free (title);
80 }
81
82 static void
83 link_hover_cb (WebKitWebView* page, const gchar* title, const gchar* link, gpointer data)
84 {
85     /* underflow is allowed */
86     gtk_statusbar_pop (main_statusbar, status_context_id);
87     if (link)
88         gtk_statusbar_push (main_statusbar, status_context_id, link);
89 }
90
91 static void
92 title_change_cb (WebKitWebView* web_view, WebKitWebFrame* web_frame, const gchar* title, gpointer data)
93 {
94     if (main_title)
95         g_free (main_title);
96     main_title = g_strdup (title);
97     update_title (GTK_WINDOW (main_window));
98 }
99
100 static void
101 progress_change_cb (WebKitWebView* page, gint progress, gpointer data)
102 {
103     load_progress = progress;
104     update_title (GTK_WINDOW (main_window));
105 }
106
107 static void
108 load_commit_cb (WebKitWebView* page, WebKitWebFrame* frame, gpointer data)
109 {
110     const gchar* uri = webkit_web_frame_get_uri(frame);
111     if (uri)
112         gtk_entry_set_text (GTK_ENTRY (uri_entry), uri);
113 }
114
115 static void
116 destroy_cb (GtkWidget* widget, gpointer data)
117 {
118     gtk_main_quit ();
119 }
120
121 static void
122 go_back_cb (GtkWidget* widget, gpointer data)
123 {
124     webkit_web_view_go_back (web_view);
125 }
126
127 static void
128 go_forward_cb (GtkWidget* widget, gpointer data)
129 {
130     webkit_web_view_go_forward (web_view);
131 }
132
133 static GtkWidget*
134 create_browser ()
135 {
136     GtkWidget* scrolled_window = gtk_scrolled_window_new (NULL, NULL);
137     gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
138
139     web_view = WEBKIT_WEB_VIEW (webkit_web_view_new ());
140     gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (web_view));
141
142     g_signal_connect (G_OBJECT (web_view), "title-changed", G_CALLBACK (title_change_cb), web_view);
143     g_signal_connect (G_OBJECT (web_view), "load-progress-changed", G_CALLBACK (progress_change_cb), web_view);
144     g_signal_connect (G_OBJECT (web_view), "load-committed", G_CALLBACK (load_commit_cb), web_view);
145     g_signal_connect (G_OBJECT (web_view), "hovering-over-link", G_CALLBACK (link_hover_cb), web_view);
146
147     return scrolled_window;
148 }
149
150 static GtkWidget* create_statusbar ()
151 {
152     main_statusbar = GTK_STATUSBAR (gtk_statusbar_new ());
153     status_context_id = gtk_statusbar_get_context_id (main_statusbar, "Link Hover");
154
155     return (GtkWidget*)main_statusbar;
156 }
157
158 static GtkWidget* create_window ()
159 {
160     GtkWidget* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
161     gtk_window_set_default_size (GTK_WINDOW (window), 800, 600);
162     gtk_widget_set_name (window, "Uzbl browser");
163     g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy_cb), NULL);
164
165     return window;
166 }
167
168
169 static bool parse_command(char *command)
170 {
171   bool output = true;
172
173   if(strcmp(command, "forward") == 0)
174     {
175       printf("Going forward\n");
176       webkit_web_view_go_forward (web_view);
177     }
178   else if(strcmp(command, "back") == 0)
179     {
180       printf("Going back\n");
181       webkit_web_view_go_back (web_view);
182     }
183   else if(strncmp("http://", command, 7) == 0)
184     {
185       printf("Loading URI \"%s\"\n", command);
186       uri = command;
187       webkit_web_view_load_uri (web_view, uri);
188     }
189   else
190     {
191       output = false;
192     }
193
194   return output;
195 }
196
197 static void control_fifo()
198 {
199   char *cmd = (char *)malloc(1024);
200   int num, fd;
201   char *fifoname = "/tmp/uzbl";
202
203   umask(0);
204   mknod(fifoname, S_IFIFO | 0666 , 0); /* Do some stuff to work with multiple instances later foo-$PID or something */
205   printf("Opened control fifo in %s\n", fifoname);
206
207   while (true)
208     {
209       fd = open(fifoname, O_RDONLY);
210       printf("Looping...\n");
211       while (num > 0)
212         {
213           if ((num = read(fd, cmd, 300)) == -1)
214             perror("read");
215           else
216             {
217               cmd[num - 1] = '\0';
218               if(! parse_command(cmd))
219                 printf("Unknown command \"%s\".\n", cmd);
220               cmd[0] = '\0';
221             }
222         }
223       num = 1;
224     }
225   printf("Oops, this code should never be run.\n");
226 }
227
228 int main (int argc, char* argv[])
229 {
230     if (!g_thread_supported ())
231       g_thread_init (NULL);
232
233     gtk_init (&argc, &argv);
234
235     GtkWidget* vbox = gtk_vbox_new (FALSE, 0);
236     gtk_box_pack_start (GTK_BOX (vbox), create_browser (), TRUE, TRUE, 0);
237
238     if(statusbar)
239       gtk_box_pack_start (GTK_BOX (vbox), create_statusbar (), FALSE, FALSE, 0);
240
241     main_window = create_window ();
242     gtk_container_add (GTK_CONTAINER (main_window), vbox);
243     GError *error = NULL;
244     
245     GOptionContext* context = g_option_context_new ("- some stuff here maybe someday");
246     g_option_context_add_main_entries (context, entries, NULL);
247     g_option_context_add_group (context, gtk_get_option_group (TRUE));
248     g_option_context_parse (context, &argc, &argv, &error);
249
250     webkit_web_view_load_uri (web_view, uri);
251
252     gtk_widget_grab_focus (GTK_WIDGET (web_view));
253     gtk_widget_show_all (main_window);
254
255     pthread_t control_thread;
256     int ret;
257
258     ret = pthread_create(&control_thread, NULL, control_fifo, (void*) NULL);
259     gtk_main ();
260     /*pthread_join(control_thread, NULL); For some reason it doesn't terminate upon the browser closing when this is enabled. */
261     return 0;
262 }