Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Main Repositories
otb
Commits
63417576
Commit
63417576
authored
5 years ago
by
Cédric Traizet
Browse files
Options
Downloads
Patches
Plain Diff
ENH: use smart pointer to manage the watcher list
parent
d79bbf76
No related branches found
No related tags found
3 merge requests
!648
Ci rcjob
,
!621
Release 7.0 (master)
,
!569
Better cleaning of logger objects in the Python Swig wrapper
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.cxx
+2
-7
2 additions, 7 deletions
...s/Wrappers/SWIG/src/python/otbProgressReporterManager.cxx
Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.h
+3
-1
3 additions, 1 deletion
...les/Wrappers/SWIG/src/python/otbProgressReporterManager.h
with
5 additions
and
8 deletions
Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.cxx
+
2
−
7
View file @
63417576
...
...
@@ -38,11 +38,6 @@ ProgressReporterManager::~ProgressReporterManager()
void
ProgressReporterManager
::
DeleteWatcherList
()
{
//Delete all stored progress reporter
for
(
auto
watcher
:
m_WatcherList
)
{
delete
watcher
;
}
m_WatcherList
.
clear
();
}
...
...
@@ -52,9 +47,9 @@ void ProgressReporterManager::LinkWatchers(itk::Object* itkNotUsed(caller), cons
{
const
Wrapper
::
AddProcessToWatchEvent
*
eventToWatch
=
dynamic_cast
<
const
Wrapper
::
AddProcessToWatchEvent
*>
(
&
event
);
auto
watch
=
new
WatcherType
(
eventToWatch
->
GetProcess
(),
eventToWatch
->
GetProcessDescription
());
auto
watch
=
std
::
make_unique
<
WatcherType
>
(
eventToWatch
->
GetProcess
(),
eventToWatch
->
GetProcessDescription
());
watch
->
SetCallback
(
m_Callback
);
m_WatcherList
.
push_back
(
watch
);
m_WatcherList
.
push_back
(
std
::
move
(
watch
)
)
;
}
}
}
This diff is collapsed.
Click to expand it.
Modules/Wrappers/SWIG/src/python/otbProgressReporterManager.h
+
3
−
1
View file @
63417576
...
...
@@ -27,6 +27,8 @@
#include
"otbSwigPrintCallback.h"
#include
"otbStandardOneLineFilterWatcher.h"
#include
<memory>
namespace
otb
{
...
...
@@ -54,7 +56,7 @@ public:
typedef
StandardOneLineFilterWatcher
<
CallbackType
>
WatcherType
;
/** Filter watcher list type */
typedef
std
::
vector
<
WatcherType
*
>
WatcherListType
;
typedef
std
::
vector
<
std
::
unique_ptr
<
WatcherType
>
>
WatcherListType
;
/** Command Member */
typedef
itk
::
MemberCommand
<
Self
>
AddProcessCommandType
;
...
...
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