5d3cc0f9cf74ad2c0eabb5ea2824d268168f9fa1
[dcpomatic.git] / src / wx / job_view.cc
1 /*
2     Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "job_view.h"
22 #include "wx_util.h"
23 #include "message_dialog.h"
24 #include "lib/job.h"
25 #include "lib/job_manager.h"
26 #include "lib/compose.hpp"
27 #include "lib/config.h"
28 #include "lib/send_notification_email_job.h"
29 #include "lib/transcode_job.h"
30 #include "lib/analyse_audio_job.h"
31 #include <wx/wx.h>
32
33 using std::string;
34 using std::min;
35 using boost::shared_ptr;
36 using boost::bind;
37 using boost::dynamic_pointer_cast;
38
39 JobView::JobView (shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table)
40         : _job (job)
41         , _table (table)
42         , _parent (parent)
43         , _container (container)
44         , _gauge (0)
45 {
46
47 }
48
49 void
50 JobView::setup ()
51 {
52         int n = insert_position ();
53
54         _gauge_message = new wxBoxSizer (wxVERTICAL);
55         _gauge = new wxGauge (_container, wxID_ANY, 100);
56         /* This seems to be required to allow the gauge to shrink under OS X */
57         _gauge->SetMinSize (wxSize (0, -1));
58         _gauge_message->Add (_gauge, 0, wxEXPAND | wxLEFT | wxRIGHT);
59         _message = new wxStaticText (_container, wxID_ANY, wxT (" \n "), wxDefaultPosition, wxDefaultSize, wxST_ELLIPSIZE_MIDDLE);
60         _gauge_message->Add (_message, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
61         _table->Insert (n, _gauge_message, 1, wxEXPAND | wxLEFT | wxRIGHT);
62         ++n;
63
64         _buttons = new wxBoxSizer (wxHORIZONTAL);
65
66         _cancel = new wxButton (_container, wxID_ANY, _("Cancel"));
67         _cancel->Bind (wxEVT_BUTTON, &JobView::cancel_clicked, this);
68         _buttons->Add (_cancel, 1, wxALIGN_CENTER_VERTICAL);
69
70         _details = new wxButton (_container, wxID_ANY, _("Details..."));
71         _details->Bind (wxEVT_BUTTON, &JobView::details_clicked, this);
72         _details->Enable (false);
73         _buttons->Add (_details, 1, wxALIGN_CENTER_VERTICAL);
74
75         finish_setup (_container, _buttons);
76
77         _controls = new wxBoxSizer (wxVERTICAL);
78         _controls->Add (_buttons);
79         _notify = new wxCheckBox (_container, wxID_ANY, _("Notify when complete"));
80         _notify->Bind (wxEVT_CHECKBOX, bind (&JobView::notify_clicked, this));
81         _notify->SetValue (Config::instance()->default_notify());
82         _controls->Add (_notify);
83
84         _table->Insert (n, _controls, 1, wxALIGN_CENTER_VERTICAL | wxALL, 3);
85
86         _progress_connection = _job->Progress.connect (boost::bind (&JobView::progress, this));
87         _finished_connection = _job->Finished.connect (boost::bind (&JobView::finished, this));
88
89         progress ();
90
91         _table->Layout ();
92 }
93
94 void
95 JobView::maybe_pulse ()
96 {
97         if (_gauge && _job->running() && !_job->progress()) {
98                 _gauge->Pulse ();
99         }
100 }
101
102 void
103 JobView::progress ()
104 {
105         string whole = "<b>" + _job->name () + "</b>\n";
106         if (!_job->sub_name().empty ()) {
107                 whole += _job->sub_name() + " ";
108         }
109         whole += _job->status ();
110         if (whole != _last_message) {
111                 _message->SetLabelMarkup (std_to_wx (whole));
112                 /* This hack fixes the size of _message on OS X */
113                 _message->InvalidateBestSize ();
114                 _message->SetSize (_message->GetBestSize ());
115                 _gauge_message->Layout ();
116                 _last_message = whole;
117         }
118         if (_job->progress ()) {
119                 _gauge->SetValue (min (100.0f, _job->progress().get() * 100));
120         }
121 }
122
123 void
124 JobView::finished ()
125 {
126         progress ();
127
128         if (!_job->finished_cancelled ()) {
129                 _gauge->SetValue (100);
130         }
131
132         _cancel->Enable (false);
133         _notify->Enable (false);
134         if (!_job->error_details().empty ()) {
135                 _details->Enable (true);
136         }
137
138         if (_job->message()) {
139                 MessageDialog* d = new MessageDialog (_parent, _job->name(), _job->message().get());
140                 d->ShowModal ();
141                 d->Destroy ();
142         }
143
144         if ((dynamic_pointer_cast<TranscodeJob>(_job) || dynamic_pointer_cast<AnalyseAudioJob>(_job)) && _notify->GetValue()) {
145                 if (Config::instance()->notification(Config::MESSAGE_BOX)) {
146                         wxMessageBox (std_to_wx(_job->name() + ": " + _job->status()), _("DCP-o-matic"), wxICON_INFORMATION);
147                 }
148                 if (Config::instance()->notification(Config::EMAIL)) {
149                         string body = Config::instance()->notification_email();
150                         boost::algorithm::replace_all (body, "$JOB_NAME", _job->name());
151                         boost::algorithm::replace_all (body, "$JOB_STATUS", _job->status());
152                         JobManager::instance()->add_after (_job, shared_ptr<Job> (new SendNotificationEmailJob (body)));
153                 }
154         }
155 }
156
157 void
158 JobView::details_clicked (wxCommandEvent &)
159 {
160         string s = _job->error_summary();
161         s[0] = toupper (s[0]);
162         error_dialog (_parent, std_to_wx(s), std_to_wx(_job->error_details()));
163 }
164
165 void
166 JobView::cancel_clicked (wxCommandEvent &)
167 {
168         if (confirm_dialog (_parent, _("Are you sure you want to cancel this job?"))) {
169                 _job->cancel ();
170         }
171 }
172
173 void
174 JobView::insert (int pos)
175 {
176         _table->Insert (pos, _gauge_message, 1, wxEXPAND | wxLEFT | wxRIGHT);
177         _table->Insert (pos + 1, _controls, 1, wxALIGN_CENTER_VERTICAL | wxALL, 3);
178         _table->Layout ();
179 }
180
181 void
182 JobView::detach ()
183 {
184         _table->Detach (_gauge_message);
185         _table->Detach (_controls);
186 }
187
188 void
189 JobView::notify_clicked ()
190 {
191         Config::instance()->set_default_notify (_notify->GetValue ());
192 }