-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsh_print.c
132 lines (109 loc) · 2.48 KB
/
sh_print.c
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#include <stdnoreturn.h>
#include <printf.h>
#include <sh/api.h>
#include <sh/debug.h>
#include <sh/print.h>
#include <shell.h>
#include <sync/mutex.h>
#include <sys/status_dword.h>
#include <util/misc.h>
sh_mutex_t output_lock;
void sh_printf(const char *fmt, ...) {
sh_mutex_acquire(&output_lock);
printf("[SYS]: ");
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
sh_mutex_release(&output_lock);
return;
}
void sh_println(const char *fmt, ...) {
sh_mutex_acquire(&output_lock);
printf("[SYS]: ");
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
sh_newline();
sh_mutex_release(&output_lock);
return;
}
void sh_errorf(FN_CALL_ARGS, const char *fmt, ...) {
sh_mutex_acquire(&output_lock);
printf("[ERROR]: ");
if (line != -1)
printf("[%s:%d %s]: ", file, line, fn);
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
sh_mutex_release(&output_lock);
return;
}
void sh_errorln(FN_CALL_ARGS, const char *fmt, ...) {
sh_mutex_acquire(&output_lock);
printf("[ERROR]: ");
if (line != -1)
printf("[%s:%d %s]: ", file, line, fn);
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
sh_newline();
sh_mutex_release(&output_lock);
return;
}
void sh_debugf(FN_CALL_ARGS, const char *fmt, ...) {
#if !defined(_SH_ANY_DEBUG)
_arg_not_used(file);
_arg_not_used(line);
_arg_not_used(fn);
_arg_not_used(fmt);
return;
#else
#pragma message "sh_debugf() enabled"
#endif
printf("[DEBUG]: ");
if (line != -1)
printf("[%s:%d %s]: ", file, line, fn);
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
return;
}
void sh_debugln(FN_CALL_ARGS, const char *fmt, ...) {
#if !defined(_SH_ANY_DEBUG)
_arg_not_used(file);
_arg_not_used(line);
_arg_not_used(fn);
_arg_not_used(fmt);
return;
#else
#pragma message "sh_debugln() enabled"
#endif
printf("[DEBUG]: ");
if (line != -1)
printf("[%s:%d %s]: ", file, line, fn);
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
sh_newline();
return;
}
noreturn void sh_panic(FN_CALL_ARGS, const char *fmt, ...) {
printf("-----!!!! PANIC !!!!-----\r\n");
sys_print_status_dword();
printf("[PANIC]: ");
if (line != -1)
printf("[%s:%d %s]: ", file, line, fn);
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
printf("\r\n-----!!!! PANIC !!!!-----\r\n");
sh_get_api()->sys_halt();
__builtin_unreachable();
}