summaryrefslogtreecommitdiff
path: root/lib/logger/log.c
blob: dc93784775dca3c48742717551752b944a2c47d6 (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
51
52
53
54
55
56
57
58
59
60
61
#define FOOLOS_MODULE_NAME "log"

#include <stdarg.h>
#include <stdbool.h>

#include "log.h"

#include "kernel/kernel.h"
#include "kernel/config.h"
#include "kernel/timer.h"
#include "kernel/fifo.h"

#include "lib/string/string.h"

static void log_string(char *str)
{
    while(*str!=0)
    {
	fifo_put(&get_fool()->std_out,*(str++));
    }
}

void log(char *module_name, int log_level, char *format_string, ...)
{   
    #ifdef FOOLOS_LOG_OFF
	return;
    #endif
    if(log_level<FOOLOS_LOG_LEVEL)return;

    char buf_info[256];
    char buf_log[256];
    char buf_time[20];

    uint32_t t=timer_get_ticks();
    uint32_t s=t/25;
    uint32_t ms=t*1000/25-1000*s;

    tfp_sprintf(buf_time,"[%3d.%05d]",s,ms);

    va_list va;
    va_start(va,format_string);
    tfp_vsprintf(buf_info,format_string,va);
    va_end(va);

    tfp_sprintf(buf_log,"\033[36;40m%s\033[31;40m %s:\033[37;40m %s\n",buf_time,module_name,buf_info);

    log_string(buf_log);
}

void panic(char *module_name,  char *message)
{
    char buf_log[256];
    tfp_sprintf(buf_log,"\033[41;37m\n !! KERNEL PANIC !! %s: %s\n\n",module_name,message);
    log_string(buf_log);

    while(1)
    {
        asm volatile("cli");
	asm volatile("hlt");
    }
}