Skip to content
Snippets Groups Projects
Commit 9dcfc3fb authored by Constantin P.'s avatar Constantin P. 💬
Browse files

Merge branch 'hotfix-12497-1' into 'master'

Implementation improved

See merge request !407
parents ea267c0f dce94f55
No related branches found
No related tags found
1 merge request!407Implementation improved
Pipeline #45597 passed with stage
in 13 minutes and 42 seconds
...@@ -1120,4 +1120,4 @@ DAP_STATIC_INLINE bool dap_stream_node_addr_is_blank(dap_stream_node_addr_t *a_a ...@@ -1120,4 +1120,4 @@ DAP_STATIC_INLINE bool dap_stream_node_addr_is_blank(dap_stream_node_addr_t *a_a
const char *dap_stream_node_addr_to_str_static(dap_stream_node_addr_t a_address); const char *dap_stream_node_addr_to_str_static(dap_stream_node_addr_t a_address);
void dap_common_enable_cleaner_log(size_t a_timeout, size_t *a_max_size); void dap_common_enable_cleaner_log(size_t a_timeout, size_t a_max_size);
...@@ -379,8 +379,8 @@ int dap_deserialize_multy(const uint8_t *a_data, uint64_t a_size, int a_count, . ...@@ -379,8 +379,8 @@ int dap_deserialize_multy(const uint8_t *a_data, uint64_t a_size, int a_count, .
return 0; return 0;
} }
int s_dap_log_open(const char *a_log_file_path) { static int s_dap_log_open(const char *a_log_file_path, bool a_new) {
if (! (s_log_file = s_log_file ? freopen(a_log_file_path, "w", s_log_file) : fopen( a_log_file_path , "a" )) ) if (! (s_log_file = s_log_file ? freopen(a_log_file_path, a_new ? "w" : "a", s_log_file) : fopen( a_log_file_path, a_new ? "w" : "a" )) )
return fprintf( stderr, "Can't open log file %s \n", a_log_file_path ), -1; return fprintf( stderr, "Can't open log file %s \n", a_log_file_path ), -1;
static char s_buf_file[LOG_BUF_SIZE]; static char s_buf_file[LOG_BUF_SIZE];
return setvbuf(s_log_file, s_buf_file, _IOLBF, LOG_BUF_SIZE); return setvbuf(s_log_file, s_buf_file, _IOLBF, LOG_BUF_SIZE);
...@@ -402,7 +402,7 @@ int dap_common_init( const char *a_console_title, const char *a_log_file_path, c ...@@ -402,7 +402,7 @@ int dap_common_init( const char *a_console_title, const char *a_log_file_path, c
for (int i = 0; i < 16; ++i) for (int i = 0; i < 16; ++i)
s_ansi_seq_color_len[i] =(unsigned int) strlen(s_ansi_seq_color[i]); s_ansi_seq_color_len[i] =(unsigned int) strlen(s_ansi_seq_color[i]);
if ( a_log_file_path && a_log_file_path[0] ) { if ( a_log_file_path && a_log_file_path[0] ) {
if (s_dap_log_open(a_log_file_path)) if (s_dap_log_open(a_log_file_path, false))
return -1; return -1;
if (a_log_dirpath != s_log_dir_path) if (a_log_dirpath != s_log_dir_path)
dap_stpcpy(s_log_dir_path, a_log_dirpath); dap_stpcpy(s_log_dir_path, a_log_dirpath);
...@@ -1563,26 +1563,19 @@ ssize_t dap_writev(dap_file_handle_t a_hf, const char* a_filename, iovec_t const ...@@ -1563,26 +1563,19 @@ ssize_t dap_writev(dap_file_handle_t a_hf, const char* a_filename, iovec_t const
} }
static void s_dap_common_log_cleanner_interval(void *a_max_size) { static void s_dap_common_log_cleanner_interval(void *a_max_size) {
size_t l_max_size = *((size_t*)a_max_size); size_t l_max_size = DAP_POINTER_TO_SIZE(a_max_size),
size_t l_log_size = ftell(s_log_file); l_log_size = ftello(s_log_file);
if (l_log_size == 0){ switch (l_log_size) {
log_it(L_ERROR, "The size of the log file could not be determined; cleaning is impossible."); case -1: return log_it(L_ERROR, "Can't tell log file size, error %d :\"%s\"", errno, dap_strerror(errno));
} else { case 0: return log_it(L_ERROR, "Log file is empty");
size_t l_size_mb = l_log_size / 1048576; default:
if (l_size_mb > l_max_size) { if ( l_log_size / 1048576 > l_max_size && s_dap_log_open(s_log_file_path, true) )
char *l_new_file = dap_strdup_printf("%s.old", s_log_file_path); return log_it(L_ERROR, "Can't reopen log file \"%s\"", s_log_file_path);
rename(s_log_file_path, l_new_file);
if (s_dap_log_open(s_log_file_path)) {
log_it(L_CRITICAL, "An error occurred The logging thread was not reopened.");
}
log_it(L_NOTICE, "log file overwritten.");
remove(l_new_file);
DAP_DELETE(l_new_file);
}
} }
} }
void dap_common_enable_cleaner_log(size_t a_timeout, size_t *a_max_size){ void dap_common_enable_cleaner_log(size_t a_timeout, size_t a_max_size){
dap_interval_timer_create(a_timeout, s_dap_common_log_cleanner_interval, a_max_size); dap_interval_timer_create(a_timeout, s_dap_common_log_cleanner_interval, DAP_SIZE_TO_POINTER(a_max_size));
} }
#ifdef __cplusplus #ifdef __cplusplus
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment