Mercurial > pidgin
view src/socket.c @ 8986:8cf32769ba1b
[gaim-migrate @ 9761]
" This patch adds a Plugin Actions menu item after the
Account Actions menu. The Plugin Actions menu is
populated from the added 'actions' slot in
GaimPluginInfo. As a demonstration, the Idle Maker
plugin has been converted to no longer require GTK code
and the Preferences interface just to perform its
actions. Instead, it uses a Plugin Action to spawn a
Fields Request.
There's also a minor fix for consistency in the menu
building for buddy actions. The pre-existing method for
instructing a menu list to display a separator was to
insert a NULL rather than a proto_buddy_menu into the
GList of actions. The code for the buddy menus was
instead checking for a proto_buddy_menu with a '-'
label. This has been fixed, and it now correctly uses
NULL to indicate a separator."
"Date: 2004-05-16 02:25
Sender: taliesein
Logged In: YES
user_id=77326
I need to add a callback to this patch to watch for
loading/unloading of plugins (to determine when to rebuild
the menu). Since the appropriate way to handle Plugin
Actions is still mildly up for debate, I'm holding of on
correcting the patch until I know for sure whether I should
fix this patch, or scrap it and write a new one using a
different method."
"Date: 2004-05-18 12:26
Sender: taliesein
Logged In: YES
user_id=77326
I've completed changes to this patch to also add plugin load
and unload signals (it looks like plugin.c actually had
pre-signal callbacks in place, but they were never used or
converted to signals)
This patch now will correctly update the Plugin Action menu
as plugins load and unload."
I'm not entirely sure i like the ui of a plugins actions menu, but i think
that having some way for plugins to add actions on an account is a good
thing, and i'm not sure that every viable action fits under the accounts
actions menu. we may want to merge the two (the existing accounts actions
and this plugins actions), but both times it came up in #gaim no one seemed
to want to comment, and on one commented to the gaim-devel post either.
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Thu, 20 May 2004 05:11:44 +0000 |
parents | fa6395637e2c |
children | 61852117568f |
line wrap: on
line source
/* * gaim-remote * * Gaim is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ /* Somewhat inspired by XMMS*/ /* This provides code for connecting to a Gaim socket and communicating with * it. It will eventually be made a library once the core and ui are split. */ #include <sys/types.h> #include <sys/socket.h> #include <sys/un.h> #include <unistd.h> #include "gaim.h" #include "gaim-socket.h" void cui_send_packet (int fd, struct gaim_cui_packet *p) { int len = sizeof(p->type) + sizeof(p->subtype) + sizeof(p->length) + p->length; char *pack = g_malloc(len); char *a = pack; memcpy (a, &(p->type), sizeof(p->type)); a = a + sizeof(p->type); memcpy (a, &(p->subtype), sizeof(p->subtype)); a = a + sizeof(p->subtype); memcpy (a, &(p->length), sizeof(p->length)); a = a + sizeof(p->length); memcpy (a, p->data, p->length); write(fd, pack, len); g_free(pack); } void cui_packet_append_string(struct gaim_cui_packet *p, char *str) { int len = p->length + strlen(str); char *k = g_malloc(len); memcpy(k, p->data, p->length); memcpy(k + p->length, str, strlen(str)); if (p->data) g_free(p->data); p->data = k; p->length = len; } void cui_packet_append_char(struct gaim_cui_packet *p, char c) { int len = p->length + sizeof(char); char *k = g_malloc(len); memcpy(k, p->data, p->length); k[p->length] = c; if (p->data) g_free(p->data); p->data = k; p->length = len; } void cui_packet_append_raw(struct gaim_cui_packet *p, char *str, int len) { int lent = p->length + len; char *k = g_malloc(lent); memcpy(k, p->data, p->length); memcpy(k + p->length, str, len); if (p->data) g_free(p->data); p->data = k; p->length = lent; } struct gaim_cui_packet *cui_packet_new(guchar type, guchar subtype) { struct gaim_cui_packet *p = g_new0(struct gaim_cui_packet, 1); p->type = type; p->subtype = subtype; p->length = 0; p->data = NULL; return p; } void cui_packet_free(struct gaim_cui_packet *p) { if (p->data) g_free(p->data); g_free(p); } struct gaim_cui_packet *cui_read_packet(int fd) { struct gaim_cui_packet *p = g_new0(struct gaim_cui_packet, 1); char *data = NULL; if (!(read(fd, &p->type, sizeof(p->type)))) { g_free(p); return NULL; } if (!(read(fd, &p->subtype, sizeof(p->subtype)))) { g_free(p); return NULL; } if (!(read(fd, &p->length, sizeof(p->length)))) { g_free(p); return NULL; } if (p->length) { data = g_malloc(p->length); if (!(read(fd, data, p->length))) { g_free(p); return NULL; } } p->data = data; return p; } /* copied directly from xmms_connect_to_session */ gint gaim_connect_to_session(gint session) { gint fd; uid_t stored_uid, euid; struct sockaddr_un saddr; if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) != -1) { saddr.sun_family = AF_UNIX; stored_uid = getuid(); euid = geteuid(); setuid(euid); sprintf(saddr.sun_path, "%s/gaim_%s.%d", g_get_tmp_dir(), g_get_user_name(), session); setreuid(stored_uid, euid); if (connect(fd, (struct sockaddr *) &saddr, sizeof (saddr)) != -1) return fd; } close(fd); return -1; } gboolean gaim_session_exists(int sess) { struct gaim_cui_packet *pack = NULL; int fd = gaim_connect_to_session(sess); if (fd > 0) { pack = cui_packet_new(CUI_TYPE_META, CUI_META_PING); cui_send_packet(fd, pack); cui_packet_free(pack); close(fd); } else { return FALSE; } return TRUE; }