166ab60c0260447e2990376035ecd054d2e674af
[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
53 static GOptionEntry entries[] =
54 {
55   { "uri", 'u', 0, G_OPTION_ARG_STRING, &uri, "Uri to load", NULL },
56   { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be verbose", NULL },
57   { NULL }
58 };
59
60
61 static void
62 activate_uri_entry_cb (GtkWidget* entry, gpointer data)
63 {
64     const gchar* uri = gtk_entry_get_text (GTK_ENTRY (entry));
65     g_assert (uri);
66     webkit_web_view_load_uri (web_view, uri);
67 }
68
69 static void update_title (GtkWindow* window)
70 {
71     GString* string = g_string_new (main_title);
72     g_string_append (string, " - Uzbl browser");
73     if (load_progress < 100)
74         g_string_append_printf (string, " (%d%%)", load_progress);
75     gchar* title = g_string_free (string, FALSE);
76     gtk_window_set_title (window, title);
77     g_free (title);
78 }
79
80 static void
81 link_hover_cb (WebKitWebView* page, const gchar* title, const gchar* link, gpointer data)
82 {
83     /* underflow is allowed */
84     gtk_statusbar_pop (main_statusbar, status_context_id);
85     if (link)
86         gtk_statusbar_push (main_statusbar, status_context_id, link);
87 }
88
89 static void
90 title_change_cb (WebKitWebView* web_view, WebKitWebFrame* web_frame, const gchar* title, gpointer data)
91 {
92     if (main_title)
93         g_free (main_title);
94     main_title = g_strdup (title);
95     update_title (GTK_WINDOW (main_window));
96 }
97
98 static void
99 progress_change_cb (WebKitWebView* page, gint progress, gpointer data)
100 {
101     load_progress = progress;
102     update_title (GTK_WINDOW (main_window));
103 }
104
105 static void
106 load_commit_cb (WebKitWebView* page, WebKitWebFrame* frame, gpointer data)
107 {
108     const gchar* uri = webkit_web_frame_get_uri(frame);
109     if (uri)
110         gtk_entry_set_text (GTK_ENTRY (uri_entry), uri);
111 }
112
113 static void
114 destroy_cb (GtkWidget* widget, gpointer data)
115 {
116     gtk_main_quit ();
117 }
118
119 static void
120 go_back_cb (GtkWidget* widget, gpointer data)
121 {
122     webkit_web_view_go_back (web_view);
123 }
124
125 static void
126 go_forward_cb (GtkWidget* widget, gpointer data)
127 {
128     webkit_web_view_go_forward (web_view);
129 }
130
131 static GtkWidget*
132 create_browser ()
133 {
134     GtkWidget* scrolled_window = gtk_scrolled_window_new (NULL, NULL);
135     gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
136
137     web_view = WEBKIT_WEB_VIEW (webkit_web_view_new ());
138     gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (web_view));
139
140     g_signal_connect (G_OBJECT (web_view), "title-changed", G_CALLBACK (title_change_cb), web_view);
141     g_signal_connect (G_OBJECT (web_view), "load-progress-changed", G_CALLBACK (progress_change_cb), web_view);
142     g_signal_connect (G_OBJECT (web_view), "load-committed", G_CALLBACK (load_commit_cb), web_view);
143     g_signal_connect (G_OBJECT (web_view), "hovering-over-link", G_CALLBACK (link_hover_cb), web_view);
144
145     return scrolled_window;
146 }
147
148 static GtkWidget* create_statusbar ()
149 {
150     main_statusbar = GTK_STATUSBAR (gtk_statusbar_new ());
151     status_context_id = gtk_statusbar_get_context_id (main_statusbar, "Link Hover");
152
153     return (GtkWidget*)main_statusbar;
154 }
155
156 static GtkWidget* create_window ()
157 {
158     GtkWidget* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
159     gtk_window_set_default_size (GTK_WINDOW (window), 800, 600);
160     gtk_widget_set_name (window, "Uzbl browser");
161     g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy_cb), NULL);
162
163     return window;
164 }
165
166
167 static bool parse_command(char *command)
168 {
169   bool output = true;
170
171   gdk_threads_enter();
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   gdk_threads_leave();
195
196   return output;
197 }
198
199 static void control_fifo()
200 {
201   char *cmd = (char *)malloc(1024);
202   int num, fd;
203   char *fifoname = "/tmp/uzbl";
204
205   umask(0);
206   mknod(fifoname, S_IFIFO | 0666 , 0); /* Do some stuff to work with multiple instances later foo-$PID or something */
207   printf("Opened control fifo in %s\n", fifoname);
208
209   while (true)
210     {
211       fd = open(fifoname, O_RDONLY);
212       while (num > 0)
213         {
214           if ((num = read(fd, cmd, 300)) == -1)
215             perror("read");
216           else if(! strcmp(cmd, ""))
217             {
218               cmd[num] = '\0';
219               if(! parse_command(cmd))
220                 printf("Unknown command \"%s\".\n", cmd);
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     gdk_threads_init();
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     /*gtk_box_pack_start (GTK_BOX (vbox), create_statusbar (), FALSE, FALSE, 0); I don't like this. */
238
239     main_window = create_window ();
240     gtk_container_add (GTK_CONTAINER (main_window), vbox);
241     GError *error = NULL;
242     
243     GOptionContext* context = g_option_context_new ("- some stuff here maybe someday");
244     g_option_context_add_main_entries (context, entries, NULL);
245     g_option_context_add_group (context, gtk_get_option_group (TRUE));
246     g_option_context_parse (context, &argc, &argv, &error);
247
248     char *uri = "http://www.google.com";
249     if(argc == 2)
250       uri = argv[1];
251
252     webkit_web_view_load_uri (web_view, uri);
253
254     gtk_widget_grab_focus (GTK_WIDGET (web_view));
255     gtk_widget_show_all (main_window);
256
257     pthread_t control_thread;
258     int ret;
259
260     ret = pthread_create(&control_thread, NULL, control_fifo, (void*) NULL);
261     gdk_threads_enter();
262     gtk_main ();
263     gdk_threads_leave();
264
265     pthread_join(control_thread, NULL);
266     return 0;
267 }