102 lines
2 KiB
C
102 lines
2 KiB
C
#include "log.h"
|
|
|
|
#include "render.h"
|
|
#include <time.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include "yugine.h"
|
|
|
|
#include "script.h"
|
|
|
|
int logLevel = 0;
|
|
|
|
/* Four levels of log:
|
|
0 info
|
|
1 warn
|
|
2 error
|
|
3 critical
|
|
*/
|
|
|
|
char *logstr[] = { "info", "warn", "error", "critical" };
|
|
char *catstr[] = {"engine", "script", "render"};
|
|
|
|
FILE *logfile = NULL;
|
|
|
|
#define ERROR_BUFFER 1024
|
|
#define CONSOLE_BUF 1024*1024 /* 5MB */
|
|
|
|
char *lastlog;
|
|
char *consolelog;
|
|
|
|
void log_init()
|
|
{
|
|
lastlog = malloc(ERROR_BUFFER+1);
|
|
consolelog = malloc(CONSOLE_BUF+1);
|
|
}
|
|
|
|
void mYughLog(int category, int priority, int line, const char *file, const char *message, ...)
|
|
{
|
|
#ifndef NDEBUG
|
|
if (priority >= logLevel) {
|
|
time_t now = time(0);
|
|
struct tm *tinfo = localtime(&now);
|
|
char timestr[50];
|
|
strftime(timestr,50,"%y", tinfo);
|
|
|
|
double ticks = (double)clock()/CLOCKS_PER_SEC;
|
|
|
|
va_list args;
|
|
va_start(args, message);
|
|
char msgbuffer[ERROR_BUFFER] = { '\0' };
|
|
vsnprintf(msgbuffer, ERROR_BUFFER, message, args);
|
|
va_end(args);
|
|
|
|
|
|
char buffer[ERROR_BUFFER] = { '\0' };
|
|
snprintf(buffer, ERROR_BUFFER, "%s:%d: %s, %s: %s\n", file, line, logstr[priority], catstr[category], msgbuffer);
|
|
|
|
log_print(buffer);
|
|
// if (category == LOG_SCRIPT && priority >= 2)
|
|
// js_stacktrace();
|
|
}
|
|
|
|
#endif
|
|
}
|
|
|
|
void log_print(const char *str)
|
|
{
|
|
fprintf(stderr, "%s", str);
|
|
fflush(stderr);
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
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);
|
|
}
|