aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--CHECKLIST1
-rw-r--r--Makefile4
-rw-r--r--TODO3
-rwxr-xr-xexamples/scripts/load_url_from_bookmarks.sh3
-rwxr-xr-xexamples/scripts/load_url_from_history.sh3
-rw-r--r--uzbl.c164
-rw-r--r--uzblctrl.c63
8 files changed, 174 insertions, 70 deletions
diff --git a/.gitignore b/.gitignore
index 5dc9796..471b6f4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
-uzbl \ No newline at end of file
+uzbl
+uzblctrl \ No newline at end of file
diff --git a/CHECKLIST b/CHECKLIST
index 8dfe47f..d7ff118 100644
--- a/CHECKLIST
+++ b/CHECKLIST
@@ -18,6 +18,7 @@ Also testers and interested people can use this list to see what uzbl is about,
* Download completely finished
* Open in new window partially finished: target _new works, from popup meny does not work yet
* Home command working (home_page variable in config)
+* Page Up / Page Down / Up / Down / Left / Right for page navigation work in command mode.
* Open in new window completely finished with --config forwarding between instances
TODO: add stuff about internal/external keybinds, mod key, insert mode, status bar,
diff --git a/Makefile b/Makefile
index a70ca9a..fa68594 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CPPFLAGS=$(shell pkg-config --cflags gtk+-2.0 webkit-1.0) -Wall -W
LDFLAGS=$(shell pkg-config --libs gtk+-2.0 webkit-1.0)
-all: uzbl
+all: uzbl uzblctrl
test:
./uzbl --uri http://www.uzbl.org
@@ -13,12 +13,14 @@ test-config-real:
clean:
rm -f uzbl
+ rm -f uzblctrl
install:
install -d $(DESTDIR)/usr/bin
install -d $(DESTDIR)/usr/share/uzbl/docs
install -d $(DESTDIR)/usr/share/uzbl/examples
install -D -m755 uzbl $(DESTDIR)/usr/bin/uzbl
+ install -D -m755 uzblctrl $(DESTDIR)/usr/bin/uzblctrl
cp -ax examples $(DESTDIR)/usr/share/uzbl/
install -D -m644 CHECKLIST $(DESTDIR)/usr/share/uzbl/docs
install -D -m644 README $(DESTDIR)/usr/share/uzbl/docs
diff --git a/TODO b/TODO
index 0f06a3a..6e74e96 100644
--- a/TODO
+++ b/TODO
@@ -2,7 +2,6 @@ ASAP
* implement all the ideas from README
* get a logo
* improve site
-* Support for binding keyboard shortcuts in config file.
* when launching new instance, don't just try 'uzbl' and then './uzbl', rather launch a new uzbl in the same way the current uzbl instance was started. (same command, same arguments, except --uri)
* where to put proxy config? webkit support?
* implement XDG basedir spec (config is done, but not cache/data, which I presume we'll need at some point)
@@ -12,7 +11,7 @@ ASAP
* implement a vimperator-like link following scheme. but let user pick his favorite characters to construct the "link identifiers" with.
* add a keybind to hand the current url to an external scrips, so you can edit it and/or store it in the primary and secondary clipboards
* use http://library.gnome.org/devel/glib/stable/glib-Hash-Tables.html#g-hash-table-insert for tracking bindings and wherever we use structs and ugly loops
-* fifo -> socket. so you can do question-response. socket is slightly more complicated so we'll need to create a uzblctrl
+* fifo -> socket. so you can do question-response. socket is slightly more complicated so we'll need to create a uzblctrl (half done - commands can't yet send data back)
* select/fork based instead of the pthread stuff -> drops dependency, more lightweight.
* on website, see if we can <pre><?php include('..'); ?></pre> the documentation inside the uzbl project itself, so we need to maintain the stuff on only 1 place
* see if we can use the github bugtracker (anonymous posting allowed?)
diff --git a/examples/scripts/load_url_from_bookmarks.sh b/examples/scripts/load_url_from_bookmarks.sh
index 9b991c8..d13b990 100755
--- a/examples/scripts/load_url_from_bookmarks.sh
+++ b/examples/scripts/load_url_from_bookmarks.sh
@@ -9,4 +9,5 @@ else
fi
goto=`awk '{print $1}' $file | dmenu -i` #NOTE: it's the job of the script that inserts bookmarks to make sure there are no dupes.
-[ -n "$goto" ] && echo "uri $goto" > $4
+#[ -n "$goto" ] && echo "uri $goto" > $4
+[ -n "$goto" ] && uzblctrl -s $4 -c "uri $goto"
diff --git a/examples/scripts/load_url_from_history.sh b/examples/scripts/load_url_from_history.sh
index 8978daa..cab4529 100755
--- a/examples/scripts/load_url_from_history.sh
+++ b/examples/scripts/load_url_from_history.sh
@@ -3,4 +3,5 @@
history_file=/tmp/uzbl.history
goto=`awk '{print $3}' $history_file | sort | uniq | dmenu -i`
-[ -n "$goto" ] && echo "uri $goto" > $4
+#[ -n "$goto" ] && echo "uri $goto" > $4
+[ -n "$goto" ] && uzblctrl -s $4 -c "uri $goto"
diff --git a/uzbl.c b/uzbl.c
index 8cc7152..2eeb9e3 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -42,6 +42,11 @@
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
+#include <errno.h>
+#include <string.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <sys/un.h>
/* housekeeping / internal variables */
static GtkWidget* main_window;
@@ -52,18 +57,17 @@ static gchar* main_title;
static gchar selected_url[500] = "\0";
static gint load_progress;
static Window xwin = 0;
-static char fifopath[64];
+static char socket_path[108];
/* state variables (initial values coming from command line arguments but may be changed later) */
static gchar* uri = NULL;
static gchar* config_file = NULL;
static gchar config_file_path[500];
-
static gboolean verbose = FALSE;
/* settings from config: group behaviour */
static gchar* history_handler = NULL;
-static gchar* fifodir = NULL;
+static gchar* socket_dir = NULL;
static gchar* download_handler = NULL;
static gboolean always_insert_mode = FALSE;
static gboolean show_status = FALSE;
@@ -341,10 +345,10 @@ close_uzbl (WebKitWebView * web_view) {
// make sure to put '' around args, so that if there is whitespace we can still keep arguments together.
static gboolean
run_command(const char *command, const char *args) {
- //command <uzbl conf> <uzbl pid> <uzbl win id> <uzbl fifo file> [args]
+ //command <uzbl conf> <uzbl pid> <uzbl win id> <uzbl socket file> [args]
GString* to_execute = g_string_new ("");
gboolean result;
- g_string_printf (to_execute, "%s '%s' '%i' '%i' '%s'", command, config_file, (int) getpid() , (int) xwin, fifopath);
+ g_string_printf (to_execute, "%s '%s' '%i' '%i' '%s'", command, config_file, (int) getpid() , (int) xwin, socket_path);
if(args) {
g_string_append_printf (to_execute, " %s", args);
}
@@ -356,62 +360,93 @@ run_command(const char *command, const char *args) {
static void
parse_command(const char *cmd) {
- Command *c = NULL;
- char buffer[512];
- strcpy (buffer, cmd);
- char * saveptr;
- char * command_name = strtok_r (buffer, " ", &saveptr);
- gchar * command_param = strtok_r (NULL, " ,", &saveptr);
+ Command *c = NULL;
+ char buffer[512];
+ strcpy (buffer, cmd);
+ char * saveptr;
+ char * command_name = strtok_r (buffer, " ", &saveptr);
+ gchar * command_param = strtok_r (NULL, " ,", &saveptr);
- if((c = g_hash_table_lookup(commands, command_name)) != NULL){
- if (c->func_2_params != NULL) {
- if (command_param != NULL) {
- printf ("command executing: \"%s %s\"\n", command_name, command_param);
- c->func_2_params (web_view, command_param);
- } else {
- if (c->func_1_param != NULL) {
- printf ("command executing: \"%s\"\n", command_name);
- c->func_1_param (web_view);
- } else
- fprintf (stderr, "command needs a parameter. \"%s\" is not complete\n", command_name);
- }
- } else if (c->func_1_param != NULL) {
- printf ("command executing: \"%s\"\n", command_name);
- c->func_1_param (web_view);
- }
- } else
- fprintf (stderr, "command \"%s\" not understood. ignoring.\n", cmd);
+ if((c = g_hash_table_lookup(commands, command_name)) != NULL){
+ if (c->func_2_params != NULL) {
+ if (command_param != NULL) {
+ printf ("command executing: \"%s %s\"\n", command_name, command_param);
+ c->func_2_params (web_view, command_param);
+ } else {
+ if (c->func_1_param != NULL) {
+ printf ("command executing: \"%s\"\n", command_name);
+ c->func_1_param (web_view);
+ } else
+ fprintf (stderr, "command needs a parameter. \"%s\" is not complete\n", command_name);
+ }
+ } else if (c->func_1_param != NULL) {
+ printf ("command executing: \"%s\"\n", command_name);
+ c->func_1_param (web_view);
+ }
+ } else
+ fprintf (stderr, "command \"%s\" not understood. ignoring.\n", cmd);
}
static void
-*control_fifo() {
- if (fifodir) {
- sprintf (fifopath, "%s/uzbl_%d", fifodir, (int) xwin);
+*control_socket() {
+ if (socket_dir) {
+ sprintf (socket_path, "%s/uzbl_%d", socket_dir, (int) xwin);
} else {
- sprintf (fifopath, "/tmp/uzbl_%d", (int) xwin);
+ sprintf (socket_path, "/tmp/uzbl_%d", (int) xwin);
}
- if (mkfifo (fifopath, 0666) == -1) {
- printf ("Possible error creating fifo\n");
+ int sock, clientsock, len;
+ unsigned int t;
+ struct sockaddr_un local, remote;
+
+ sock = socket (AF_UNIX, SOCK_STREAM, 0);
+
+ local.sun_family = AF_UNIX;
+ strcpy (local.sun_path, socket_path);
+ unlink (local.sun_path);
+
+ len = strlen (local.sun_path) + sizeof (local.sun_family);
+ bind (sock, (struct sockaddr *) &local, len);
+
+ if (errno == -1) {
+ printf ("A problem occurred when opening a socket in %s\n", socket_path);
+ } else {
+ printf ("Control socket opened in %s\n", socket_path);
}
+
+ listen (sock, 5);
- printf ("Control fifo opened in %s\n", fifopath);
-
- while (true) {
- FILE *fifo = fopen (fifopath, "r");
- if (!fifo) {
- printf ("Could not open %s for reading\n", fifopath);
- return NULL;
- }
-
- char buffer[256];
+ char buffer[512];
+ char temp[128];
+ int done, n;
+ for(;;) {
memset (buffer, 0, sizeof (buffer));
- while (!feof (fifo) && fgets (buffer, sizeof (buffer), fifo)) {
- if (strcmp (buffer, "\n")) {
- buffer[strlen (buffer) - 1] = '\0'; // Remove newline
- parse_command (buffer);
+
+ t = sizeof (remote);
+ clientsock = accept (sock, (struct sockaddr *) &remote, &t);
+ printf ("Connected to client\n");
+
+ done = 0;
+ do {
+ memset (temp, 0, sizeof (temp));
+ n = recv (clientsock, temp, 128, 0);
+ if (n == 0) {
+ buffer[strlen (buffer)] = '\0';
+ done = 1;
}
+
+ if (!done)
+ strcat (buffer, temp);
+ } while (!done);
+
+ if (strcmp (buffer, "\n") < 0) {
+ buffer[strlen (buffer) - 1] = '\0';
+ } else {
+ buffer[strlen (buffer)] = '\0';
}
+
+ parse_command (buffer);
+ close (clientsock);
}
return NULL;
@@ -420,7 +455,7 @@ static void
static void
setup_threading () {
pthread_t control_thread;
- pthread_create(&control_thread, NULL, control_fifo, NULL);
+ pthread_create(&control_thread, NULL, control_socket, NULL);
}
static void
@@ -460,7 +495,8 @@ key_press_cb (WebKitWebView* page, GdkEventKey* event)
(void) page;
gpointer act;
gboolean result=FALSE; //TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.
- if (event->type != GDK_KEY_PRESS)
+ if (event->type != GDK_KEY_PRESS || event->keyval == GDK_Page_Up || event->keyval == GDK_Page_Down
+ || event->keyval == GDK_Up || event->keyval == GDK_Down || event->keyval == GDK_Left || event->keyval == GDK_Right)
return result;
//TURN OFF/ON INSERT MODE
@@ -472,17 +508,17 @@ key_press_cb (WebKitWebView* page, GdkEventKey* event)
//INTERNAL BINDINGS
if((act = g_hash_table_lookup(internal_bindings, event->string)) != NULL)
- if (!insert_mode || (event->state == modmask)) {
- parse_command (act);
- result = TRUE;
- }
-
+ if (!insert_mode || (event->state == modmask)) {
+ parse_command (act);
+ result = TRUE;
+ }
+
//EXTERNAL BINDINGS
if((act = g_hash_table_lookup(external_bindings, event->string)) != NULL)
- if (!insert_mode || (event->state == modmask)) {
- run_command (act, NULL);
- result = TRUE;
- }
+ if (!insert_mode || (event->state == modmask)) {
+ run_command (act, NULL);
+ result = TRUE;
+ }
if (!result)
result = (insert_mode ? FALSE : TRUE);
@@ -602,13 +638,13 @@ settings_init () {
keyse = g_key_file_get_keys (config, "bindings_external", NULL, NULL);
status_top = g_key_file_get_boolean (config, "behavior", "status_top", NULL);
home_page = g_key_file_get_value (config, "behavior", "home_page", NULL);
- if (! fifodir)
- fifodir = g_key_file_get_value (config, "behavior", "fifodir", NULL);
+ if (! socket_dir)
+ socket_dir = g_key_file_get_value (config, "behavior", "socket_dir", NULL);
}
printf ("History handler: %s\n", (history_handler ? history_handler : "disabled"));
printf ("Download manager: %s\n", (download_handler ? download_handler : "disabled"));
- printf ("FIFO directory: %s\n", (fifodir ? fifodir : "/tmp"));
+ printf ("Socket directory: %s\n", (socket_dir ? socket_dir : "/tmp"));
printf ("Always insert mode: %s\n", (always_insert_mode ? "TRUE" : "FALSE"));
printf ("Show status: %s\n", (show_status ? "TRUE" : "FALSE"));
printf ("Status top: %s\n", (status_top ? "TRUE" : "FALSE"));
@@ -707,7 +743,7 @@ main (int argc, char* argv[]) {
gtk_main ();
- unlink (fifopath);
+ unlink (socket_path);
return 0;
}
diff --git a/uzblctrl.c b/uzblctrl.c
new file mode 100644
index 0000000..5415247
--- /dev/null
+++ b/uzblctrl.c
@@ -0,0 +1,63 @@
+/* Socket code more or less completely copied from here: http://www.ecst.csuchico.edu/~beej/guide/ipc/usock.html */
+
+#include <gtk/gtk.h>
+#include <gdk/gdkx.h>
+#include <gdk/gdkkeysyms.h>
+#include <webkit/webkit.h>
+#include <pthread.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <string.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <sys/un.h>
+
+static gchar* sockpath;
+static gchar* command;
+
+static GOptionEntry entries[] =
+{
+ { "socket", 's', 0, G_OPTION_ARG_STRING, &sockpath, "Socket path of the client uzbl", NULL },
+ { "command", 'c', 0, G_OPTION_ARG_STRING, &command, "The uzbl command to execute", NULL },
+ { NULL, 0, 0, 0, NULL, NULL, NULL }
+};
+
+int
+main(int argc, char* argv[]) {
+ GError *error = NULL;
+ GOptionContext* context = g_option_context_new ("- some stuff here maybe someday");
+ g_option_context_add_main_entries (context, entries, NULL);
+ g_option_context_add_group (context, gtk_get_option_group (TRUE));
+ g_option_context_parse (context, &argc, &argv, &error);
+
+ int s, len;
+ struct sockaddr_un remote;
+
+ if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) == -1) {
+ perror ("socket");
+ exit (1);
+ }
+
+ remote.sun_family = AF_UNIX;
+ strcpy (remote.sun_path, (char *) sockpath);
+ len = strlen (remote.sun_path) + sizeof (remote.sun_family);
+
+ if (connect (s, (struct sockaddr *) &remote, len) == -1) {
+ perror ("connect");
+ exit (1);
+ }
+
+ if (send (s, command, strlen (command), 0) == -1) {
+ perror ("send");
+ exit (1);
+ }
+
+ close(s);
+
+ return 0;
+}