std::shared_ptr
[dcpomatic.git] / src / wx / verify_dcp_progress_dialog.cc
1 /*
2     Copyright (C) 2020 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
22 #include "verify_dcp_progress_dialog.h"
23 #include "wx_util.h"
24 #include "lib/cross.h"
25 #include "lib/job.h"
26 #include "lib/job_manager.h"
27 #include <wx/evtloop.h>
28 #include <string>
29
30
31 using std::string;
32 using boost::optional;
33 using std::shared_ptr;
34
35
36 static int const max_file_name_length = 80;
37
38
39 VerifyDCPProgressDialog::VerifyDCPProgressDialog (wxWindow* parent, wxString title)
40         : wxDialog (parent, wxID_ANY, title)
41         , _cancel (false)
42 {
43         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
44
45         _job_name = new wxStaticText (this, wxID_ANY, wxT(""));
46         overall_sizer->Add (_job_name, 0, wxEXPAND | wxTOP | wxLEFT | wxRIGHT, DCPOMATIC_SIZER_GAP);
47
48         _file_name = new wxStaticText (this, wxID_ANY, wxT(""));
49         wxFont file_name_font (*wxNORMAL_FONT);
50         file_name_font.SetFamily (wxFONTFAMILY_MODERN);
51         file_name_font.SetPointSize (file_name_font.GetPointSize() - 2);
52         _file_name->SetFont (file_name_font);
53
54         int w;
55         int h;
56         _file_name->GetTextExtent (std_to_wx(string(max_file_name_length, 'X')), &w, &h);
57         _file_name->SetMinSize (wxSize(w, -1));
58
59         overall_sizer->Add (_file_name, 0, wxEXPAND | wxLEFT | wxRIGHT | wxTOP, DCPOMATIC_SIZER_GAP);
60
61         _progress = new wxGauge (this, wxID_ANY, 100);
62         overall_sizer->Add (_progress, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
63
64         wxButton* cancel = new wxButton (this, wxID_ANY, _("Cancel"));
65         wxSizer* buttons = new wxBoxSizer (wxHORIZONTAL);
66         buttons->AddStretchSpacer ();
67         buttons->Add (cancel, 0);
68         overall_sizer->Add (buttons, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
69
70         SetSizerAndFit (overall_sizer);
71
72         cancel->Bind (wxEVT_BUTTON, boost::bind(&VerifyDCPProgressDialog::cancel, this));
73 }
74
75
76 void
77 VerifyDCPProgressDialog::cancel ()
78 {
79         _cancel = true;
80 }
81
82
83 bool
84 VerifyDCPProgressDialog::run (shared_ptr<Job> job)
85 {
86         Show ();
87
88         JobManager* jm = JobManager::instance ();
89         jm->add (job);
90
91         while (jm->work_to_do()) {
92                 wxEventLoopBase::GetActive()->YieldFor(wxEVT_CATEGORY_UI | wxEVT_CATEGORY_USER_INPUT);
93                 dcpomatic_sleep_seconds (1);
94                 optional<float> const progress = job->progress ();
95                 if (progress) {
96                         _progress->SetValue (*progress * 100);
97                 } else {
98                         _progress->Pulse ();
99                 }
100                 string const sub = job->sub_name ();
101                 size_t colon = sub.find (":");
102                 if (colon != string::npos) {
103                         _job_name->SetLabel (std_to_wx(sub.substr(0, colon)));
104                         string file_name;
105                         if ((sub.length() - colon - 1) > max_file_name_length) {
106                                 file_name = "..." + sub.substr(sub.length() - max_file_name_length + 3);
107                         } else {
108                                 file_name = sub.substr(colon + 1);
109                         }
110                         _file_name->SetLabel (std_to_wx(file_name));
111                 } else {
112                         _job_name->SetLabel (std_to_wx(sub));
113                 }
114
115                 if (_cancel) {
116                         break;
117                 }
118         }
119
120         return !_cancel;
121 }