Merge branch '1.0' into 1.0-seek
[dcpomatic.git] / src / lib / scp_dcp_job.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/scp_dcp_job.cc
21  *  @brief A job to copy DCPs to a SCP-enabled server.
22  */
23
24 #include <iostream>
25 #include <sys/stat.h>
26 #include <sys/types.h>
27 #include <fcntl.h>
28 #include <boost/filesystem.hpp>
29 #include <libssh/libssh.h>
30 #include "compose.hpp"
31 #include "scp_dcp_job.h"
32 #include "exceptions.h"
33 #include "config.h"
34 #include "log.h"
35 #include "film.h"
36 #include "cross.h"
37
38 #include "i18n.h"
39
40 using std::string;
41 using std::stringstream;
42 using std::min;
43 using boost::shared_ptr;
44
45 class SSHSession
46 {
47 public:
48         SSHSession ()
49                 : _connected (false)
50         {
51                 session = ssh_new ();
52                 if (session == 0) {
53                         throw NetworkError (_("could not start SSH session"));
54                 }
55         }
56
57         int connect ()
58         {
59                 int r = ssh_connect (session);
60                 if (r == 0) {
61                         _connected = true;
62                 }
63                 return r;
64         }
65
66         ~SSHSession ()
67         {
68                 if (_connected) {
69                         ssh_disconnect (session);
70                 }
71                 ssh_free (session);
72         }
73
74         ssh_session session;
75
76 private:        
77         bool _connected;
78 };
79
80 class SSHSCP
81 {
82 public:
83         SSHSCP (ssh_session s)
84         {
85                 scp = ssh_scp_new (s, SSH_SCP_WRITE | SSH_SCP_RECURSIVE, Config::instance()->tms_path().c_str ());
86                 if (!scp) {
87                         throw NetworkError (String::compose (_("could not start SCP session (%1)"), ssh_get_error (s)));
88                 }
89         }
90
91         ~SSHSCP ()
92         {
93                 ssh_scp_free (scp);
94         }
95
96         ssh_scp scp;
97 };
98
99
100 SCPDCPJob::SCPDCPJob (shared_ptr<const Film> f)
101         : Job (f)
102         , _status (_("Waiting"))
103 {
104
105 }
106
107 string
108 SCPDCPJob::name () const
109 {
110         return _("Copy DCP to TMS");
111 }
112
113 void
114 SCPDCPJob::run ()
115 {
116         _film->log()->log (N_("SCP DCP job starting"));
117         
118         SSHSession ss;
119         
120         set_status (_("connecting"));
121         
122         ssh_options_set (ss.session, SSH_OPTIONS_HOST, Config::instance()->tms_ip().c_str ());
123         ssh_options_set (ss.session, SSH_OPTIONS_USER, Config::instance()->tms_user().c_str ());
124         int const port = 22;
125         ssh_options_set (ss.session, SSH_OPTIONS_PORT, &port);
126         
127         int r = ss.connect ();
128         if (r != SSH_OK) {
129                 throw NetworkError (String::compose (_("Could not connect to server %1 (%2)"), Config::instance()->tms_ip(), ssh_get_error (ss.session)));
130         }
131         
132         int const state = ssh_is_server_known (ss.session);
133         if (state == SSH_SERVER_ERROR) {
134                 throw NetworkError (String::compose (_("SSH error (%1)"), ssh_get_error (ss.session)));
135         }
136         
137         r = ssh_userauth_password (ss.session, 0, Config::instance()->tms_password().c_str ());
138         if (r != SSH_AUTH_SUCCESS) {
139                 throw NetworkError (String::compose (_("Failed to authenticate with server (%1)"), ssh_get_error (ss.session)));
140         }
141         
142         SSHSCP sc (ss.session);
143         
144         r = ssh_scp_init (sc.scp);
145         if (r != SSH_OK) {
146                 throw NetworkError (String::compose (_("Could not start SCP session (%1)"), ssh_get_error (ss.session)));
147         }
148         
149         r = ssh_scp_push_directory (sc.scp, _film->dcp_name().c_str(), S_IRWXU);
150         if (r != SSH_OK) {
151                 throw NetworkError (String::compose (_("Could not create remote directory %1 (%2)"), _film->dcp_name(), ssh_get_error (ss.session)));
152         }
153         
154         boost::filesystem::path const dcp_dir = _film->dir (_film->dcp_name());
155         
156         boost::uintmax_t bytes_to_transfer = 0;
157         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (dcp_dir); i != boost::filesystem::directory_iterator(); ++i) {
158                 bytes_to_transfer += boost::filesystem::file_size (*i);
159         }
160         
161         boost::uintmax_t buffer_size = 64 * 1024;
162         char buffer[buffer_size];
163         boost::uintmax_t bytes_transferred = 0;
164         
165         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (dcp_dir); i != boost::filesystem::directory_iterator(); ++i) {
166                 
167                 string const leaf = boost::filesystem::path(*i).leaf().generic_string ();
168                 
169                 set_status (String::compose (_("copying %1"), leaf));
170                 
171                 boost::uintmax_t to_do = boost::filesystem::file_size (*i);
172                 ssh_scp_push_file (sc.scp, leaf.c_str(), to_do, S_IRUSR | S_IWUSR);
173
174                 FILE* f = fopen_boost (boost::filesystem::path (*i), "rb");
175                 if (f == 0) {
176                         throw NetworkError (String::compose (_("Could not open %1 to send"), *i));
177                 }
178
179                 while (to_do > 0) {
180                         int const t = min (to_do, buffer_size);
181                         size_t const read = fread (buffer, 1, t, f);
182                         if (read != size_t (t)) {
183                                 fclose (f);
184                                 throw ReadFileError (boost::filesystem::path (*i).string());
185                         }
186                         
187                         r = ssh_scp_write (sc.scp, buffer, t);
188                         if (r != SSH_OK) {
189                                 fclose (f);
190                                 throw NetworkError (String::compose (_("Could not write to remote file (%1)"), ssh_get_error (ss.session)));
191                         }
192                         to_do -= t;
193                         bytes_transferred += t;
194                         
195                         set_progress ((double) bytes_transferred / bytes_to_transfer);
196                 }
197
198                 fclose (f);
199         }
200         
201         set_progress (1);
202         set_status (N_(""));
203         set_state (FINISHED_OK);
204 }
205
206 string
207 SCPDCPJob::status () const
208 {
209         boost::mutex::scoped_lock lm (_status_mutex);
210         stringstream s;
211         s << Job::status ();
212         if (!_status.empty ()) {
213                 s << N_("; ") << _status;
214         }
215         return s.str ();
216 }
217
218 void
219 SCPDCPJob::set_status (string s)
220 {
221         boost::mutex::scoped_lock lm (_status_mutex);
222         _status = s;
223 }
224