/* fe-dcc-send.c : irssi Copyright (C) 1999-2001 Timo Sirainen 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 */ #include "module.h" #include "signals.h" #include "levels.h" #include "dcc-file.h" #include "dcc-send.h" #include "module-formats.h" #include "printtext.h" #include "completion.h" #include "fe-dcc.h" static void dcc_connected(SEND_DCC_REC *dcc) { if (!IS_DCC_SEND(dcc)) return; printformat(dcc->server, NULL, MSGLEVEL_DCC, IRCTXT_DCC_SEND_CONNECTED, dcc->arg, dcc->nick, dcc->addrstr, dcc->port); } static void dcc_closed(SEND_DCC_REC *dcc) { double kbs; time_t secs; if (!IS_DCC_SEND(dcc)) return; secs = dcc->starttime == 0 ? -1 : time(NULL)-dcc->starttime; kbs = (double) (dcc->transfd-dcc->skipped) / (secs == 0 ? 1 : secs) / 1024.0; if (secs == -1) { /* aborted */ printformat(dcc->server, NULL, MSGLEVEL_DCC, IRCTXT_DCC_SEND_ABORTED, dcc->arg, dcc->nick); } else { printformat(dcc->server, NULL, MSGLEVEL_DCC, IRCTXT_DCC_SEND_COMPLETE, dcc->arg, (dcc->transfd+1023)/1024, dcc->nick, (long) secs, kbs); } } static void dcc_error_file_open(const char *nick, const char *fname, void *error) { g_return_if_fail(nick != NULL); g_return_if_fail(fname != NULL); printformat(NULL, NULL, MSGLEVEL_DCC, IRCTXT_DCC_SEND_FILE_OPEN_ERROR, fname, g_strerror(GPOINTER_TO_INT(error))); } static void dcc_error_send_exists(const char *nick, const char *fname) { g_return_if_fail(nick != NULL); g_return_if_fail(fname != NULL); printformat(NULL, NULL, MSGLEVEL_DCC, IRCTXT_DCC_SEND_EXISTS, fname, nick); } static void dcc_error_close_not_found(const char *type, const char *nick, const char *fname) { g_return_if_fail(type != NULL); g_return_if_fail(nick != NULL); g_return_if_fail(fname != NULL); if (g_strcasecmp(type, "SEND") != 0) return; if (fname == '\0') fname = "(ANY)"; printformat(NULL, NULL, MSGLEVEL_DCC, IRCTXT_DCC_SEND_NOT_FOUND, nick, fname); } static void sig_dcc_send_complete(GList **list, WINDOW_REC *window, const char *word, const char *line, int *want_space) { g_return_if_fail(list != NULL); g_return_if_fail(word != NULL); g_return_if_fail(line != NULL); if (*line == '\0' || strchr(line, ' ') != NULL) return; /* completing filename parameter for /DCC SEND */ *list = filename_complete(word, NULL); if (*list != NULL) { *want_space = FALSE; signal_stop(); } } static void sig_dcc_list_print(SEND_DCC_REC *dcc) { if (IS_DCC_SEND(dcc)) dcc_list_print_file((FILE_DCC_REC *) dcc); } void fe_dcc_send_init(void) { signal_add("dcc connected", (SIGNAL_FUNC) dcc_connected); signal_add("dcc closed", (SIGNAL_FUNC) dcc_closed); signal_add("dcc error file open", (SIGNAL_FUNC) dcc_error_file_open); signal_add("dcc error send exists", (SIGNAL_FUNC) dcc_error_send_exists); signal_add("dcc error close not found", (SIGNAL_FUNC) dcc_error_close_not_found); signal_add("complete command dcc send", (SIGNAL_FUNC) sig_dcc_send_complete); signal_add("dcc list print", (SIGNAL_FUNC) sig_dcc_list_print); } void fe_dcc_send_deinit(void) { signal_remove("dcc connected", (SIGNAL_FUNC) dcc_connected); signal_remove("dcc closed", (SIGNAL_FUNC) dcc_closed); signal_remove("dcc error file open", (SIGNAL_FUNC) dcc_error_file_open); signal_remove("dcc error send exists", (SIGNAL_FUNC) dcc_error_send_exists); signal_remove("dcc error close not found", (SIGNAL_FUNC) dcc_error_close_not_found); signal_remove("complete command dcc send", (SIGNAL_FUNC) sig_dcc_send_complete); signal_remove("dcc list print", (SIGNAL_FUNC) sig_dcc_list_print); }