# HG changeset patch # User Eric Warmenhoven # Date 1002784760 0 # Node ID 7e475780172539b5f4f92c44f70cbbb7aac01f33 # Parent 0d5257faa66e685d3c7bc5985db6f8000eecfdab [gaim-migrate @ 2495] further updates to gaim-core. ui connects now and protocol basics seem to be working. this should facilitate cui dev. committer: Tailor Script diff -r 0d5257faa66e -r 7e4757801725 src/aim.c --- a/src/aim.c Thu Oct 11 01:57:27 2001 +0000 +++ b/src/aim.c Thu Oct 11 07:19:20 2001 +0000 @@ -37,8 +37,13 @@ #include #include #include +#include +#include +#include #include #include +#include +#include #include #include #include @@ -415,6 +420,86 @@ } #endif +static gboolean socket_readable(GIOChannel *source, GIOCondition cond, gpointer ud) +{ + guchar type; + guchar subtype; + guint32 len; + guchar *data; + guint32 x; + + debug_printf("Core says: "); + g_io_channel_read(source, &type, sizeof(type), &x); + if (x == 0) { + debug_printf("CORE IS GONE!\n"); + g_io_channel_close(source); + return FALSE; + } + debug_printf("%d ", type); + g_io_channel_read(source, &subtype, sizeof(subtype), &x); + if (x == 0) { + debug_printf("CORE IS GONE!\n"); + g_io_channel_close(source); + return FALSE; + } + debug_printf("%d ", subtype); + g_io_channel_read(source, (guchar *)&len, sizeof(len), &x); + if (x == 0) { + debug_printf("CORE IS GONE!\n"); + g_io_channel_close(source); + return FALSE; + } + debug_printf("(%d bytes)\n", len); + + data = g_malloc(len); + g_io_channel_read(source, data, len, &x); + if (x != len) { + debug_printf("CORE IS GONE! (read %d/%d bytes)\n", x, len); + g_free(data); + g_io_channel_close(source); + return FALSE; + } + + g_free(data); + return TRUE; +} + +static int open_socket(char *name) +{ + struct sockaddr_un saddr; + gint fd; + + if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) != -1) { + saddr.sun_family = AF_UNIX; + g_snprintf(saddr.sun_path, 108, "%s", name); + if (connect(fd, (struct sockaddr *)&saddr, sizeof(saddr)) != -1) + return fd; + else + debug_printf("Failed to assign %s to a socket (Error: %s)", + saddr.sun_path, strerror(errno)); + } else + debug_printf("Unable to open socket: %s", strerror(errno)); + close(fd); + return -1; +} + +static int ui_main() +{ + GIOChannel *channel; + int UI_fd; + char name[256]; + + g_snprintf(name, sizeof(name), "%s/gaim_%s.%d", g_get_tmp_dir(), g_get_user_name(), getpid()); + + UI_fd = open_socket(name); + if (UI_fd < 0) + return 1; + + channel = g_io_channel_unix_new(UI_fd); + g_io_add_watch(channel, G_IO_IN | G_IO_HUP | G_IO_ERR, socket_readable, NULL); + return 0; +} + static void set_first_user(char *name) { struct aim_user *u; @@ -623,6 +708,7 @@ load_prefs(); core_main(); + ui_main(); /* set the default username */ if (opt_user_arg != NULL) { @@ -685,6 +771,7 @@ if (convo_options & OPT_CONVO_CHECK_SPELLING) gtkspell_stop(); core_quit(); + /* don't need ui_quit here because ui doesn't create anything */ return 0; diff -r 0d5257faa66e -r 7e4757801725 src/core.c --- a/src/core.c Thu Oct 11 01:57:27 2001 +0000 +++ b/src/core.c Thu Oct 11 07:19:20 2001 +0000 @@ -73,6 +73,8 @@ size = va_arg(args2, int); } + pos -= sizeof(guchar) * 2 + 4; + /* now we do size */ memcpy(buffer + sizeof(guchar) * 2, &pos, 4); @@ -83,14 +85,9 @@ gint UI_write(struct UI *ui, guchar *data, gint len) { - guchar *send = g_new0(guchar, len + 6); gint sent; - send[0] = 'f'; - send[1] = 1; - memcpy(send + 2, &len, sizeof(len)); - memcpy(send + 6, data, len); /* we'll let the write silently fail because the read will pick it up as dead */ - g_io_channel_write(ui->channel, send, len + 6, &sent); + g_io_channel_write(ui->channel, data, len, &sent); return sent; }