aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/log.cpp
blob: f91d52cf9f4e86a41444f83d701597b9503b97c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <cstdarg>
#include <cstdio>
#include <cstdlib>
#include <string>

#include "log.h"

using namespace crepe::util;

static const char * const LOG_PREFIX[] = {
	[log_level::DEBUG] = "[DBG] ",
	[log_level::INFO] = "[INFO] ",
	[log_level::WARNING] = "[WARN] ",
	[log_level::ERROR] = "[ERR] ",
};

static void va_logf(enum log_level level, va_list args, const std::string fmt) {
	va_list args_copy;
	va_copy(args_copy, args);

	// prepend log level and ensure newline
	std::string format_fixed = LOG_PREFIX[level] + fmt;
	if (!format_fixed.ends_with("\n")) format_fixed += "\n";

	size_t sz = vsnprintf(NULL, 0, format_fixed.c_str(), args_copy) + 1;
	char * msg = (char *) malloc(sz);
	va_end(args_copy);

	vsnprintf(msg, sz, format_fixed.c_str(), args);

	// TODO: also log to file or smth
	printf("%s", msg);
	fflush(stdout);

	free(msg);
}

void crepe::util::logf(const char * fmt, ...) {
	va_list args;
	va_start(args, fmt);
	va_logf(crepe::util::log_level::DEBUG, args, fmt);
	va_end(args);
}

void crepe::util::logf(log_level level, const char * fmt, ...) {
	va_list args;
	va_start(args, fmt);
	va_logf(level, args, fmt);
	va_end(args);
}