1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
/*
Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DCP-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file src/job_manager_view.cc
* @brief Class generating a GTK widget to show the progress of jobs.
*/
#include "job_manager_view.h"
#include "batch_job_view.h"
#include "normal_job_view.h"
#include "wx_util.h"
#include "lib/job_manager.h"
#include "lib/job.h"
#include "lib/util.h"
#include "lib/exceptions.h"
#include <dcp/compose.h>
#include <iostream>
using std::string;
using std::list;
using std::map;
using std::min;
using std::cout;
using std::shared_ptr;
using std::weak_ptr;
using boost::bind;
#if BOOST_VERSION >= 106100
using namespace boost::placeholders;
#endif
/** @param parent Parent window.
* @param batch true to use BatchJobView, false to use NormalJobView.
*
* Must be called in the GUI thread.
*/
JobManagerView::JobManagerView (wxWindow* parent, bool batch)
: wxScrolledWindow (parent)
, _batch (batch)
{
_panel = new wxPanel (this);
auto sizer = new wxBoxSizer (wxVERTICAL);
sizer->Add (_panel, 1, wxEXPAND);
SetSizer (sizer);
_table = new wxFlexGridSizer (2, 6, 6);
_table->AddGrowableCol (0, 1);
_panel->SetSizer (_table);
SetScrollRate (0, 32);
EnableScrolling (false, true);
Bind (wxEVT_TIMER, boost::bind(&JobManagerView::periodic, this));
_timer.reset (new wxTimer (this));
_timer->Start (1000);
JobManager::instance()->JobAdded.connect (bind(&JobManagerView::job_added, this, _1));
JobManager::instance()->JobsReordered.connect (bind(&JobManagerView::replace, this));
}
void
JobManagerView::job_added (weak_ptr<Job> j)
{
auto job = j.lock ();
if (job) {
shared_ptr<JobView> v;
if (_batch) {
v.reset (new BatchJobView(job, this, _panel, _table));
} else {
v.reset (new NormalJobView(job, this, _panel, _table));
}
v->setup ();
_job_records.push_back (v);
}
FitInside();
job_list_changed ();
}
void
JobManagerView::periodic ()
{
for (auto i: _job_records) {
i->maybe_pulse ();
}
}
void
JobManagerView::replace ()
{
/* Make a new version of _job_records which reflects the order in JobManager's job list */
list<shared_ptr<JobView>> new_job_records;
for (auto i: JobManager::instance()->get()) {
/* Find this job's JobView */
for (auto j: _job_records) {
if (j->job() == i) {
new_job_records.push_back (j);
break;
}
}
}
for (auto i: _job_records) {
i->detach ();
}
_job_records = new_job_records;
for (auto i: _job_records) {
i->insert (i->insert_position ());
}
job_list_changed ();
}
void
JobManagerView::job_list_changed ()
{
for (auto i: _job_records) {
i->job_list_changed ();
}
}
|