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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2013 by Eran Ifrah
// file name : sftp.h
//
// -------------------------------------------------------------------------
// 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.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef __SFTP__
#define __SFTP__
#include "clFileSystemEvent.h"
#include "clSFTPEvent.h"
#include "clTabTogglerHelper.h"
#include "cl_command_event.h"
#include "macros.h"
#include "plugin.h"
#include "remote_file_info.h"
#include "sftp_workspace_settings.h"
#include <SFTPClientData.hpp>
class SFTPStatusPage;
class SFTPTreeView;
class SFTP : public IPlugin
{
wxFileName m_workspaceFile;
SFTPWorkspaceSettings m_workspaceSettings;
SFTPStatusPage* m_outputPane;
SFTPTreeView* m_treeView;
RemoteFileInfo::Map_t m_remoteFiles;
clTabTogglerHelper::Ptr_t m_tabToggler;
long m_sshAgentPID = wxNOT_FOUND;
public:
SFTP(IManager* manager);
~SFTP();
void FileDownloadedSuccessfully(const SFTPClientData& cd);
void OpenWithDefaultApp(const wxString& localFileName);
void OpenContainingFolder(const wxString& localFileName);
void AddRemoteFile(const RemoteFileInfo& remoteFile);
SFTPStatusPage* GetOutputPane() { return m_outputPane; }
SFTPTreeView* GetTreeView() { return m_treeView; }
void OpenFile(const wxString& remotePath, int lineNumber = wxNOT_FOUND);
protected:
void OnReplaceInFiles(clFileSystemEvent& e);
void OnAccountManager(wxCommandEvent& e);
void OnSettings(wxCommandEvent& e);
void OnSetupWorkspaceMirroring(wxCommandEvent& e);
void OnDisableWorkspaceMirroring(wxCommandEvent& e);
void OnDisableWorkspaceMirroringUI(wxUpdateUIEvent& e);
void OnWorkspaceOpened(wxCommandEvent& e);
void OnWorkspaceClosed(wxCommandEvent& e);
void OnFileSaved(clCommandEvent& e);
void OnFileRenamed(clFileSystemEvent& e);
void OnFileDeleted(clFileSystemEvent& e);
void OnEditorClosed(wxCommandEvent& e);
void MSWInitiateConnection();
void OnInitDone(wxCommandEvent& event);
void DoFileSaved(const wxString& filename);
bool IsWorkspaceOpened() const { return m_workspaceFile.IsOk(); }
void DoSaveRemoteFile(const RemoteFileInfo& remoteFile);
bool IsPaneDetached(const wxString& name) const;
// API calls
// Save remote file content to match the content of a local file
// e.GetLocalFile() -> the local file
// e.GetRemoteFile() -> the target file
void OnSaveFile(clSFTPEvent& e);
// Rename a remote file
// e.GetRemoteFile() -> the "old" remote file path
// e.GetNewRemoteFile() -> the "new" remote file path
void OnRenameFile(clSFTPEvent& e);
// Delete a remote file
// e.GetRemoteFile() -> the file to be deleted
void OnDeleteFile(clSFTPEvent& e);
private:
bool IsCxxWorkspaceMirrorEnabled() const;
void DoFileDeleted(const wxString& filepath);
wxString GetRemotePath(const wxString& localpath) const;
public:
//--------------------------------------------
// Abstract methods
//--------------------------------------------
virtual void CreateToolBar(clToolBar* toolbar);
virtual void CreatePluginMenu(wxMenu* pluginsMenu);
virtual void HookPopupMenu(wxMenu* menu, MenuType type);
virtual void UnPlug();
IManager* GetManager() { return m_mgr; }
// Callbacks
void OnFileWriteOK(const wxString& message);
void OnFileWriteError(const wxString& errorMessage);
};
#endif // SFTP
|