C++11 tidying.
[dcpomatic.git] / src / lib / upload_job.cc
1 /*
2     Copyright (C) 2012-2019 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 /** @file src/upload_job.cc
22  *  @brief A job to copy DCPs to a server using libcurl.
23  */
24
25 #include "compose.hpp"
26 #include "upload_job.h"
27 #include "config.h"
28 #include "log.h"
29 #include "dcpomatic_log.h"
30 #include "film.h"
31 #include "scp_uploader.h"
32 #include "curl_uploader.h"
33 #include <iostream>
34
35 #include "i18n.h"
36
37 using std::string;
38 using std::min;
39 using std::shared_ptr;
40 using boost::scoped_ptr;
41 #if BOOST_VERSION >= 106100
42 using namespace boost::placeholders;
43 #endif
44
45 UploadJob::UploadJob (shared_ptr<const Film> film)
46         : Job (film)
47         , _status (_("Waiting"))
48 {
49
50 }
51
52 UploadJob::~UploadJob ()
53 {
54         stop_thread ();
55 }
56
57 string
58 UploadJob::name () const
59 {
60         return _("Copy DCP to TMS");
61 }
62
63 string
64 UploadJob::json_name () const
65 {
66         return N_("upload");
67 }
68
69 void
70 UploadJob::run ()
71 {
72         LOG_GENERAL_NC (N_("Upload job starting"));
73
74         scoped_ptr<Uploader> uploader;
75         switch (Config::instance()->tms_protocol()) {
76         case FileTransferProtocol::SCP:
77                 uploader.reset (new SCPUploader(bind (&UploadJob::set_status, this, _1), bind(&UploadJob::set_progress, this, _1, false)));
78                 break;
79         case FileTransferProtocol::FTP:
80                 uploader.reset (new CurlUploader(bind (&UploadJob::set_status, this, _1), bind(&UploadJob::set_progress, this, _1, false)));
81                 break;
82         }
83
84         uploader->upload (_film->dir(_film->dcp_name()));
85
86         set_progress (1);
87         set_status (N_(""));
88         set_state (FINISHED_OK);
89 }
90
91 string
92 UploadJob::status () const
93 {
94         boost::mutex::scoped_lock lm (_status_mutex);
95         string s = Job::status ();
96         if (!_status.empty () && !finished_in_error ()) {
97                 s += N_("; ") + _status;
98         }
99         return s;
100 }
101
102 void
103 UploadJob::set_status (string s)
104 {
105         boost::mutex::scoped_lock lm (_status_mutex);
106         _status = s;
107 }