prosperon/source/engine/debug/log.c

104 lines
2 KiB
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#include "log.h"
2022-02-06 10:14:57 -06:00
#include "render.h"
2021-11-30 21:29:18 -06:00
#include <time.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
2022-12-19 12:16:51 -06:00
#include <stdio.h>
#include "yugine.h"
2021-11-30 21:29:18 -06:00
2023-04-28 20:55:24 -05:00
#include "script.h"
int logLevel = 0;
/* Four levels of log:
0 info
1 warn
2 error
3 critical
*/
2021-11-30 21:29:18 -06:00
2023-01-31 17:41:09 -06:00
char *logstr[] = { "info", "warn", "error", "critical" };
2023-05-27 10:13:20 -05:00
char *catstr[] = {"engine", "script", "render"};
FILE *logfile = NULL;
#define ERROR_BUFFER 1024
#define CONSOLE_BUF 1024*1024*5 /* 5MB */
2022-12-19 12:16:51 -06:00
char *lastlog;
char *consolelog;
void log_init()
{
lastlog = malloc(ERROR_BUFFER+1);
consolelog = malloc(CONSOLE_BUF+1);
}
2022-12-19 12:16:51 -06:00
2022-02-06 10:14:57 -06:00
void mYughLog(int category, int priority, int line, const char *file, const char *message, ...)
2021-11-30 21:29:18 -06:00
{
#ifndef NDEBUG
2021-11-30 21:29:18 -06:00
if (priority >= logLevel) {
time_t now = time(0);
2023-05-24 20:45:50 -05:00
struct tm *tinfo = localtime(&now);
2023-05-03 13:50:37 -05:00
char timestr[50];
2023-05-24 20:45:50 -05:00
strftime(timestr,50,"%y", tinfo);
2021-11-30 21:29:18 -06:00
2023-05-03 13:50:37 -05:00
double ticks = (double)clock()/CLOCKS_PER_SEC;
2021-11-30 21:29:18 -06:00
va_list args;
va_start(args, message);
char msgbuffer[ERROR_BUFFER] = { '\0' };
vsnprintf(msgbuffer, ERROR_BUFFER, message, args);
va_end(args);
2021-11-30 21:29:18 -06:00
char buffer[ERROR_BUFFER] = { '\0' };
2023-05-27 10:13:20 -05:00
snprintf(buffer, ERROR_BUFFER, "%s:%d: %s, %s: %s\n", file, line, logstr[priority], catstr[category], msgbuffer);
2021-11-30 21:29:18 -06:00
log_print(buffer);
2023-09-11 02:46:12 -05:00
// if (category == LOG_SCRIPT && priority >= 2)
// js_stacktrace();
}
if (priority >= 2)
print_stacktrace();
2023-05-24 20:45:50 -05:00
#endif
}
void log_print(const char *str)
{
fprintf(stderr, "%s", str);
fflush(stderr);
2023-03-17 10:25:35 -05:00
strncat(consolelog, str, CONSOLE_BUF);
if (logfile) {
fprintf(logfile, "%s", str);
fflush(logfile);
}
snprintf(lastlog, ERROR_BUFFER, "%s", str);
}
void log_setfile(char *file) {
freopen(file, "w", stderr);
freopen(file, "w", stdout);
}
void log_cat(FILE *f) {
char out[1024];
while (fgets(out, sizeof(out), f)) {
out[strcspn(out, "\n")] = '\0';
YughInfo(out);
2021-11-30 21:29:18 -06:00
}
}
void sg_logging(const char *tag, uint32_t lvl, uint32_t id, const char *msg, uint32_t line, const char *file, void *data) {
lvl = 3-lvl;
mYughLog(2, lvl, line, file, "tag: %s, msg: %s", tag, msg);
}