-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcapdebug.cpp
73 lines (57 loc) · 1.47 KB
/
capdebug.cpp
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
*
* Copyright (c) 2018 - 2019 Mateusz 'mteg' Golicz
*
* Distributed under CC BY-SA 4.0 license
*
*/
#include <cstdarg>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "capdebug.h"
int capDebug::report(unsigned int level, const char *fmt, ...) {
va_list ap;
char msgBuffer[1024];
if (level > capDebug::debugLevel) return 0;
va_start(ap, fmt);
vsnprintf(msgBuffer, 1023, fmt, ap);
ringInsert(msgBuffer);
va_end(ap);
return 0;
}
int capDebug::error(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vsnprintf(capDebug::errorMessage, CA_ERROR_MAX, fmt, ap);
ringInsert(capDebug::errorMessage);
va_end(ap);
return 0;
}
void capDebug::assert(void *ptr)
{
if(!ptr)
abort();
}
unsigned int capDebug::debugLevel;
char capDebug::errorMessage[CA_ERROR_MAX];
unsigned int capDebug::ring_pos, capDebug::ring_count;
struct capRingEntry capDebug::ring[RING_ENTRY_COUNT];
int capDebug::init() {
capDebug::debugLevel = 0;
capDebug::errorMessage[0] = 0;
capDebug::ring_pos = 0;
capDebug::ring_count = 0;
return 0;
}
size_t capDebug::ringSize() {
return ring_count;
}
const char *capDebug::ringGet(unsigned int n) {
return ring[(ring_pos - ring_count + n) & (RING_ENTRY_COUNT - 1)].entry;
}
void capDebug::ringInsert(const char *msg) {
if(ring_count < RING_ENTRY_COUNT) ring_count++;
strncpy(ring[ring_pos++ % (RING_ENTRY_COUNT - 1)].entry, msg, RING_ENTRY_LENGTH - 1);
}