Make terminate_threads() less likely to leave _threads containing invalid pointers.
[dcpomatic.git] / src / lib / scp_uploader.cc
1 /*
2     Copyright (C) 2012-2015 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 "scp_uploader.h"
22 #include "exceptions.h"
23 #include "job.h"
24 #include "config.h"
25 #include "cross.h"
26 #include "compose.hpp"
27 #include <sys/stat.h>
28
29 #include "i18n.h"
30
31 using std::string;
32 using std::min;
33 using boost::shared_ptr;
34 using boost::function;
35
36 SCPUploader::SCPUploader (function<void (string)> set_status, function<void (float)> set_progress)
37         : Uploader (set_status, set_progress)
38 {
39         _session = ssh_new ();
40         if (!_session) {
41                 throw NetworkError (_("could not start SSH session"));
42         }
43
44         ssh_options_set (_session, SSH_OPTIONS_HOST, Config::instance()->tms_ip().c_str ());
45         ssh_options_set (_session, SSH_OPTIONS_USER, Config::instance()->tms_user().c_str ());
46         int const port = 22;
47         ssh_options_set (_session, SSH_OPTIONS_PORT, &port);
48
49         int r = ssh_connect (_session);
50         if (r != SSH_OK) {
51                 throw NetworkError (String::compose (_("Could not connect to server %1 (%2)"), Config::instance()->tms_ip(), ssh_get_error (_session)));
52         }
53
54         r = ssh_is_server_known (_session);
55         if (r == SSH_SERVER_ERROR) {
56                 throw NetworkError (String::compose (_("SSH error (%1)"), ssh_get_error (_session)));
57         }
58
59         r = ssh_userauth_password (_session, 0, Config::instance()->tms_password().c_str ());
60         if (r != SSH_AUTH_SUCCESS) {
61                 throw NetworkError (String::compose (_("Failed to authenticate with server (%1)"), ssh_get_error (_session)));
62         }
63
64         _scp = ssh_scp_new (_session, SSH_SCP_WRITE | SSH_SCP_RECURSIVE, Config::instance()->tms_path().c_str ());
65         if (!_scp) {
66                 throw NetworkError (String::compose (_("could not start SCP session (%1)"), ssh_get_error (_session)));
67         }
68
69         r = ssh_scp_init (_scp);
70         if (r != SSH_OK) {
71                 throw NetworkError (String::compose (_("Could not start SCP session (%1)"), ssh_get_error (_session)));
72         }
73 }
74
75 SCPUploader::~SCPUploader ()
76 {
77         ssh_scp_free (_scp);
78         ssh_disconnect (_session);
79         ssh_free (_session);
80 }
81
82 void
83 SCPUploader::create_directory (boost::filesystem::path directory)
84 {
85         /* Use generic_string so that we get forward-slashes in the path, even on Windows */
86         int const r = ssh_scp_push_directory (_scp, directory.generic_string().c_str(), S_IRWXU);
87         if (r != SSH_OK) {
88                 throw NetworkError (String::compose (_("Could not create remote directory %1 (%2)"), directory, ssh_get_error (_session)));
89         }
90 }
91
92 void
93 SCPUploader::upload_file (boost::filesystem::path from, boost::filesystem::path to, boost::uintmax_t& transferred, boost::uintmax_t total_size)
94 {
95         boost::uintmax_t to_do = boost::filesystem::file_size (from);
96         /* Use generic_string so that we get forward-slashes in the path, even on Windows */
97         ssh_scp_push_file (_scp, to.generic_string().c_str(), to_do, S_IRUSR | S_IWUSR);
98
99         FILE* f = fopen_boost (from, "rb");
100         if (f == 0) {
101                 throw NetworkError (String::compose (_("Could not open %1 to send"), from));
102         }
103
104         boost::uintmax_t buffer_size = 64 * 1024;
105         char buffer[buffer_size];
106
107         while (to_do > 0) {
108                 int const t = min (to_do, buffer_size);
109                 size_t const read = fread (buffer, 1, t, f);
110                 if (read != size_t (t)) {
111                         fclose (f);
112                         throw ReadFileError (from);
113                 }
114
115                 int const r = ssh_scp_write (_scp, buffer, t);
116                 if (r != SSH_OK) {
117                         fclose (f);
118                         throw NetworkError (String::compose (_("Could not write to remote file (%1)"), ssh_get_error (_session)));
119                 }
120                 to_do -= t;
121                 transferred += t;
122
123                 if (total_size > 0) {
124                         _set_progress ((double) transferred / total_size);
125                 }
126         }
127
128         fclose (f);
129 }