1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 Eran Ifrah
// file name : sftp_worker_thread.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "SFTPStatusPage.h"
#include "cl_ssh.h"
#include "sftp.h"
#include "sftp_worker_thread.h"
#include <libssh/sftp.h>
#include <wx/ffile.h>
SFTPWorkerThread* SFTPWorkerThread::ms_instance = 0;
SFTPWorkerThread::SFTPWorkerThread()
: m_sftp(NULL)
, m_plugin(NULL)
{
}
SFTPWorkerThread::~SFTPWorkerThread() {}
SFTPWorkerThread* SFTPWorkerThread::Instance()
{
if(ms_instance == 0) { ms_instance = new SFTPWorkerThread(); }
return ms_instance;
}
void SFTPWorkerThread::Release()
{
if(ms_instance) {
ms_instance->Stop();
delete ms_instance;
}
ms_instance = 0;
}
void SFTPWorkerThread::ProcessRequest(ThreadRequest* request)
{
SFTPThreadRequet* req = dynamic_cast<SFTPThreadRequet*>(request);
// Check if we need to open an ssh connection
wxString currentAccout = m_sftp ? m_sftp->GetAccount() : "";
wxString requestAccount = req->GetAccount().GetAccountName();
if(currentAccout.IsEmpty() || currentAccout != requestAccount) {
m_sftp.reset(NULL);
DoConnect(req);
}
if(req->GetAction() == eSFTPActions::kConnect) {
// Nothing more to be done here
// Disconnect
m_sftp.reset(NULL);
return;
}
wxString msg;
wxString accountName = req->GetAccount().GetAccountName();
if(m_sftp && m_sftp->IsConnected()) {
msg.Clear();
try {
switch(req->GetAction()) {
case eSFTPActions::kConnect:
// We don't really need this case. Just make the compiler silence
return;
case eSFTPActions::kUpload: {
DoReportStatusBarMessage(wxString() << _("Uploading file: ") << req->GetRemoteFile());
SFTPAttribute::Ptr_t attr(new SFTPAttribute(NULL));
attr->SetPermissions(req->GetPermissions());
m_sftp->CreateRemoteFile(req->GetRemoteFile(), wxFileName(req->GetLocalFile()), attr);
msg << "Successfully uploaded file: " << req->GetLocalFile() << " -> " << req->GetRemoteFile();
DoReportMessage(accountName, msg, SFTPThreadMessage::STATUS_OK);
DoReportStatusBarMessage("");
break;
}
case eSFTPActions::kDownload:
case eSFTPActions::kDownloadAndOpenContainingFolder:
case eSFTPActions::kDownloadAndOpenWithDefaultApp: {
DoReportStatusBarMessage(wxString() << _("Downloading file: ") << req->GetRemoteFile());
wxMemoryBuffer buffer;
SFTPAttribute::Ptr_t fileAttr = m_sftp->Read(req->GetRemoteFile(), buffer);
wxFFile fp(req->GetLocalFile(), "w+b");
if(fp.IsOpened()) {
fp.Write(buffer.GetData(), buffer.GetDataLen());
fp.Close();
}
msg << "Successfully downloaded file: " << req->GetLocalFile() << " <- " << req->GetRemoteFile();
DoReportMessage(accountName, msg, SFTPThreadMessage::STATUS_OK);
DoReportStatusBarMessage("");
// We should also notify the parent window about download completed
if(req->GetAction() == eSFTPActions::kDownload) {
SFTPClientData cd;
cd.SetLocalPath(req->GetLocalFile());
cd.SetRemotePath(req->GetRemoteFile());
cd.SetPermissions(fileAttr ? fileAttr->GetPermissions() : 0);
cd.SetLineNumber(req->GetLineNumber());
m_plugin->CallAfter(&SFTP::FileDownloadedSuccessfully, cd);
} else if(req->GetAction() == eSFTPActions::kDownloadAndOpenContainingFolder) {
m_plugin->CallAfter(&SFTP::OpenContainingFolder, req->GetLocalFile());
} else {
m_plugin->CallAfter(&SFTP::OpenWithDefaultApp, req->GetLocalFile());
}
break;
}
case eSFTPActions::kRename: {
DoReportStatusBarMessage(wxString() << _("Renaming: ") << req->GetRemoteFile() << " -> "
<< req->GetNewRemoteFile());
m_sftp->Rename(req->GetRemoteFile(), req->GetNewRemoteFile());
wxString msg;
msg << _("Renamed ") << req->GetRemoteFile() << " -> " << req->GetNewRemoteFile();
DoReportMessage(accountName, msg, SFTPThreadMessage::STATUS_OK);
break;
}
case eSFTPActions::kDelete: {
DoReportStatusBarMessage(wxString() << _("Deleting: ") << req->GetRemoteFile());
m_sftp->UnlinkFile(req->GetRemoteFile());
wxString msg;
msg << _("Deleted ") << req->GetRemoteFile();
DoReportMessage(accountName, msg, SFTPThreadMessage::STATUS_OK);
break;
}
}
} catch(clException& e) {
msg.Clear();
msg << "SFTP error: " << e.What();
DoReportMessage(accountName, msg, SFTPThreadMessage::STATUS_ERROR);
DoReportStatusBarMessage(msg);
m_sftp.reset(NULL);
// Requeue our request
if(req->GetRetryCounter() == 0) {
msg.Clear();
msg << "Retrying to upload file: " << req->GetRemoteFile();
DoReportMessage(req->GetAccount().GetAccountName(), msg, SFTPThreadMessage::STATUS_NONE);
// first time trying this request, requeue it
SFTPThreadRequet* retryReq = static_cast<SFTPThreadRequet*>(req->Clone());
retryReq->SetRetryCounter(1);
Add(retryReq);
}
}
}
}
void SFTPWorkerThread::DoConnect(SFTPThreadRequet* req)
{
wxString accountName = req->GetAccount().GetAccountName();
clSSH::Ptr_t ssh(new clSSH(req->GetAccount().GetHost(), req->GetAccount().GetUsername(),
req->GetAccount().GetPassword(), req->GetAccount().GetPort()));
try {
wxString message;
DoReportStatusBarMessage(wxString() << _("Connecting to ") << accountName);
DoReportMessage(accountName, "Connecting...", SFTPThreadMessage::STATUS_NONE);
ssh->Connect();
if(!ssh->AuthenticateServer(message)) { ssh->AcceptServerAuthentication(); }
ssh->Login();
m_sftp.reset(new clSFTP(ssh));
// associate the account with the connection
m_sftp->SetAccount(req->GetAccount().GetAccountName());
m_sftp->Initialize();
wxString msg;
msg << "Successfully connected to " << accountName;
DoReportMessage(accountName, msg, SFTPThreadMessage::STATUS_OK);
} catch(clException& e) {
wxString msg;
msg << "Connect error. " << e.What();
DoReportMessage(accountName, msg, SFTPThreadMessage::STATUS_ERROR);
m_sftp.reset(NULL);
}
}
void SFTPWorkerThread::DoReportMessage(const wxString& account, const wxString& message, int status)
{
SFTPThreadMessage* pMessage = new SFTPThreadMessage();
pMessage->SetStatus(status);
pMessage->SetMessage(message);
pMessage->SetAccount(account);
GetNotifiedWindow()->CallAfter(&SFTPStatusPage::AddLine, pMessage);
}
void SFTPWorkerThread::SetSftpPlugin(SFTP* sftp) { m_plugin = sftp; }
void SFTPWorkerThread::DoReportStatusBarMessage(const wxString& message)
{
GetNotifiedWindow()->CallAfter(&SFTPStatusPage::SetStatusBarMessage, message);
}
// -----------------------------------------
// SFTPWriterThreadRequet
// -----------------------------------------
SFTPThreadRequet::SFTPThreadRequet(const SSHAccountInfo& accountInfo, const wxString& remoteFile,
const wxString& localFile, size_t persmissions)
: m_account(accountInfo)
, m_remoteFile(remoteFile)
, m_localFile(localFile)
, m_action(eSFTPActions::kUpload)
, m_permissions(persmissions)
{
}
SFTPThreadRequet::SFTPThreadRequet(const RemoteFileInfo& remoteFile)
: m_account(remoteFile.GetAccount())
, m_remoteFile(remoteFile.GetRemoteFile())
, m_localFile(remoteFile.GetLocalFile())
, m_action(eSFTPActions::kDownload)
, m_lineNumber(remoteFile.GetLineNumber())
{
}
SFTPThreadRequet::SFTPThreadRequet(const SSHAccountInfo& accountInfo)
: m_account(accountInfo)
, m_action(eSFTPActions::kConnect)
{
}
SFTPThreadRequet::SFTPThreadRequet(const SSHAccountInfo& accountInfo, const wxString& oldName, const wxString& newName)
: m_account(accountInfo)
, m_remoteFile(oldName)
, m_action(eSFTPActions::kRename)
, m_newRemoteFile(newName)
{
}
SFTPThreadRequet::SFTPThreadRequet(const SSHAccountInfo& accountInfo, const wxString& fileToDelete)
: m_account(accountInfo)
, m_remoteFile(fileToDelete)
, m_action(eSFTPActions::kDelete)
{
}
SFTPThreadRequet::SFTPThreadRequet(const SFTPThreadRequet& other)
{
if(this == &other) return;
*this = other;
}
SFTPThreadRequet& SFTPThreadRequet::operator=(const SFTPThreadRequet& other)
{
m_account = other.m_account;
m_remoteFile = other.m_remoteFile;
m_localFile = other.m_localFile;
m_retryCounter = other.m_retryCounter;
m_uploadSuccess = other.m_uploadSuccess;
m_action = other.m_action;
m_permissions = other.m_permissions;
return *this;
}
SFTPThreadRequet::~SFTPThreadRequet() {}
ThreadRequest* SFTPThreadRequet::Clone() const { return new SFTPThreadRequet(*this); }
// -----------------------------------------
// SFTPThreadMessage
// -----------------------------------------
SFTPThreadMessage::SFTPThreadMessage()
: m_status(STATUS_NONE)
{
}
SFTPThreadMessage::~SFTPThreadMessage() {}
|