b229fddbe217f8d5926a4e94633c33103753dee0
[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 boost::shared_ptr;
40 using boost::scoped_ptr;
41
42 UploadJob::UploadJob (shared_ptr<const Film> film)
43         : Job (film)
44         , _status (_("Waiting"))
45 {
46
47 }
48
49 string
50 UploadJob::name () const
51 {
52         return _("Copy DCP to TMS");
53 }
54
55 string
56 UploadJob::json_name () const
57 {
58         return N_("upload");
59 }
60
61 void
62 UploadJob::run ()
63 {
64         LOG_GENERAL_NC (N_("Upload job starting"));
65
66         scoped_ptr<Uploader> uploader;
67         switch (Config::instance()->tms_protocol ()) {
68         case FILE_TRANSFER_PROTOCOL_SCP:
69                 uploader.reset (new SCPUploader (bind (&UploadJob::set_status, this, _1), bind (&UploadJob::set_progress, this, _1, false)));
70                 break;
71         case FILE_TRANSFER_PROTOCOL_FTP:
72                 uploader.reset (new CurlUploader (bind (&UploadJob::set_status, this, _1), bind (&UploadJob::set_progress, this, _1, false)));
73                 break;
74         }
75
76         uploader->upload (_film->dir (_film->dcp_name ()));
77
78         set_progress (1);
79         set_status (N_(""));
80         set_state (FINISHED_OK);
81 }
82
83 string
84 UploadJob::status () const
85 {
86         boost::mutex::scoped_lock lm (_status_mutex);
87         string s = Job::status ();
88         if (!_status.empty () && !finished_in_error ()) {
89                 s += N_("; ") + _status;
90         }
91         return s;
92 }
93
94 void
95 UploadJob::set_status (string s)
96 {
97         boost::mutex::scoped_lock lm (_status_mutex);
98         _status = s;
99 }