Make a generic base for uploaders and move the SCP code into a subclass of that.
[dcpomatic.git] / src / lib / scp_uploader.cc
1 /*
2     Copyright (C) 2012-2015 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 #include "scp_uploader.h"
21 #include "exceptions.h"
22 #include "job.h"
23 #include "config.h"
24 #include "cross.h"
25 #include "compose.hpp"
26
27 #include "i18n.h"
28
29 using std::string;
30 using std::min;
31 using boost::shared_ptr;
32 using boost::function;
33
34 SCPUploader::SCPUploader (function<void (string)> set_status, function<void (float)> set_progress)
35         : Uploader (set_status, set_progress)
36 {
37         _session = ssh_new ();
38         if (!_session) {
39                 throw NetworkError (_("could not start SSH session"));
40         }
41
42         _set_status (_("connecting"));
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         int const r = ssh_scp_push_directory (_scp, directory.string().c_str(), S_IRWXU);
86         if (r != SSH_OK) {
87                 throw NetworkError (String::compose (_("Could not create remote directory %1 (%2)"), directory, ssh_get_error (_session)));
88         }
89 }
90
91 void
92 SCPUploader::upload_file (boost::filesystem::path from, boost::filesystem::path to, boost::uintmax_t& transferred, boost::uintmax_t total_size)
93 {
94         _set_status (String::compose (_("copying %1"), from.leaf ()));
95
96         boost::uintmax_t to_do = boost::filesystem::file_size (from);
97         ssh_scp_push_file (_scp, to.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 }