2014-03-02 00:06:35 +01:00
|
|
|
/* log.c
|
2014-02-26 07:51:06 +01:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Toxic All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This file is part of Toxic.
|
|
|
|
*
|
|
|
|
* Toxic 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Toxic 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 Toxic. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
2014-09-22 10:29:28 +02:00
|
|
|
#include <sys/stat.h>
|
2014-02-26 07:51:06 +01:00
|
|
|
|
|
|
|
#include "configdir.h"
|
2014-06-12 00:06:55 +02:00
|
|
|
#include "toxic.h"
|
|
|
|
#include "windows.h"
|
2014-02-26 07:51:06 +01:00
|
|
|
#include "misc_tools.h"
|
2014-03-25 13:25:10 +01:00
|
|
|
#include "log.h"
|
2014-04-07 10:42:10 +02:00
|
|
|
#include "settings.h"
|
2014-09-22 10:29:28 +02:00
|
|
|
#include "line_info.h"
|
2014-04-07 10:42:10 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
extern struct user_settings *user_settings;
|
2014-02-26 07:51:06 +01:00
|
|
|
|
2014-09-22 23:09:39 +02:00
|
|
|
/* Opens log file or creates a new one */
|
|
|
|
static int init_logging_session(char *name, const char *selfkey, const char *otherkey, struct chatlog *log, int logtype)
|
2014-02-26 07:51:06 +01:00
|
|
|
{
|
2014-09-22 23:09:39 +02:00
|
|
|
if (selfkey == NULL || (logtype == LOG_CHAT && otherkey == NULL))
|
|
|
|
return -1;
|
2014-02-26 07:51:06 +01:00
|
|
|
|
2014-04-12 09:39:15 +02:00
|
|
|
if (!valid_nick(name))
|
|
|
|
name = UNKNOWN_NAME;
|
|
|
|
|
2014-09-23 00:38:46 +02:00
|
|
|
const char *namedash = logtype == LOG_PROMPT ? "" : "-";
|
2014-09-23 03:24:45 +02:00
|
|
|
const char *set_path = user_settings->chatlogs_path;
|
2014-08-27 05:21:32 +02:00
|
|
|
|
2014-02-26 07:51:06 +01:00
|
|
|
char *user_config_dir = get_user_config_dir();
|
2014-09-22 23:09:39 +02:00
|
|
|
int path_len = strlen(name) + strlen(".log") + strlen("-") + strlen(namedash);
|
|
|
|
path_len += strlen(set_path) ? *set_path : strlen(user_config_dir) + strlen(LOGDIR);
|
|
|
|
|
2014-09-22 23:34:30 +02:00
|
|
|
/* first 6 digits of selfkey */
|
2014-09-22 23:09:39 +02:00
|
|
|
char self_id[32];
|
2014-09-23 00:38:46 +02:00
|
|
|
path_len += KEY_IDENT_DIGITS * 2;
|
2014-09-22 23:09:39 +02:00
|
|
|
sprintf(&self_id[0], "%02X", selfkey[0] & 0xff);
|
|
|
|
sprintf(&self_id[2], "%02X", selfkey[1] & 0xff);
|
2014-09-22 23:34:30 +02:00
|
|
|
sprintf(&self_id[4], "%02X", selfkey[2] & 0xff);
|
2014-09-23 00:38:46 +02:00
|
|
|
self_id[KEY_IDENT_DIGITS * 2] = '\0';
|
2014-09-22 23:09:39 +02:00
|
|
|
|
|
|
|
char other_id[32] = {0};
|
|
|
|
|
|
|
|
switch (logtype) {
|
|
|
|
case LOG_CHAT:
|
2014-09-23 00:38:46 +02:00
|
|
|
path_len += KEY_IDENT_DIGITS * 2;
|
2014-09-22 23:09:39 +02:00
|
|
|
sprintf(&other_id[0], "%02X", otherkey[0] & 0xff);
|
|
|
|
sprintf(&other_id[2], "%02X", otherkey[1] & 0xff);
|
2014-09-22 23:34:30 +02:00
|
|
|
sprintf(&other_id[4], "%02X", otherkey[2] & 0xff);
|
2014-09-23 00:38:46 +02:00
|
|
|
other_id[KEY_IDENT_DIGITS * 2] = '\0';
|
2014-09-22 23:09:39 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LOG_GROUP:
|
|
|
|
strftime(other_id, sizeof(other_id), "%Y-%m-%d[%H:%M:%S]", get_time());
|
|
|
|
path_len += strlen(other_id);
|
|
|
|
break;
|
2014-02-26 23:15:34 +01:00
|
|
|
}
|
2014-02-26 07:51:06 +01:00
|
|
|
|
2014-09-22 23:09:39 +02:00
|
|
|
char log_path[MAX_STR_SIZE];
|
|
|
|
|
|
|
|
if (path_len >= sizeof(log_path)) {
|
2014-04-06 11:20:46 +02:00
|
|
|
free(user_config_dir);
|
2014-09-22 23:09:39 +02:00
|
|
|
return -1;
|
2014-02-26 23:15:34 +01:00
|
|
|
}
|
2014-02-26 07:51:06 +01:00
|
|
|
|
2014-09-22 23:09:39 +02:00
|
|
|
if (!string_is_empty(set_path))
|
|
|
|
snprintf(log_path, sizeof(log_path), "%s%s-%s%s%s.log", set_path, self_id, name, namedash, other_id);
|
2014-08-27 05:21:32 +02:00
|
|
|
else
|
2014-09-22 23:09:39 +02:00
|
|
|
snprintf(log_path, sizeof(log_path), "%s%s%s-%s%s%s.log", user_config_dir, LOGDIR, self_id, name, namedash, other_id);
|
2014-02-26 07:51:06 +01:00
|
|
|
|
2014-04-06 11:20:46 +02:00
|
|
|
free(user_config_dir);
|
|
|
|
|
2014-09-22 10:29:28 +02:00
|
|
|
log->file = fopen(log_path, "a+");
|
|
|
|
snprintf(log->path, sizeof(log->path), "%s", log_path);
|
2014-02-26 07:51:06 +01:00
|
|
|
|
2014-09-22 23:09:39 +02:00
|
|
|
if (log->file == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
2014-02-26 07:51:06 +01:00
|
|
|
}
|
|
|
|
|
2014-09-11 07:36:33 +02:00
|
|
|
#define LOG_FLUSH_LIMIT 1 /* limits calls to fflush to a max of one per LOG_FLUSH_LIMIT seconds */
|
2014-09-10 22:18:37 +02:00
|
|
|
|
2014-07-29 20:54:34 +02:00
|
|
|
void write_to_log(const char *msg, const char *name, struct chatlog *log, bool event)
|
2014-02-26 07:51:06 +01:00
|
|
|
{
|
2014-03-01 13:10:44 +01:00
|
|
|
if (!log->log_on)
|
2014-02-26 07:51:06 +01:00
|
|
|
return;
|
|
|
|
|
2014-03-04 01:21:52 +01:00
|
|
|
if (log->file == NULL) {
|
2014-03-01 13:10:44 +01:00
|
|
|
log->log_on = false;
|
2014-02-26 07:51:06 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-07 04:15:35 +02:00
|
|
|
char name_frmt[TOXIC_MAX_NAME_LENGTH + 3];
|
2014-02-26 12:35:19 +01:00
|
|
|
|
|
|
|
if (event)
|
|
|
|
snprintf(name_frmt, sizeof(name_frmt), "* %s", name);
|
|
|
|
else
|
|
|
|
snprintf(name_frmt, sizeof(name_frmt), "%s:", name);
|
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
const char *t = user_settings->time == TIME_12 ? "%Y/%m/%d [%I:%M:%S %p]" : "%Y/%m/%d [%H:%M:%S]";
|
2014-07-07 04:15:35 +02:00
|
|
|
char s[MAX_STR_SIZE];
|
2014-04-07 10:42:10 +02:00
|
|
|
strftime(s, MAX_STR_SIZE, t, get_time());
|
2014-04-19 23:58:13 +02:00
|
|
|
fprintf(log->file, "%s %s %s\n", s, name_frmt, msg);
|
2014-03-04 01:21:52 +01:00
|
|
|
|
2014-03-14 04:30:44 +01:00
|
|
|
uint64_t curtime = get_unix_time();
|
2014-03-04 01:21:52 +01:00
|
|
|
|
2014-03-05 09:31:12 +01:00
|
|
|
if (timed_out(log->lastwrite, curtime, LOG_FLUSH_LIMIT)) {
|
2014-03-04 01:21:52 +01:00
|
|
|
fflush(log->file);
|
2014-03-05 09:31:12 +01:00
|
|
|
log->lastwrite = curtime;
|
|
|
|
}
|
2014-03-01 13:10:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void log_disable(struct chatlog *log)
|
|
|
|
{
|
2014-03-04 01:21:52 +01:00
|
|
|
log->log_on = false;
|
|
|
|
|
|
|
|
if (log->file != NULL) {
|
|
|
|
fclose(log->file);
|
|
|
|
log->file = NULL;
|
2014-03-01 13:10:44 +01:00
|
|
|
}
|
2014-02-26 07:51:06 +01:00
|
|
|
}
|
2014-09-22 10:29:28 +02:00
|
|
|
|
2014-09-22 23:09:39 +02:00
|
|
|
void log_enable(char *name, const char *selfkey, const char *otherkey, struct chatlog *log, int logtype)
|
|
|
|
{
|
|
|
|
log->log_on = true;
|
|
|
|
|
|
|
|
if (log->file == NULL) {
|
|
|
|
if (init_logging_session(name, selfkey, otherkey, log, logtype) == -1)
|
|
|
|
log_disable(log);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-22 10:29:28 +02:00
|
|
|
/* Loads previous history from chat log */
|
|
|
|
void load_chat_history(ToxWindow *self, struct chatlog *log)
|
|
|
|
{
|
|
|
|
if (log->file == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (stat(log->path, &st) == -1) {
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, RED, "* Failed to stat log file");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sz = st.st_size;
|
|
|
|
|
|
|
|
if (sz <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
char *hstbuf = malloc(sz);
|
|
|
|
|
|
|
|
if (hstbuf == NULL)
|
2014-09-23 00:38:46 +02:00
|
|
|
exit_toxic_err("failed in load_chat_history", FATALERR_MEMORY);
|
2014-09-22 10:29:28 +02:00
|
|
|
|
|
|
|
if (fread(hstbuf, sz, 1, log->file) != 1) {
|
|
|
|
free(hstbuf);
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, RED, "* Failed to read log file");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Number of history lines to load: must not be larger than MAX_LINE_INFO_QUEUE - 2 */
|
2014-09-23 03:24:45 +02:00
|
|
|
int L = MIN(MAX_LINE_INFO_QUEUE - 2, user_settings->history_size);
|
2014-09-22 10:29:28 +02:00
|
|
|
int start, count = 0;
|
|
|
|
|
|
|
|
/* start at end and backtrace L lines or to the beginning of buffer */
|
|
|
|
for (start = sz - 1; start >= 0 && count < L; --start) {
|
|
|
|
if (hstbuf[start] == '\n')
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *line = strtok(&hstbuf[start + 1], "\n");
|
|
|
|
|
|
|
|
if (line == NULL) {
|
|
|
|
free(hstbuf);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (line != NULL) {
|
2014-09-22 19:49:09 +02:00
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "%s", line);
|
2014-09-22 10:29:28 +02:00
|
|
|
line = strtok(NULL, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "");
|
|
|
|
free(hstbuf);
|
|
|
|
}
|