gotheaders will now be called correctly.
[surf.git] / surf.c
1 /* See LICENSE file for copyright and license details.
2  *
3  * To understand surf, start reading main().
4  */
5 #include <signal.h>
6 #include <X11/X.h>
7 #include <X11/Xatom.h>
8 #include <gtk/gtk.h>
9 #include <gdk/gdkx.h>
10 #include <gdk/gdk.h>
11 #include <gdk/gdkkeysyms.h>
12 #include <string.h>
13 #include <sys/types.h>
14 #include <sys/wait.h>
15 #include <unistd.h>
16 #include <stdlib.h>
17 #include <stdio.h>
18 #include <webkit/webkit.h>
19 #include <glib/gstdio.h>
20 #include <JavaScriptCore/JavaScript.h>
21
22 #define LENGTH(x)               (sizeof x / sizeof x[0])
23 #define CLEANMASK(mask)         (mask & ~(GDK_MOD2_MASK))
24
25 typedef union Arg Arg;
26 union Arg {
27         gboolean b;
28         gint i;
29         const void *v;
30 };
31
32 typedef struct Client {
33         GtkWidget *win, *scroll, *vbox, *indicator;
34         GtkWidget **items;
35         WebKitWebView *view;
36         WebKitDownload *download;
37         char *title, *linkhover;
38         const char *uri, *needle;
39         gint progress;
40         struct Client *next;
41         gboolean zoomed;
42 } Client;
43
44 typedef struct {
45         char *label;
46         void (*func)(Client *c, const Arg *arg);
47         const Arg arg;
48 } Item;
49
50 typedef struct {
51         guint mod;
52         guint keyval;
53         void (*func)(Client *c, const Arg *arg);
54         const Arg arg;
55 } Key;
56
57 static Display *dpy;
58 static Atom uriprop, findprop;
59 static Client *clients = NULL;
60 static GdkNativeWindow embed = 0;
61 static gboolean showxid = FALSE;
62 static int ignorexprop = 0;
63 static char winid[64];
64 static char *progname;
65 static gboolean loadimage = 1, plugin = 1, script = 1;
66
67 static char *buildpath(const char *path);
68 static void cleanup(void);
69 static void clipboard(Client *c, const Arg *arg);
70 static void context(WebKitWebView *v, GtkMenu *m, Client *c);
71 static char *copystr(char **str, const char *src);
72 static WebKitWebView *createwindow(WebKitWebView *v, WebKitWebFrame *f, Client *c);
73 static gboolean decidedownload(WebKitWebView *v, WebKitWebFrame *f, WebKitNetworkRequest *r, gchar *m,  WebKitWebPolicyDecision *p, Client *c);
74 static gboolean decidewindow(WebKitWebView *v, WebKitWebFrame *f, WebKitNetworkRequest *r, WebKitWebNavigationAction *n, WebKitWebPolicyDecision *p, Client *c);
75 static void destroyclient(Client *c);
76 static void destroywin(GtkWidget* w, Client *c);
77 static void die(char *str);
78 static void download(Client *c, const Arg *arg);
79 static void drawindicator(Client *c);
80 static gboolean exposeindicator(GtkWidget *w, GdkEventExpose *e, Client *c);
81 static void find(Client *c, const Arg *arg);
82 static const char *getatom(Client *c, Atom a);
83 static const char *getcookies(SoupURI *uri);
84 static char *geturi(Client *c);
85 void gotheaders(SoupMessage *msg, gpointer user_data);
86 static gboolean initdownload(WebKitWebView *v, WebKitDownload *o, Client *c);
87 static void itemclick(GtkMenuItem *mi, Client *c);
88 static gboolean keypress(GtkWidget *w, GdkEventKey *ev, Client *c);
89 static void linkhover(WebKitWebView *v, const char* t, const char* l, Client *c);
90 static void loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c);
91 static void loaduri(Client *c, const Arg *arg);
92 static void navigate(Client *c, const Arg *arg);
93 static Client *newclient(void);
94 static void newwindow(Client *c, const Arg *arg);
95 static void newrequest(SoupSession *s, SoupMessage *msg, gpointer v);
96 static void pasteuri(GtkClipboard *clipboard, const char *text, gpointer d);
97 static void print(Client *c, const Arg *arg);
98 static GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event, gpointer d);
99 static void progresschange(WebKitWebView *view, GParamSpec *pspec, Client *c);
100 static void reload(Client *c, const Arg *arg);
101 static void resize(GtkWidget *w, GtkAllocation *a, Client *c);
102 static void scroll(Client *c, const Arg *arg);
103 static void setatom(Client *c, Atom a, const char *v);
104 static void setcookie(SoupCookie *c);
105 static void setup(void);
106 static void sigchld(int unused);
107 static void source(Client *c, const Arg *arg);
108 static void spawn(Client *c, const Arg *arg);
109 static void stop(Client *c, const Arg *arg);
110 static void titlechange(WebKitWebView *v, WebKitWebFrame* frame, const char* title, Client *c);
111 static void update(Client *c);
112 static void updatedownload(WebKitDownload *o, GParamSpec *pspec, Client *c);
113 static void updatewinid(Client *c);
114 static void usage(void);
115 static void windowobjectcleared(GtkWidget *w, WebKitWebFrame *frame, JSContextRef js, JSObjectRef win, Client *c);
116 static void zoom(Client *c, const Arg *arg);
117
118 /* configuration, allows nested code to access above variables */
119 #include "config.h"
120
121 char *
122 buildpath(const char *path) {
123         char *apath, *p;
124         FILE *f;
125
126         /* creating directory */
127         if(path[0] == '/')
128                 apath = g_strdup(path);
129         else
130                 apath = g_strconcat(g_get_home_dir(), "/", path, NULL);
131         if((p = strrchr(apath, '/'))) {
132                 *p = '\0';
133                 g_mkdir_with_parents(apath, 0755);
134                 *p = '/';
135         }
136         /* creating file (gives error when apath ends with "/") */
137         if((f = g_fopen(apath, "a")))
138                 fclose(f);
139         return apath;
140 }
141
142 void
143 cleanup(void) {
144         while(clients)
145                 destroyclient(clients);
146         g_free(cookiefile);
147         g_free(dldir);
148         g_free(scriptfile);
149         g_free(stylefile);
150 }
151
152 void
153 clipboard(Client *c, const Arg *arg) {
154         gboolean paste = *(gboolean *)arg;
155
156         if(paste)
157                 gtk_clipboard_request_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), pasteuri, c);
158         else
159                 gtk_clipboard_set_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), c->linkhover ? c->linkhover : geturi(c), -1);
160 }
161
162 void
163 context(WebKitWebView *v, GtkMenu *m, Client *c) {
164         int i;
165         GtkContainer *parent;
166
167         gtk_widget_hide_all(GTK_WIDGET(m));
168         gtk_widget_show(GTK_WIDGET(m));
169         for(i = 0; i < LENGTH(items); i++) {
170                 parent = GTK_CONTAINER(gtk_widget_get_parent(c->items[i]));
171                 if(parent)
172                         gtk_container_remove(parent, c->items[i]);
173                 gtk_menu_shell_append(GTK_MENU_SHELL(m), c->items[i]);
174                 gtk_widget_show(c->items[i]);
175         }
176 }
177
178 char *
179 copystr(char **str, const char *src) {
180         char *tmp;
181         tmp = g_strdup(src);
182
183         if(str && *str) {
184                 g_free(*str);
185                 *str = tmp;
186         }
187         return tmp;
188 }
189
190 WebKitWebView *
191 createwindow(WebKitWebView  *v, WebKitWebFrame *f, Client *c) {
192         Client *n = newclient();
193         return n->view;
194 }
195
196 gboolean
197 decidedownload(WebKitWebView *v, WebKitWebFrame *f, WebKitNetworkRequest *r, gchar *m,  WebKitWebPolicyDecision *p, Client *c) {
198         if(!webkit_web_view_can_show_mime_type(v, m)) {
199                 webkit_web_policy_decision_download(p);
200                 return TRUE;
201         }
202         return FALSE;
203 }
204
205 gboolean
206 decidewindow(WebKitWebView *view, WebKitWebFrame *f, WebKitNetworkRequest *r, WebKitWebNavigationAction *n, WebKitWebPolicyDecision *p, Client *c) {
207         Arg arg;
208
209         if(webkit_web_navigation_action_get_reason(n) == WEBKIT_WEB_NAVIGATION_REASON_LINK_CLICKED) {
210                 webkit_web_policy_decision_ignore(p);
211                 arg.v = (void *)webkit_network_request_get_uri(r);
212                 newwindow(NULL, &arg);
213                 return TRUE;
214         }
215         return FALSE;
216 }
217
218 void
219 destroyclient(Client *c) {
220         int i;
221         Client *p;
222
223         gtk_widget_destroy(c->indicator);
224         gtk_widget_destroy(GTK_WIDGET(c->view));
225         gtk_widget_destroy(c->scroll);
226         gtk_widget_destroy(c->vbox);
227         gtk_widget_destroy(c->win);
228         for(i = 0; i < LENGTH(items); i++)
229                 gtk_widget_destroy(c->items[i]);
230         free(c->items);
231
232         for(p = clients; p && p->next != c; p = p->next);
233         if(p)
234                 p->next = c->next;
235         else
236                 clients = c->next;
237         free(c);
238         if(clients == NULL)
239                 gtk_main_quit();
240 }
241
242 void
243 destroywin(GtkWidget* w, Client *c) {
244         destroyclient(c);
245 }
246
247 void
248 die(char *str) {
249         fputs(str, stderr);
250         exit(EXIT_FAILURE);
251 }
252
253 void
254 download(Client *c, const Arg *arg) {
255         char *uri;
256         WebKitNetworkRequest *r;
257         WebKitDownload       *dl;
258
259         if(arg->v)
260                 uri = (char *)arg->v;
261         else
262                 uri = c->linkhover ? c->linkhover : geturi(c);
263         r = webkit_network_request_new(uri);
264         dl = webkit_download_new(r);
265         initdownload(c->view, dl, c);
266 }
267
268 void
269 drawindicator(Client *c) {
270         gint width;
271         const char *uri;
272         GtkWidget *w;
273         GdkGC *gc;
274         GdkColor fg;
275
276         uri = getatom(c, uriprop);
277         w = c->indicator;
278         width = c->progress * w->allocation.width / 100;
279         gc = gdk_gc_new(w->window);
280         gdk_color_parse(strstr(uri, "https://") == uri ?
281                         progress_trust : progress, &fg);
282         gdk_gc_set_rgb_fg_color(gc, &fg);
283         gdk_draw_rectangle(w->window,
284                         w->style->bg_gc[GTK_WIDGET_STATE(w)],
285                         TRUE, 0, 0, w->allocation.width, w->allocation.height);
286         gdk_draw_rectangle(w->window, gc, TRUE, 0, 0, width,
287                         w->allocation.height);
288         g_object_unref(gc);
289 }
290
291 gboolean
292 exposeindicator(GtkWidget *w, GdkEventExpose *e, Client *c) {
293         drawindicator(c);
294         return TRUE;
295 }
296
297 void
298 find(Client *c, const Arg *arg) {
299         const char *s;
300
301         s = getatom(c, findprop);
302         gboolean forward = *(gboolean *)arg;
303         webkit_web_view_search_text(c->view, s, FALSE, forward, TRUE);
304 }
305
306 const char *
307 getcookies(SoupURI *uri) {
308         return NULL;
309 }
310
311 const char *
312 getatom(Client *c, Atom a) {
313         static char buf[BUFSIZ];
314         Atom adummy;
315         int idummy;
316         unsigned long ldummy;
317         unsigned char *p = NULL;
318
319         XGetWindowProperty(dpy, GDK_WINDOW_XID(GTK_WIDGET(c->win)->window),
320                         a, 0L, BUFSIZ, False, XA_STRING,
321                         &adummy, &idummy, &ldummy, &ldummy, &p);
322         if(p)
323                 strncpy(buf, (char *)p, LENGTH(buf)-1);
324         else
325                 buf[0] = '\0';
326         XFree(p);
327         return buf;
328 }
329
330 char *
331 geturi(Client *c) {
332         char *uri;
333
334         if(!(uri = (char *)webkit_web_view_get_uri(c->view)))
335                 uri = "about:blank";
336         return uri;
337 }
338
339 void
340 gotheaders(SoupMessage *msg, gpointer v) {
341         SoupURI *uri;
342         GSList *l, *p;
343
344         uri = soup_message_get_uri(msg);
345         for(p = l = soup_cookies_from_response(msg); p;
346                 p = g_slist_next(p))  {
347                 setcookie((SoupCookie *)p->data);
348         }
349         soup_cookies_free(l);
350 }
351
352 gboolean
353 initdownload(WebKitWebView *view, WebKitDownload *o, Client *c) {
354         const char *filename;
355         char *uri, *html;
356         WebKitWebBackForwardList *h;
357         WebKitWebHistoryItem *i;
358
359         stop(c, NULL);
360         c->download = o;
361         filename = webkit_download_get_suggested_filename(o);
362         if(!strcmp("", filename))
363                 filename = "index.html";
364         uri = g_strconcat("file://", dldir, "/", filename, NULL);
365         webkit_download_set_destination_uri(c->download, uri);
366         c->progress = 0;
367         g_free(uri);
368         html = g_strdup_printf("Download <b>%s</b>...", filename);
369         webkit_web_view_load_html_string(c->view, html,
370                         webkit_download_get_uri(c->download));
371         h = webkit_web_view_get_back_forward_list(c->view);
372         i = webkit_web_history_item_new_with_data(webkit_download_get_uri(c->download), filename);
373         webkit_web_back_forward_list_add_item(h, i);
374         g_signal_connect(c->download, "notify::progress", G_CALLBACK(updatedownload), c);
375         g_signal_connect(c->download, "notify::status", G_CALLBACK(updatedownload), c);
376         webkit_download_start(c->download);
377         
378         c->title = copystr(&c->title, filename);
379         update(c);
380         g_free(html);
381         return TRUE;
382 }
383
384 void
385 itemclick(GtkMenuItem *mi, Client *c) {
386         int i;
387         const char *label;
388
389         label = gtk_menu_item_get_label(mi);
390         for(i = 0; i < LENGTH(items); i++)
391                 if(!strcmp(items[i].label, label))
392                         items[i].func(c, &(items[i].arg));
393 }
394
395 gboolean
396 keypress(GtkWidget* w, GdkEventKey *ev, Client *c) {
397         guint i;
398         gboolean processed = FALSE;
399
400         updatewinid(c);
401         for(i = 0; i < LENGTH(keys); i++) {
402                 if(gdk_keyval_to_lower(ev->keyval) == keys[i].keyval
403                                 && CLEANMASK(ev->state) == keys[i].mod
404                                 && keys[i].func) {
405                         keys[i].func(c, &(keys[i].arg));
406                         processed = TRUE;
407                 }
408         }
409         return processed;
410 }
411
412 void
413 linkhover(WebKitWebView *v, const char* t, const char* l, Client *c) {
414         if(l)
415                 c->linkhover = copystr(&c->linkhover, l);
416         else if(c->linkhover) {
417                 free(c->linkhover);
418                 c->linkhover = NULL;
419         }
420         update(c);
421 }
422
423 void
424 loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c) {
425         switch(webkit_web_view_get_load_status (c->view)) {
426         case WEBKIT_LOAD_COMMITTED:
427                 setatom(c, uriprop, geturi(c));
428                 break;
429         case WEBKIT_LOAD_FINISHED:
430                 c->progress = 0;
431                 update(c);
432                 break;
433         case WEBKIT_LOAD_PROVISIONAL:
434         case WEBKIT_LOAD_FIRST_VISUALLY_NON_EMPTY_LAYOUT:
435                 break;
436         }
437 }
438
439 void
440 loaduri(Client *c, const Arg *arg) {
441         char *u;
442         const char *uri = (char *)arg->v;
443         Arg a = { .b = FALSE };
444
445         if(strcmp(uri, "") == 0)
446                 return;
447         u = g_strrstr(uri, "://") ? g_strdup(uri)
448                 : g_strdup_printf("http://%s", uri);
449         /* prevents endless loop */
450         if(c->uri && strcmp(u, c->uri) == 0) {
451                 reload(c, &a);
452         }
453         else {
454                 webkit_web_view_load_uri(c->view, u);
455                 c->progress = 0;
456                 c->title = copystr(&c->title, u);
457                 g_free(u);
458                 update(c);
459         }
460 }
461
462 void
463 navigate(Client *c, const Arg *arg) {
464         int steps = *(int *)arg;
465         webkit_web_view_go_back_or_forward(c->view, steps);
466 }
467
468 Client *
469 newclient(void) {
470         int i;
471         Client *c;
472         WebKitWebSettings *settings;
473         GdkGeometry hints = { 1, 1 };
474         char *uri, *ua;
475
476         if(!(c = calloc(1, sizeof(Client))))
477                 die("Cannot malloc!\n");
478         /* Window */
479         if(embed) {
480                 c->win = gtk_plug_new(embed);
481         }
482         else {
483                 c->win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
484                 /* TA:  20091214:  Despite what the GNOME docs say, the ICCCM
485                  * is always correct, so we should still call this function.
486                  * But when doing so, we *must* differentiate between a
487                  * WM_CLASS and a resource on the window.  By convention, the
488                  * window class (WM_CLASS) is capped, while the resource is in
489                  * lowercase.   Both these values come as a pair.
490                  */
491                 gtk_window_set_wmclass(GTK_WINDOW(c->win), "surf", "surf");
492
493                 /* TA:  20091214:  And set the role here as well -- so that
494                  * sessions can pick this up.
495                  */
496                 gtk_window_set_role(GTK_WINDOW(c->win), "Surf");
497         }
498         gtk_window_set_default_size(GTK_WINDOW(c->win), 800, 600);
499         g_signal_connect(G_OBJECT(c->win), "destroy", G_CALLBACK(destroywin), c);
500         g_signal_connect(G_OBJECT(c->win), "key-press-event", G_CALLBACK(keypress), c);
501         g_signal_connect(G_OBJECT(c->win), "size-allocate", G_CALLBACK(resize), c);
502
503         if(!(c->items = calloc(1, sizeof(GtkWidget *) * LENGTH(items))))
504                 die("Cannot malloc!\n");
505
506         /* contextmenu */
507         for(i = 0; i < LENGTH(items); i++) {
508                 c->items[i] = gtk_menu_item_new_with_label(items[i].label);
509                 g_signal_connect(G_OBJECT(c->items[i]), "activate",
510                                 G_CALLBACK(itemclick), c);
511         }
512
513         /* VBox */
514         c->vbox = gtk_vbox_new(FALSE, 0);
515
516         /* Scrolled Window */
517         c->scroll = gtk_scrolled_window_new(NULL, NULL);
518         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(c->scroll),
519                         GTK_POLICY_NEVER, GTK_POLICY_NEVER);
520
521         /* Webview */
522         c->view = WEBKIT_WEB_VIEW(webkit_web_view_new());
523         g_signal_connect(G_OBJECT(c->view), "title-changed", G_CALLBACK(titlechange), c);
524         g_signal_connect(G_OBJECT(c->view), "hovering-over-link", G_CALLBACK(linkhover), c);
525         g_signal_connect(G_OBJECT(c->view), "create-web-view", G_CALLBACK(createwindow), c);
526         g_signal_connect(G_OBJECT(c->view), "new-window-policy-decision-requested", G_CALLBACK(decidewindow), c);
527         g_signal_connect(G_OBJECT(c->view), "mime-type-policy-decision-requested", G_CALLBACK(decidedownload), c);
528         g_signal_connect(G_OBJECT(c->view), "download-requested", G_CALLBACK(initdownload), c);
529         g_signal_connect(G_OBJECT(c->view), "window-object-cleared", G_CALLBACK(windowobjectcleared), c);
530         g_signal_connect(G_OBJECT(c->view), "populate-popup", G_CALLBACK(context), c);
531         g_signal_connect(G_OBJECT(c->view), "notify::load-status", G_CALLBACK(loadstatuschange), c);
532         g_signal_connect(G_OBJECT(c->view), "notify::progress", G_CALLBACK(progresschange), c);
533
534         /* Indicator */
535         c->indicator = gtk_drawing_area_new();
536         gtk_widget_set_size_request(c->indicator, 0, 2);
537         g_signal_connect (G_OBJECT (c->indicator), "expose_event",
538                         G_CALLBACK (exposeindicator), c);
539
540         /* Arranging */
541         gtk_container_add(GTK_CONTAINER(c->scroll), GTK_WIDGET(c->view));
542         gtk_container_add(GTK_CONTAINER(c->win), c->vbox);
543         gtk_container_add(GTK_CONTAINER(c->vbox), c->scroll);
544         gtk_container_add(GTK_CONTAINER(c->vbox), c->indicator);
545
546         /* Setup */
547         gtk_box_set_child_packing(GTK_BOX(c->vbox), c->indicator, FALSE, FALSE, 0, GTK_PACK_START);
548         gtk_box_set_child_packing(GTK_BOX(c->vbox), c->scroll, TRUE, TRUE, 0, GTK_PACK_START);
549         gtk_widget_grab_focus(GTK_WIDGET(c->view));
550         gtk_widget_show(c->vbox);
551         gtk_widget_show(c->indicator);
552         gtk_widget_show(c->scroll);
553         gtk_widget_show(GTK_WIDGET(c->view));
554         gtk_widget_show(c->win);
555         gtk_window_set_geometry_hints(GTK_WINDOW(c->win), NULL, &hints, GDK_HINT_MIN_SIZE);
556         gdk_window_set_events(GTK_WIDGET(c->win)->window, GDK_ALL_EVENTS_MASK);
557         gdk_window_add_filter(GTK_WIDGET(c->win)->window, processx, c);
558         webkit_web_view_set_full_content_zoom(c->view, TRUE);
559         settings = webkit_web_view_get_settings(c->view);
560         if(!(ua = getenv("SURF_USERAGENT")))
561                 ua = useragent;
562         g_object_set(G_OBJECT(settings), "user-agent", ua, NULL);
563         uri = g_strconcat("file://", stylefile, NULL);
564         g_object_set(G_OBJECT(settings), "user-stylesheet-uri", uri, NULL);
565         g_object_set(G_OBJECT(settings), "auto-load-images", loadimage, NULL);
566         g_object_set(G_OBJECT(settings), "enable-plugins", plugin, NULL);
567         g_object_set(G_OBJECT(settings), "enable-scripts", script, NULL);
568         g_free(uri);
569         setatom(c, findprop, "");
570         setatom(c, uriprop, "");
571
572         c->download = NULL;
573         c->title = NULL;
574         c->next = clients;
575         clients = c;
576         if(showxid) {
577                 gdk_display_sync(gtk_widget_get_display(c->win));
578                 printf("%u\n", (guint)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window));
579                 fflush(NULL);
580         }
581         return c;
582 }
583
584 void
585 newrequest(SoupSession *s, SoupMessage *msg, gpointer v) {
586         SoupMessageHeaders *h = msg->request_headers;
587         SoupURI *uri;
588         const char *c;
589
590         soup_message_headers_remove(h, "Cookie");
591         uri = soup_message_get_uri(msg);
592         if((c = getcookies(uri))) {
593                 soup_message_headers_append(h, "Cookie", c);
594         }
595         g_signal_connect_after(G_OBJECT(msg), "got-headers", G_CALLBACK(gotheaders), NULL);
596 }
597
598 void
599 newwindow(Client *c, const Arg *arg) {
600         guint i = 0;
601         const char *cmd[10], *uri;
602         const Arg a = { .v = (void *)cmd };
603         char tmp[64];
604
605         cmd[i++] = progname;
606         if(embed) {
607                 cmd[i++] = "-e";
608                 snprintf(tmp, LENGTH(tmp), "%u\n", (int)embed);
609                 cmd[i++] = tmp;
610         }
611         if(!script)
612                 cmd[i++] = "-s";
613         if(!plugin)
614                 cmd[i++] = "-p";
615         if(!loadimage)
616                 cmd[i++] = "-l";
617         if(showxid)
618                 cmd[i++] = "-x";
619         cmd[i++] = "--";
620         uri = arg->v ? (char *)arg->v : c->linkhover;
621         if(uri)
622                 cmd[i++] = uri;
623         cmd[i++] = NULL;
624         spawn(NULL, &a);
625 }
626
627 void
628 pasteuri(GtkClipboard *clipboard, const char *text, gpointer d) {
629         Arg arg = {.v = text };
630         if(text != NULL)
631                 loaduri((Client *) d, &arg);
632 }
633
634 void
635 print(Client *c, const Arg *arg) {
636         webkit_web_frame_print(webkit_web_view_get_main_frame(c->view));
637 }
638
639 GdkFilterReturn
640 processx(GdkXEvent *e, GdkEvent *event, gpointer d) {
641         Client *c = (Client *)d;
642         XPropertyEvent *ev;
643         Arg arg;
644
645         if(((XEvent *)e)->type == PropertyNotify) {
646                 ev = &((XEvent *)e)->xproperty;
647                 if(ignorexprop)
648                         ignorexprop--;
649                 else if(ev->state == PropertyNewValue) {
650                         if(ev->atom == uriprop) {
651                                 arg.v = getatom(c, uriprop);
652                                 loaduri(c, &arg);
653                         }
654                         else if(ev->atom == findprop) {
655                                 arg.b = TRUE;
656                                 find(c, &arg);
657                         }
658                         return GDK_FILTER_REMOVE;
659                 }
660         }
661         return GDK_FILTER_CONTINUE;
662 }
663
664 void
665 progresschange(WebKitWebView *view, GParamSpec *pspec, Client *c) {
666         c->progress = webkit_web_view_get_progress(c->view) * 100;
667         update(c);
668 }
669
670 void
671 reload(Client *c, const Arg *arg) {
672         gboolean nocache = *(gboolean *)arg;
673         if(nocache)
674                  webkit_web_view_reload_bypass_cache(c->view);
675         else
676                  webkit_web_view_reload(c->view);
677 }
678
679 void
680 resize(GtkWidget *w, GtkAllocation *a, Client *c) {
681         double zoom;
682
683         if(c->zoomed)
684                 return;
685         zoom = webkit_web_view_get_zoom_level(c->view);
686         if(a->width * a->height < 300 * 400 && zoom != 0.2)
687                 webkit_web_view_set_zoom_level(c->view, 0.2);
688         else if(zoom != 1.0)
689                 webkit_web_view_set_zoom_level(c->view, 1.0);
690 }
691
692 void
693 scroll(Client *c, const Arg *arg) {
694         gdouble v;
695         GtkAdjustment *a;
696
697         a = gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(c->scroll));
698         v = gtk_adjustment_get_value(a);
699         v += gtk_adjustment_get_step_increment(a) * arg->i;
700         v = MAX(v, 0.0);
701         v = MIN(v, gtk_adjustment_get_upper(a) - gtk_adjustment_get_page_size(a));
702         gtk_adjustment_set_value(a, v);
703 }
704
705 void
706 setcookie(SoupCookie *c) {
707
708 }
709
710 void
711 setatom(Client *c, Atom a, const char *v) {
712         XSync(dpy, False);
713         ignorexprop++;
714         XChangeProperty(dpy, GDK_WINDOW_XID(GTK_WIDGET(c->win)->window), a,
715                         XA_STRING, 8, PropModeReplace, (unsigned char *)v,
716                         strlen(v) + 1);
717 }
718
719 void
720 setup(void) {
721         char *proxy;
722         char *new_proxy;
723         SoupURI *puri;
724         SoupSession *s;
725
726         /* clean up any zombies immediately */
727         sigchld(0);
728         gtk_init(NULL, NULL);
729         if (!g_thread_supported())
730                 g_thread_init(NULL);
731
732         dpy = GDK_DISPLAY();
733         s = webkit_get_default_session();
734         uriprop = XInternAtom(dpy, "_SURF_URI", False);
735         findprop = XInternAtom(dpy, "_SURF_FIND", False);
736
737         /* dirs and files */
738         cookiefile = buildpath(cookiefile);
739         dldir = buildpath(dldir);
740         scriptfile = buildpath(scriptfile);
741         stylefile = buildpath(stylefile);
742
743         /* request handler */
744         s = webkit_get_default_session();
745         soup_session_remove_feature_by_type(s, soup_cookie_get_type());
746         soup_session_remove_feature_by_type(s, soup_cookie_jar_get_type());
747         g_signal_connect_after(G_OBJECT(s), "request-started", G_CALLBACK(newrequest), NULL);
748
749
750         /* proxy */
751         if((proxy = getenv("http_proxy")) && strcmp(proxy, "")) {
752                 new_proxy = g_strrstr(proxy, "http://") ? g_strdup(proxy) :
753                         g_strdup_printf("http://%s", proxy);
754
755                 puri = soup_uri_new(new_proxy);
756                 g_object_set(G_OBJECT(s), "proxy-uri", puri, NULL);
757                 soup_uri_free(puri);
758                 g_free(new_proxy);
759         }
760 }
761
762 void
763 sigchld(int unused) {
764         if(signal(SIGCHLD, sigchld) == SIG_ERR)
765                 die("Can't install SIGCHLD handler");
766         while(0 < waitpid(-1, NULL, WNOHANG));
767 }
768
769 void
770 source(Client *c, const Arg *arg) {
771         Arg a = { .b = FALSE };
772         gboolean s;
773
774         s = webkit_web_view_get_view_source_mode(c->view);
775         webkit_web_view_set_view_source_mode(c->view, !s);
776         reload(c, &a);
777 }
778
779 void
780 spawn(Client *c, const Arg *arg) {
781         if(fork() == 0) {
782                 if(dpy)
783                         close(ConnectionNumber(dpy));
784                 setsid();
785                 execvp(((char **)arg->v)[0], (char **)arg->v);
786                 fprintf(stderr, "surf: execvp %s", ((char **)arg->v)[0]);
787                 perror(" failed");
788                 exit(0);
789         }
790 }
791
792 void
793 stop(Client *c, const Arg *arg) {
794         if(c->download)
795                 webkit_download_cancel(c->download);
796         else
797                 webkit_web_view_stop_loading(c->view);
798         c->download = NULL;
799 }
800
801 void
802 titlechange(WebKitWebView *v, WebKitWebFrame *f, const char *t, Client *c) {
803         c->title = copystr(&c->title, t);
804         update(c);
805 }
806
807 void
808 update(Client *c) {
809         char *t;
810
811         if(c->progress != 100)
812                 t = g_strdup_printf("[%i%%] %s", c->progress, c->title);
813         else if(c->linkhover)
814                 t = g_strdup(c->linkhover);
815         else
816                 t = g_strdup(c->title);
817         drawindicator(c);
818         gtk_window_set_title(GTK_WINDOW(c->win), t);
819         g_free(t);
820 }
821
822 void
823 updatedownload(WebKitDownload *o, GParamSpec *pspec, Client *c) {
824         WebKitDownloadStatus status;
825
826         status = webkit_download_get_status(c->download);
827         if(status == WEBKIT_DOWNLOAD_STATUS_STARTED || status == WEBKIT_DOWNLOAD_STATUS_CREATED) {
828                 c->progress = (gint)(webkit_download_get_progress(c->download)*100);
829         }
830         update(c);
831 }
832
833 void
834 updatewinid(Client *c) {
835         snprintf(winid, LENGTH(winid), "%u",
836                         (int)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window));
837 }
838
839 void
840 usage(void) {
841         fputs("surf - simple browser\n", stderr);
842         die("usage: surf [-e Window] [-x] [-i] [-p] [-s] [uri]\n");
843 }
844
845 void
846 windowobjectcleared(GtkWidget *w, WebKitWebFrame *frame, JSContextRef js, JSObjectRef win, Client *c) {
847         JSStringRef jsscript;
848         char *script;
849         JSValueRef exception = NULL;
850         GError *error;
851         
852         if(g_file_get_contents(scriptfile, &script, NULL, &error)) {
853                 jsscript = JSStringCreateWithUTF8CString(script);
854                 JSEvaluateScript(js, jsscript, JSContextGetGlobalObject(js), NULL, 0, &exception);
855         }
856 }
857
858 void
859 zoom(Client *c, const Arg *arg) {
860         c->zoomed = TRUE;
861         if(arg->i < 0)          /* zoom out */
862                 webkit_web_view_zoom_out(c->view);
863         else if(arg->i > 0)     /* zoom in */
864                 webkit_web_view_zoom_in(c->view);
865         else {                  /* reset */
866                 c->zoomed = FALSE;
867                 webkit_web_view_set_zoom_level(c->view, 1.0);
868         }
869 }
870
871 int
872 main(int argc, char *argv[]) {
873         int i;
874         Arg arg;
875
876         progname = argv[0];
877         /* command line args */
878         for(i = 1, arg.v = NULL; i < argc && argv[i][0] == '-' &&
879                         argv[i][1] != '\0' && argv[i][2] == '\0'; i++) {
880                 if(!strcmp(argv[i], "--")) {
881                         i++;
882                         break;
883                 }
884                 switch(argv[i][1]) {
885                 case 'x':
886                         showxid = TRUE;
887                         break;
888                 case 'e':
889                         if(++i < argc)
890                                 embed = atoi(argv[i]);
891                         else
892                                 usage();
893                         break;
894                 case 'i':
895                         loadimage = 0;
896                         break;
897                 case 'p':
898                         plugin = 0;
899                         break;
900                 case 's':
901                         script = 0;
902                         break;
903                 case 'v':
904                         die("surf-"VERSION", © 2009 surf engineers, see LICENSE for details\n");
905                 }
906         }
907         if(i < argc)
908                 arg.v = argv[i];
909         setup();
910         newclient();
911         if(arg.v)
912                 loaduri(clients, &arg);
913         gtk_main();
914         cleanup();
915         return EXIT_SUCCESS;
916 }