Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
8f41a05c
Commit
8f41a05c
authored
1 year ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
disambiguate cJobItems from jobItems
parent
979577a5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2338
cleanup JobsSet
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
GUI/Model/Tune/JobsSet.cpp
+8
-3
8 additions, 3 deletions
GUI/Model/Tune/JobsSet.cpp
GUI/Model/Tune/JobsSet.h
+1
-0
1 addition, 0 deletions
GUI/Model/Tune/JobsSet.h
GUI/View/JobControl/JobsQModel.cpp
+4
-4
4 additions, 4 deletions
GUI/View/JobControl/JobsQModel.cpp
with
13 additions
and
7 deletions
GUI/Model/Tune/JobsSet.cpp
+
8
−
3
View file @
8f41a05c
...
...
@@ -68,6 +68,11 @@ QVector<JobItem*> JobsSet::jobItems() const
return
QVector
<
JobItem
*>
(
m_job_items
.
begin
(),
m_job_items
.
end
());
}
QVector
<
const
JobItem
*>
JobsSet
::
cJobItems
()
const
{
return
QVector
<
const
JobItem
*>
(
m_job_items
.
begin
(),
m_job_items
.
end
());
}
//! restore instrument and sample model from backup for given JobItem
void
JobsSet
::
restore
(
JobItem
*
job_item
,
int
index
)
{
...
...
@@ -173,7 +178,7 @@ void JobsSet::removeJob(JobItem* job_item)
QString
JobsSet
::
generateJobName
()
{
int
maxJobIndex
=
0
;
for
(
const
auto
*
job_item
:
j
obItems
())
{
for
(
const
JobItem
*
job_item
:
cJ
obItems
())
{
if
(
job_item
->
batchInfo
()
->
jobName
().
startsWith
(
"job"
))
maxJobIndex
=
std
::
max
(
maxJobIndex
,
job_item
->
batchInfo
()
->
jobName
().
mid
(
3
).
toInt
());
}
...
...
@@ -188,7 +193,7 @@ QString JobsSet::generateJobName()
bool
JobsSet
::
hasUnfinishedJobs
()
{
for
(
auto
*
job_item
:
j
obItems
())
for
(
const
JobItem
*
job_item
:
cJ
obItems
())
if
(
isFitting
(
job_item
->
batchInfo
()
->
status
()))
return
true
;
...
...
@@ -265,7 +270,7 @@ void JobsSet::onProgressUpdate()
int
global_progress
(
0
);
int
nRunningJobs
(
0
);
for
(
auto
*
job_item
:
j
obItems
())
for
(
const
JobItem
*
job_item
:
cJ
obItems
())
if
(
isRunning
(
job_item
->
batchInfo
()
->
status
()))
{
global_progress
+=
job_item
->
batchInfo
()
->
progress
();
nRunningJobs
++
;
...
...
This diff is collapsed.
Click to expand it.
GUI/Model/Tune/JobsSet.h
+
1
−
0
View file @
8f41a05c
...
...
@@ -45,6 +45,7 @@ public:
void
addJobItem
(
JobItem
*
job_item
);
QVector
<
JobItem
*>
jobItems
()
const
;
QVector
<
const
JobItem
*>
cJobItems
()
const
;
void
restore
(
JobItem
*
job_item
,
int
index
);
...
...
This diff is collapsed.
Click to expand it.
GUI/View/JobControl/JobsQModel.cpp
+
4
−
4
View file @
8f41a05c
...
...
@@ -47,11 +47,11 @@ int JobsQModel::rowCount(const QModelIndex&) const
QVariant
JobsQModel
::
data
(
const
QModelIndex
&
index
,
int
role
)
const
{
QVector
<
JobItem
*>
jobs
=
m_jobs
->
j
obItems
();
QVector
<
const
JobItem
*>
jobs
=
m_jobs
->
cJ
obItems
();
if
(
!
index
.
isValid
()
||
index
.
row
()
>=
jobs
.
size
()
||
index
.
row
()
<
0
)
return
{};
JobItem
*
item
=
jobs
[
index
.
row
()];
const
JobItem
*
item
=
jobs
[
index
.
row
()];
if
(
role
==
Qt
::
DisplayRole
)
return
item
->
batchInfo
()
->
jobName
();
...
...
@@ -68,7 +68,7 @@ JobItem* JobsQModel::jobItemForIndex(const QModelIndex& index) const
QModelIndex
JobsQModel
::
indexForJob
(
JobItem
*
job
)
{
QVector
<
JobItem
*>
jobs
=
m_jobs
->
j
obItems
();
QVector
<
const
JobItem
*>
jobs
=
m_jobs
->
cJ
obItems
();
int
idx
=
jobs
.
indexOf
(
job
);
if
(
idx
!=
-
1
)
return
index
(
idx
,
0
);
...
...
@@ -100,7 +100,7 @@ void JobsQModel::cancelJob(const QModelIndex& index)
void
JobsQModel
::
emitJobsQModelChanged
(
JobItem
*
job
)
{
QVector
<
JobItem
*>
jobs
=
m_jobs
->
j
obItems
();
QVector
<
const
JobItem
*>
jobs
=
m_jobs
->
cJ
obItems
();
int
i
=
jobs
.
indexOf
(
job
);
if
(
i
!=
-
1
)
{
QModelIndex
idx
=
index
(
i
,
0
);
...
...
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