1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-29 13:27:46 +02:00
toxic/src/log.h

73 lines
2.0 KiB
C
Raw Normal View History

2014-02-26 07:51:06 +01:00
/* log.h
*
*
* 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/>.
*
*/
#ifndef LOG_H
#define LOG_H
2014-03-25 13:25:10 +01:00
struct chatlog {
FILE *file;
time_t lastwrite;
char path[MAX_STR_SIZE];
2014-03-25 13:25:10 +01:00
bool log_on; /* specific to current chat window */
};
typedef enum LOG_TYPE {
LOG_TYPE_PROMPT,
LOG_TYPE_CHAT,
} LOG_TYPE;
2014-02-26 12:35:19 +01:00
/* Initializes a log. This function must be called before any other logging operations.
*
* Return 0 on success.
* Return -1 on failure.
*/
int log_init(struct chatlog *log, const char *name, const char *selfkey, const char *otherkey, LOG_TYPE type);
2014-03-04 01:21:52 +01:00
/* formats/writes line to log file */
void write_to_log(const char *msg, const char *name, struct chatlog *log, bool event);
/* enables logging for specified log.
*
* Returns 0 on success.
* Returns -1 on failure.
*/
int log_enable(struct chatlog *log);
2014-03-04 01:21:52 +01:00
/* disables logging for specified log and closes file */
2014-03-02 00:06:35 +01:00
void log_disable(struct chatlog *log);
/* Loads chat log history and prints it to `self` window.
*
* Return 0 on success or if log file doesn't exist.
* Return -1 on failure.
*/
int load_chat_history(ToxWindow *self, struct chatlog *log);
/* Renames chatlog file `src` to `dest`.
*
* Return 0 on success or if no log exists.
* Return -1 on failure.
*/
int rename_logfile(const char *src, const char *dest, const char *selfkey, const char *otherkey, int winnum);
2018-10-08 19:39:04 +02:00
#endif /* LOG_H */