diff options
author | Timo Sirainen <cras@irssi.org> | 2001-11-25 16:13:12 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-11-25 16:13:12 +0000 |
commit | ed4d24b2824d64ad1b28d30180fa3d6bde2ed8f3 (patch) | |
tree | 3e7f77c3061341da8c945868745e39227e5f5b6e /src/core | |
parent | f0ce4f221b64d091595205631a08d5567ba00343 (diff) | |
download | irssi-ed4d24b2824d64ad1b28d30180fa3d6bde2ed8f3.zip |
/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
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/session.c | 114 |
1 files changed, 87 insertions, 27 deletions
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); } |