Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review 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
mantidproject
mantid
Commits
f1897a59
Commit
f1897a59
authored
6 years ago
by
Samuel Jones
Browse files
Options
Downloads
Patches
Plain Diff
Re #23901 Move member function to non-member state
parent
c1e10885
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MantidPlot/src/ProjectRecovery.cpp
+23
-17
23 additions, 17 deletions
MantidPlot/src/ProjectRecovery.cpp
MantidPlot/src/ProjectRecovery.h
+0
-4
0 additions, 4 deletions
MantidPlot/src/ProjectRecovery.h
with
23 additions
and
21 deletions
MantidPlot/src/ProjectRecovery.cpp
+
23
−
17
View file @
f1897a59
...
...
@@ -243,6 +243,24 @@ Poco::File addLockFile(const Poco::Path &lockFilePath) {
return
lockFile
;
}
/**
* Checks the passed parameter and if it is an empty group then it returns true.
*
* @param ws :: check this workspace to see if it's an empty group
* @return true :: bool when it is an empty group
* @return false :: bool when it is not an empty group
*/
bool
checkIfEmptyGroup
(
const
Mantid
::
API
::
Workspace_sptr
&
ws
)
{
if
(
auto
groupWS
=
boost
::
dynamic_pointer_cast
<
Mantid
::
API
::
WorkspaceGroup
>
(
ws
))
{
if
(
groupWS
->
isEmpty
())
{
g_log
.
debug
(
"Empty group was present when recovery ran so was removed"
);
return
true
;
}
}
return
false
;
}
const
std
::
string
OUTPUT_PROJ_NAME
=
"recovery.mantid"
;
const
std
::
string
SAVING_TIME_KEY
=
"projectRecovery.secondsBetween"
;
...
...
@@ -631,8 +649,6 @@ void ProjectRecovery::saveWsHistories(const Poco::Path &historyDestFolder) {
// Hold a copy to the shared pointers so they do not get deleted under us
auto
wsHandles
=
ads
.
getObjects
(
Mantid
::
Kernel
::
DataServiceHidden
::
Include
);
removeEmptyGroupsFromADS
(
wsHandles
);
if
(
wsHandles
.
empty
())
{
return
;
}
...
...
@@ -647,6 +663,11 @@ void ProjectRecovery::saveWsHistories(const Poco::Path &historyDestFolder) {
alg
->
setLogging
(
false
);
for
(
auto
i
=
0u
;
i
<
wsHandles
.
size
();
++
i
)
{
// Check if workspace is an empty worksapce group and remove it if it is as
// well as skip
if
(
checkIfEmptyGroup
(
wsHandles
[
i
]))
continue
;
std
::
string
filename
=
std
::
to_string
(
i
)
+
".py"
;
Poco
::
Path
destFilename
=
historyDestFolder
;
...
...
@@ -664,21 +685,6 @@ void ProjectRecovery::saveWsHistories(const Poco::Path &historyDestFolder) {
}
}
void
ProjectRecovery
::
removeEmptyGroupsFromADS
(
std
::
vector
<
boost
::
shared_ptr
<
Mantid
::
API
::
Workspace
>>
&
wsHandles
)
{
for
(
auto
i
=
0u
;
i
<
wsHandles
.
size
();
++
i
)
{
auto
groupWS
=
boost
::
dynamic_pointer_cast
<
Mantid
::
API
::
WorkspaceGroup
>
(
wsHandles
[
i
]);
if
(
groupWS
&&
groupWS
->
isEmpty
())
{
// Remove from ADS and from wsHandles
g_log
.
warning
(
"Empty group was present when recovery ran so was removed"
);
Mantid
::
API
::
AnalysisDataService
::
Instance
().
remove
(
wsHandles
[
i
]
->
getName
());
wsHandles
.
erase
(
wsHandles
.
begin
()
+
i
);
}
}
}
void
ProjectRecovery
::
removeOlderCheckpoints
()
{
// Currently set to a month in microseconds
const
int64_t
timeToDeleteAfter
=
2592000000000
;
...
...
This diff is collapsed.
Click to expand it.
MantidPlot/src/ProjectRecovery.h
+
0
−
4
View file @
f1897a59
...
...
@@ -115,10 +115,6 @@ private:
// Return true if the folder at the end of the path is older than a month.
bool
olderThanAGivenTime
(
const
Poco
::
Path
&
path
,
int64_t
elapsedTime
);
// Remove Empty WorkspaceGroups from the ADS and passed vector
void
removeEmptyGroupsFromADS
(
std
::
vector
<
boost
::
shared_ptr
<
Mantid
::
API
::
Workspace
>>
&
wsHandles
);
/// Background thread which runs the saving body
std
::
thread
m_backgroundSavingThread
;
...
...
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