2000-04-27 06:31:14 -04:00
|
|
|
/*
|
2001-07-15 10:07:48 -04:00
|
|
|
log-away.c : Awaylog handling
|
2000-04-27 06:31:14 -04:00
|
|
|
|
2001-07-15 10:07:48 -04:00
|
|
|
Copyright (C) 1999-2001 Timo Sirainen
|
2000-04-27 06:31:14 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2007-05-08 14:41:10 -04:00
|
|
|
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.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2000-04-27 06:31:14 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "module.h"
|
|
|
|
#include "signals.h"
|
|
|
|
#include "levels.h"
|
|
|
|
#include "log.h"
|
2001-07-15 10:07:48 -04:00
|
|
|
#include "servers.h"
|
2000-04-27 06:31:14 -04:00
|
|
|
#include "settings.h"
|
2015-10-03 08:32:38 -04:00
|
|
|
#include "write-buffer.h"
|
2000-04-27 06:31:14 -04:00
|
|
|
|
2000-06-01 21:15:51 -04:00
|
|
|
static LOG_REC *awaylog;
|
|
|
|
static int away_filepos;
|
|
|
|
static int away_msgs;
|
|
|
|
|
|
|
|
static void sig_log_written(LOG_REC *log)
|
|
|
|
{
|
|
|
|
if (log != awaylog) return;
|
|
|
|
|
|
|
|
away_msgs++;
|
|
|
|
}
|
|
|
|
|
2001-07-15 10:07:48 -04:00
|
|
|
static void awaylog_open(void)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2002-12-28 12:54:13 -05:00
|
|
|
const char *fname;
|
2000-04-26 04:03:38 -04:00
|
|
|
LOG_REC *log;
|
2000-04-27 06:31:14 -04:00
|
|
|
int level;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
fname = settings_get_str("awaylog_file");
|
2002-12-28 12:54:13 -05:00
|
|
|
level = settings_get_level("awaylog_level");
|
|
|
|
if (*fname == '\0' || level == 0) return;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-04-27 06:31:14 -04:00
|
|
|
log = log_find(fname);
|
2000-07-23 10:18:32 -04:00
|
|
|
if (log != NULL && log->handle != -1)
|
|
|
|
return; /* already open */
|
|
|
|
|
2000-05-18 04:46:56 -04:00
|
|
|
if (log == NULL) {
|
2000-10-17 19:37:21 -04:00
|
|
|
log = log_create_rec(fname, level);
|
2000-04-27 06:31:14 -04:00
|
|
|
log->temp = TRUE;
|
|
|
|
log_update(log);
|
2000-05-18 04:46:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!log_start_logging(log)) {
|
|
|
|
/* creating log file failed? close it. */
|
|
|
|
log_close(log);
|
2000-06-01 21:15:51 -04:00
|
|
|
return;
|
2000-04-27 06:31:14 -04:00
|
|
|
}
|
2000-06-01 21:15:51 -04:00
|
|
|
|
2015-10-02 11:13:49 -04:00
|
|
|
/* Flush the dirty buffers to disk before acquiring the file position */
|
|
|
|
write_buffer_flush();
|
|
|
|
|
2000-06-01 21:15:51 -04:00
|
|
|
awaylog = log;
|
|
|
|
away_filepos = lseek(log->handle, 0, SEEK_CUR);
|
|
|
|
away_msgs = 0;
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2001-07-15 10:07:48 -04:00
|
|
|
static void awaylog_close(void)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
|
|
|
const char *fname;
|
2000-04-27 06:31:14 -04:00
|
|
|
LOG_REC *log;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
fname = settings_get_str("awaylog_file");
|
|
|
|
if (*fname == '\0') return;
|
|
|
|
|
2000-04-27 06:31:14 -04:00
|
|
|
log = log_find(fname);
|
|
|
|
if (log == NULL || log->handle == -1) {
|
2000-04-26 04:03:38 -04:00
|
|
|
/* awaylog not open */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-06-01 21:15:51 -04:00
|
|
|
if (awaylog == log) awaylog = NULL;
|
|
|
|
|
2015-10-02 11:13:49 -04:00
|
|
|
/* Flush the dirty buffers to disk before showing the away log */
|
|
|
|
write_buffer_flush();
|
|
|
|
|
2000-06-01 21:15:51 -04:00
|
|
|
signal_emit("awaylog show", 3, log, GINT_TO_POINTER(away_msgs),
|
|
|
|
GINT_TO_POINTER(away_filepos));
|
2000-04-27 06:31:14 -04:00
|
|
|
log_close(log);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2001-07-15 10:07:48 -04:00
|
|
|
static void sig_away_changed(SERVER_REC *server)
|
|
|
|
{
|
|
|
|
if (server->usermode_away)
|
|
|
|
awaylog_open();
|
|
|
|
else
|
|
|
|
awaylog_close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void log_away_init(void)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2007-01-07 14:16:59 -05:00
|
|
|
char *awaylog_file;
|
|
|
|
|
2000-06-01 21:15:51 -04:00
|
|
|
awaylog = NULL;
|
|
|
|
away_filepos = 0;
|
|
|
|
away_msgs = 0;
|
|
|
|
|
2007-01-07 14:16:59 -05:00
|
|
|
awaylog_file = g_strconcat(get_irssi_dir(), "/away.log", NULL);
|
|
|
|
settings_add_str("log", "awaylog_file", awaylog_file);
|
|
|
|
g_free(awaylog_file);
|
2002-12-28 12:54:13 -05:00
|
|
|
settings_add_level("log", "awaylog_level", "msgs hilight");
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-06-01 21:15:51 -04:00
|
|
|
signal_add("log written", (SIGNAL_FUNC) sig_log_written);
|
2001-07-15 10:07:48 -04:00
|
|
|
signal_add("away mode changed", (SIGNAL_FUNC) sig_away_changed);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2001-07-15 10:07:48 -04:00
|
|
|
void log_away_deinit(void)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2000-06-01 21:15:51 -04:00
|
|
|
signal_remove("log written", (SIGNAL_FUNC) sig_log_written);
|
2001-07-15 10:07:48 -04:00
|
|
|
signal_remove("away mode changed", (SIGNAL_FUNC) sig_away_changed);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|