Began work on FIFO control interface
[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;
170   output = true;
171
172   if(strcmp(command, "forward") == 0)
173     {
174       printf("Going forward\n");
175       webkit_web_view_go_forward (web_view);
176     }
177   else if(strcmp(command, "back") == 0)
178     {
179       printf("Going back\n");
180       webkit_web_view_go_back (web_view);
181     }
182   else if(strncmp("http://", command, 7) == 0)
183     {
184       printf("Loading URI \"%s\"\n", command);
185       uri = command;
186       webkit_web_view_load_uri (web_view, uri);
187     }
188   else
189     {
190       output = false;
191     }
192
193   return output;
194 }
195
196 static void control_fifo(void *threadid)
197 {
198   char *cmd;
199   int num, fd;
200   char *fifoname = "/tmp/uzbl";
201
202   mknod(fifoname, S_IFIFO | 0666 , 0); /* Do some stuff to work with multiple instances later foo-$PID or something */
203   printf("Opened control fifo in %s\n", fifoname);
204
205   while (true)
206     {
207       fd = open(fifoname, O_RDONLY);
208       while (num > 0)
209         {
210           if ((num = read(fd, cmd, 300)) == -1)
211             perror("read");
212           else
213             {
214               cmd[num] = '\0';
215               if(! parse_command(cmd))
216                 printf("Unknown command \"%s\"", cmd);
217             }
218         }
219       num = 1;
220     }
221   printf("Oops, this code should never be run.\n");
222 }
223
224 int main (int argc, char* argv[])
225 {
226     gtk_init (&argc, &argv);
227
228     if (!g_thread_supported ())
229         g_thread_init (NULL);
230
231     GtkWidget* vbox = gtk_vbox_new (FALSE, 0);
232     gtk_box_pack_start (GTK_BOX (vbox), create_browser (), TRUE, TRUE, 0);
233     gtk_box_pack_start (GTK_BOX (vbox), create_statusbar (), FALSE, FALSE, 0);
234
235     main_window = create_window ();
236     gtk_container_add (GTK_CONTAINER (main_window), vbox);
237     GError *error = NULL;
238     
239     GOptionContext* context = g_option_context_new ("- some stuff here maybe someday");
240     g_option_context_add_main_entries (context, entries, NULL);
241     g_option_context_add_group (context, gtk_get_option_group (TRUE));
242     g_option_context_parse (context, &argc, &argv, &error);
243
244     char *uri = "http://www.google.com";
245     if(argc == 2)
246       uri = argv[1];
247
248     webkit_web_view_load_uri (web_view, uri);
249
250     gtk_widget_grab_focus (GTK_WIDGET (web_view));
251     gtk_widget_show_all (main_window);
252
253     pthread_t controlthread;
254     pthread_create(&controlthread, NULL, control_fifo, NULL);
255     gtk_main ();
256     
257     pthread_exit(NULL);
258     return 0;
259 }