Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Ben Boeckel
VTK
Commits
f2c60c2e
Commit
f2c60c2e
authored
5 years ago
by
T.J. Corona
Browse files
Options
Downloads
Patches
Plain Diff
vtkLogger: construct thread-unique scope stacks
parent
4237e3bb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Common/Core/vtkLogger.cxx
+13
-2
13 additions, 2 deletions
Common/Core/vtkLogger.cxx
with
13 additions
and
2 deletions
Common/Core/vtkLogger.cxx
+
13
−
2
View file @
f2c60c2e
...
...
@@ -22,7 +22,10 @@
#include
<cstdlib>
#include
<memory>
#include
<mutex>
#include
<sstream>
#include
<thread>
#include
<unordered_map>
#include
<vector>
//=============================================================================
...
...
@@ -72,10 +75,12 @@ namespace detail
{
#if VTK_MODULE_ENABLE_VTK_loguru
using
scope_pair
=
std
::
pair
<
std
::
string
,
std
::
shared_ptr
<
loguru
::
LogScopeRAII
>
>
;
static
std
::
mutex
g_mutex
;
static
std
::
unordered_map
<
std
::
thread
::
id
,
std
::
vector
<
scope_pair
>
>
g_vectors
;
static
std
::
vector
<
scope_pair
>&
get_vector
()
{
st
atic
std
::
vector
<
scope_pair
>
the_vector
{}
;
return
the
_vector
;
st
d
::
lock_guard
<
std
::
mutex
>
guard
(
g_mutex
)
;
return
g
_vector
s
[
std
::
this_thread
::
get_id
()]
;
}
static
void
push_scope
(
const
char
*
id
,
std
::
shared_ptr
<
loguru
::
LogScopeRAII
>
ptr
)
...
...
@@ -89,6 +94,12 @@ static void pop_scope(const char* id)
if
(
vector
.
size
()
>
0
&&
vector
.
back
().
first
==
id
)
{
vector
.
pop_back
();
if
(
vector
.
empty
())
{
std
::
lock_guard
<
std
::
mutex
>
guard
(
g_mutex
);
g_vectors
.
erase
(
std
::
this_thread
::
get_id
());
}
}
else
{
...
...
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