Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dap-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
7
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dap
dap-sdk
Commits
9dcfc3fb
Commit
9dcfc3fb
authored
5 months ago
by
Constantin P.
💬
Browse files
Options
Downloads
Plain Diff
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
!407
Implementation improved
Pipeline
#45597
passed with stage
in 13 minutes and 42 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/include/dap_common.h
+1
-1
1 addition, 1 deletion
core/include/dap_common.h
core/src/dap_common.c
+14
-21
14 additions, 21 deletions
core/src/dap_common.c
with
15 additions
and
22 deletions
core/include/dap_common.h
+
1
−
1
View file @
9dcfc3fb
...
@@ -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
);
This diff is collapsed.
Click to expand it.
core/src/dap_common.c
+
14
−
21
View file @
9dcfc3fb
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment