Some portability fixes.
[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 (4, 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.details = new wxButton (_panel, wxID_ANY, _("Details..."));
89                         r.details->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (JobManagerView::details_clicked), 0, this);
90                         r.details->Enable (false);
91                         _table->Insert (index + 3, r.details, 1, wxALIGN_CENTER_VERTICAL | wxALL, 6);
92                         
93                         _job_records[*i] = r;
94                 }
95
96                 string const st = (*i)->status ();
97
98                 if (!(*i)->finished ()) {
99                         float const p = (*i)->overall_progress ();
100                         if (p >= 0) {
101                                 _job_records[*i].message->SetLabel (std_to_wx (st));
102                                 _job_records[*i].gauge->SetValue (p * 100);
103                         } else {
104                                 _job_records[*i].message->SetLabel (_("Running"));
105                                 _job_records[*i].gauge->Pulse ();
106                         }
107                 }
108                 
109                 if ((*i)->finished() && !_job_records[*i].finalised) {
110                         _job_records[*i].gauge->SetValue (100);
111                         _job_records[*i].message->SetLabel (std_to_wx (st));
112                         _job_records[*i].finalised = true;
113                         if (!(*i)->error_details().empty ()) {
114                                 _job_records[*i].details->Enable (true);
115                         }
116                 }
117
118                 index += 4;
119         }
120
121         _table->Layout ();
122         FitInside ();
123 }
124
125 void
126 JobManagerView::details_clicked (wxCommandEvent& ev)
127 {
128         wxObject* o = ev.GetEventObject ();
129
130         for (map<boost::shared_ptr<Job>, JobRecord>::iterator i = _job_records.begin(); i != _job_records.end(); ++i) {
131                 if (i->second.details == o) {
132                         string s = i->first->error_summary();
133                         s[0] = toupper (s[0]);
134                         error_dialog (this, std_to_wx (String::compose ("%1.\n\n%2", s, i->first->error_details())));
135                 }
136         }
137 }