forked from B-Y-P/4coder-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
4ed_log.cpp
57 lines (46 loc) · 1.39 KB
/
4ed_log.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
/*
* Mr. 4th Dimention - Allen Webster
*
* 14.08.2019
*
* Core logging implementation.
*
*/
// TOP
global Log global_log = {};
internal void
log_init(void){
global_log.mutex = system_mutex_make();
global_log.arena = make_arena_system();
}
internal b32
log_string(String_Const_u8 str){
b32 result = false;
i32 thread_id = system_thread_get_id();
if (global_log.disabled_thread_id != thread_id){
system_mutex_acquire(global_log.mutex);
string_list_push(&global_log.arena, &global_log.list, push_string_copy(&global_log.arena, str));
system_mutex_release(global_log.mutex);
result = true;
}
return(result);
}
internal void
output_file_append(Thread_Context *tctx, Models *models, Editing_File *file, String_Const_u8 value);
internal b32
log_flush(Thread_Context *tctx, Models *models){
b32 result = false;
system_mutex_acquire(global_log.mutex);
global_log.disabled_thread_id = system_thread_get_id();
if (global_log.list.total_size > 0){
String_Const_u8 text = string_list_flatten(&global_log.arena, global_log.list);
output_file_append(tctx, models, models->log_buffer, text);
result = true;
}
linalloc_clear(&global_log.arena);
block_zero_struct(&global_log.list);
global_log.disabled_thread_id = 0;
system_mutex_release(global_log.mutex);
return(result);
}
// BOTTOM