From ed4d24b2824d64ad1b28d30180fa3d6bde2ed8f3 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 25 Nov 2001 16:13:12 +0000 Subject: /UPGRADE: Irssi no longer asks for /NAMES list from server when rejoining channels, but the nick list is transferred in session file. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2144 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/core/session.c | 114 ++++++++++++++++++++++++++++++++++----------- src/irc/core/irc-session.c | 30 +++++++++++- 2 files changed, 116 insertions(+), 28 deletions(-) (limited to 'src') diff --git a/src/core/session.c b/src/core/session.c index ad7460fd..c2a6d77a 100644 --- a/src/core/session.c +++ b/src/core/session.c @@ -30,6 +30,7 @@ #include "servers.h" #include "servers-setup.h" #include "channels.h" +#include "nicklist.h" static char *session_file; static char *irssi_binary; @@ -113,6 +114,31 @@ static void cmd_upgrade(const char *data) signal_emit("gui exit", 0); } +static void session_save_nick(CHANNEL_REC *channel, NICK_REC *nick, + CONFIG_REC *config, CONFIG_NODE *node) +{ + node = config_node_section(node, NULL, NODE_TYPE_BLOCK); + + config_node_set_str(config, node, "nick", nick->nick); + config_node_set_bool(config, node, "op", nick->op); + config_node_set_bool(config, node, "halfop", nick->halfop); + config_node_set_bool(config, node, "voice", nick->voice); + + signal_emit("session save nick", 4, channel, nick, config, node); +} + +static void session_save_channel_nicks(CHANNEL_REC *channel, CONFIG_REC *config, + CONFIG_NODE *node) +{ + GSList *tmp, *nicks; + + node = config_node_section(node, "nicks", NODE_TYPE_LIST); + nicks = nicklist_getnicks(channel); + for (tmp = nicks; tmp != NULL; tmp = tmp->next) + session_save_nick(channel, tmp->data, config, node); + g_slist_free(nicks); +} + static void session_save_channel(CHANNEL_REC *channel, CONFIG_REC *config, CONFIG_NODE *node) { @@ -125,27 +151,21 @@ static void session_save_channel(CHANNEL_REC *channel, CONFIG_REC *config, signal_emit("session save channel", 3, channel, config, node); } -static void session_restore_channel(SERVER_REC *server, CONFIG_NODE *node) +static void session_save_server_channels(SERVER_REC *server, + CONFIG_REC *config, + CONFIG_NODE *node) { - CHANNEL_REC *channel; - const char *name; - - name = config_node_get_str(node, "name", NULL); - if (name == NULL) - return; - - channel = CHAT_PROTOCOL(server)->channel_create(server, name, TRUE); - channel->topic = g_strdup(config_node_get_str(node, "topic", NULL)); - channel->key = g_strdup(config_node_get_str(node, "key", NULL)); - channel->session_rejoin = TRUE; + GSList *tmp; - signal_emit("session restore channel", 2, channel, node); + /* save channels */ + node = config_node_section(node, "channels", NODE_TYPE_LIST); + for (tmp = server->channels; tmp != NULL; tmp = tmp->next) + session_save_channel(tmp->data, config, node); } static void session_save_server(SERVER_REC *server, CONFIG_REC *config, CONFIG_NODE *node) { - GSList *tmp; int handle; node = config_node_section(node, NULL, NODE_TYPE_BLOCK); @@ -163,11 +183,6 @@ static void session_save_server(SERVER_REC *server, CONFIG_REC *config, signal_emit("session save server", 3, server, config, node); - /* save channels */ - node = config_node_section(node, "channels", NODE_TYPE_LIST); - for (tmp = server->channels; tmp != NULL; tmp = tmp->next) - session_save_channel(tmp->data, config, node); - /* fake the server disconnection */ g_io_channel_unref(net_sendbuffer_handle(server->handle)); net_sendbuffer_destroy(server->handle, FALSE); @@ -177,12 +192,56 @@ static void session_save_server(SERVER_REC *server, CONFIG_REC *config, server_disconnect(server); } +static void session_restore_channel_nicks(CHANNEL_REC *channel, + CONFIG_NODE *node) +{ + GSList *tmp; + + /* restore nicks */ + node = config_node_section(node, "nicks", -1); + if (node != NULL && node->type == NODE_TYPE_LIST) { + for (tmp = node->value; tmp != NULL; tmp = tmp->next) { + signal_emit("session restore nick", 2, + channel, tmp->data); + } + } +} + +static void session_restore_channel(SERVER_REC *server, CONFIG_NODE *node) +{ + CHANNEL_REC *channel; + const char *name; + + name = config_node_get_str(node, "name", NULL); + if (name == NULL) + return; + + channel = CHAT_PROTOCOL(server)->channel_create(server, name, TRUE); + channel->topic = g_strdup(config_node_get_str(node, "topic", NULL)); + channel->key = g_strdup(config_node_get_str(node, "key", NULL)); + channel->session_rejoin = TRUE; + + signal_emit("session restore channel", 2, channel, node); +} + +static void session_restore_server_channels(SERVER_REC *server, + CONFIG_NODE *node) +{ + GSList *tmp; + + /* restore channels */ + node = config_node_section(node, "channels", -1); + if (node != NULL && node->type == NODE_TYPE_LIST) { + for (tmp = node->value; tmp != NULL; tmp = tmp->next) + session_restore_channel(server, tmp->data); + } +} + static void session_restore_server(CONFIG_NODE *node) { CHAT_PROTOCOL_REC *proto; SERVER_CONNECT_REC *conn; SERVER_REC *server; - GSList *tmp; const char *chat_type, *address, *chatnet, *password, *nick; int port, handle; @@ -211,13 +270,6 @@ static void session_restore_server(CONFIG_NODE *node) server->session_reconnect = TRUE; signal_emit("session restore server", 2, server, node); - - /* restore channels */ - node = config_node_section(node, "channels", -1); - if (node != NULL && node->type == NODE_TYPE_LIST) { - for (tmp = node->value; tmp != NULL; tmp = tmp->next) - session_restore_channel(server, tmp->data); - } } } @@ -293,6 +345,10 @@ void session_init(void) signal_add("session save", (SIGNAL_FUNC) sig_session_save); signal_add("session restore", (SIGNAL_FUNC) sig_session_restore); + signal_add("session save server", (SIGNAL_FUNC) session_save_server_channels); + signal_add("session restore server", (SIGNAL_FUNC) session_restore_server_channels); + signal_add("session save channel", (SIGNAL_FUNC) session_save_channel_nicks); + signal_add("session restore channel", (SIGNAL_FUNC) session_restore_channel_nicks); signal_add("irssi init finished", (SIGNAL_FUNC) sig_init_finished); } @@ -304,5 +360,9 @@ void session_deinit(void) signal_remove("session save", (SIGNAL_FUNC) sig_session_save); signal_remove("session restore", (SIGNAL_FUNC) sig_session_restore); + signal_remove("session save server", (SIGNAL_FUNC) session_save_server_channels); + signal_remove("session restore server", (SIGNAL_FUNC) session_restore_server_channels); + signal_remove("session save channel", (SIGNAL_FUNC) session_save_channel_nicks); + signal_remove("session restore channel", (SIGNAL_FUNC) session_restore_channel_nicks); signal_remove("irssi init finished", (SIGNAL_FUNC) sig_init_finished); } diff --git a/src/irc/core/irc-session.c b/src/irc/core/irc-session.c index 4831a75f..cc8617a1 100644 --- a/src/irc/core/irc-session.c +++ b/src/irc/core/irc-session.c @@ -25,6 +25,7 @@ #include "irc-servers.h" #include "irc-channels.h" +#include "irc-nicklist.h" static void sig_session_save_server(IRC_SERVER_REC *server, CONFIG_REC *config, CONFIG_NODE *node) @@ -72,11 +73,36 @@ static void sig_session_restore_server(IRC_SERVER_REC *server, server->connrec->channels = g_strdup(config_node_get_str(node, "channels", NULL)); } +static void sig_session_restore_nick(IRC_CHANNEL_REC *channel, + CONFIG_NODE *node) +{ + const char *nick; + int op, voice; + NICK_REC *nickrec; + + if (!IS_IRC_CHANNEL(channel)) + return; + + nick = config_node_get_str(node, "nick", NULL); + if (nick == NULL) + return; + + op = config_node_get_bool(node, "op", FALSE); + voice = config_node_get_bool(node, "voice", FALSE); + nickrec = irc_nicklist_insert(channel, nick, op, voice, FALSE); + nickrec->halfop = config_node_get_bool(node, "halfop", FALSE); +} + static void session_restore_channel(IRC_CHANNEL_REC *channel) { + char *data; + signal_emit("event join", 4, channel->server, channel->name, channel->server->nick, channel->server->userhost); - irc_send_cmdv(channel->server, "NAMES %s", channel->name); + + data = g_strconcat(channel->server->nick, " ", channel->name, NULL); + signal_emit("event 366", 2, channel->server, data); + g_free(data); } static void sig_connected(IRC_SERVER_REC *server) @@ -105,6 +131,7 @@ void irc_session_init(void) { signal_add("session save server", (SIGNAL_FUNC) sig_session_save_server); signal_add("session restore server", (SIGNAL_FUNC) sig_session_restore_server); + signal_add("session restore nick", (SIGNAL_FUNC) sig_session_restore_nick); signal_add("server connected", (SIGNAL_FUNC) sig_connected); } @@ -113,6 +140,7 @@ void irc_session_deinit(void) { signal_remove("session save server", (SIGNAL_FUNC) sig_session_save_server); signal_remove("session restore server", (SIGNAL_FUNC) sig_session_restore_server); + signal_remove("session restore nick", (SIGNAL_FUNC) sig_session_restore_nick); signal_remove("server connected", (SIGNAL_FUNC) sig_connected); } -- cgit v1.2.3