Merge master.
[dcpomatic.git] / src / wx / job_manager_view.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/job_manager_view.cc
21  *  @brief Class generating a GTK widget to show the progress of jobs.
22  */
23
24 #include "lib/job_manager.h"
25 #include "lib/job.h"
26 #include "lib/util.h"
27 #include "lib/exceptions.h"
28 #include "job_manager_view.h"
29 #include "wx_util.h"
30
31 using std::string;
32 using std::list;
33 using std::map;
34 using boost::shared_ptr;
35
36 /** Must be called in the GUI thread */
37 JobManagerView::JobManagerView (wxWindow* parent)
38         : wxScrolledWindow (parent)
39 {
40         _panel = new wxPanel (this);
41         wxSizer* sizer = new wxBoxSizer (wxVERTICAL);
42         sizer->Add (_panel, 1, wxEXPAND);
43         SetSizer (sizer);
44         
45         _table = new wxFlexGridSizer (5, 6, 6);
46         _table->AddGrowableCol (1, 1);
47         _panel->SetSizer (_table);
48
49         SetScrollRate (0, 32);
50
51         Connect (wxID_ANY, wxEVT_TIMER, wxTimerEventHandler (JobManagerView::periodic), 0, this);
52         _timer.reset (new wxTimer (this));
53         _timer->Start (1000);
54
55         update ();
56 }
57
58 void
59 JobManagerView::periodic (wxTimerEvent &)
60 {
61         update ();
62 }
63
64 /** Update the view by examining the state of each job.
65  *  Must be called in the GUI thread.
66  */
67 void
68 JobManagerView::update ()
69 {
70         list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
71
72         int index = 0;
73
74         for (list<shared_ptr<Job> >::iterator i = jobs.begin(); i != jobs.end(); ++i) {
75                 
76                 if (_job_records.find (*i) == _job_records.end ()) {
77                         wxStaticText* m = new wxStaticText (_panel, wxID_ANY, std_to_wx ((*i)->name ()));
78                         _table->Insert (index, m, 0, wxALIGN_CENTER_VERTICAL | wxALL, 6);
79                         
80                         JobRecord r;
81                         r.finalised = false;
82                         r.gauge = new wxGauge (_panel, wxID_ANY, 100);
83                         _table->Insert (index + 1, r.gauge, 1, wxEXPAND | wxLEFT | wxRIGHT);
84                         
85                         r.message = new wxStaticText (_panel, wxID_ANY, std_to_wx (""));
86                         _table->Insert (index + 2, r.message, 1, wxALIGN_CENTER_VERTICAL | wxALL, 6);
87
88                         r.cancel = new wxButton (_panel, wxID_ANY, _("Cancel"));
89                         r.cancel->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (JobManagerView::cancel_clicked), 0, this);
90                         _table->Insert (index + 3, r.cancel, 1, wxALIGN_CENTER_VERTICAL | wxALL, 6);
91
92                         r.details = new wxButton (_panel, wxID_ANY, _("Details..."));
93                         r.details->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (JobManagerView::details_clicked), 0, this);
94                         r.details->Enable (false);
95                         _table->Insert (index + 4, r.details, 1, wxALIGN_CENTER_VERTICAL | wxALL, 6);
96                         
97                         _job_records[*i] = r;
98                 }
99
100                 string const st = (*i)->status ();
101
102                 if (!(*i)->finished ()) {
103                         float const p = (*i)->overall_progress ();
104                         if (p >= 0) {
105                                 checked_set (_job_records[*i].message, st);
106                                 _job_records[*i].gauge->SetValue (p * 100);
107                         } else {
108                                 checked_set (_job_records[*i].message, wx_to_std (_("Running")));
109                                 _job_records[*i].gauge->Pulse ();
110                         }
111                 }
112
113                 if ((*i)->finished() && !_job_records[*i].finalised) {
114                         checked_set (_job_records[*i].message, st);
115                         if (!(*i)->finished_cancelled()) {
116                                 _job_records[*i].gauge->SetValue (100);
117                         }
118                         (*i)->Finished ();
119                         _job_records[*i].finalised = true;
120                         _job_records[*i].cancel->Enable (false);
121                         if (!(*i)->error_details().empty ()) {
122                                 _job_records[*i].details->Enable (true);
123                         }
124                 }
125
126                 index += 5;
127         }
128
129         _table->Layout ();
130         FitInside ();
131 }
132
133 void
134 JobManagerView::details_clicked (wxCommandEvent& ev)
135 {
136         wxObject* o = ev.GetEventObject ();
137
138         for (map<shared_ptr<Job>, JobRecord>::iterator i = _job_records.begin(); i != _job_records.end(); ++i) {
139                 if (i->second.details == o) {
140                         string s = i->first->error_summary();
141                         s[0] = toupper (s[0]);
142                         error_dialog (this, std_to_wx (String::compose ("%1.\n\n%2", s, i->first->error_details())));
143                 }
144         }
145 }
146
147 void
148 JobManagerView::cancel_clicked (wxCommandEvent& ev)
149 {
150         wxObject* o = ev.GetEventObject ();
151
152         for (map<shared_ptr<Job>, JobRecord>::iterator i = _job_records.begin(); i != _job_records.end(); ++i) {
153                 if (i->second.cancel == o) {
154                         i->first->cancel ();
155                 }
156         }
157 }