| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include "Terminal.h"
- #include <SysUtils.hpp>
- #include <FileCtrl.hpp>
- #include "Common.h"
- #include "FileBuffer.h"
- #include "FileSystems.h"
- #include "Interface.h"
- #include "RemoteFiles.h"
- #include "ScpFileSystem.h"
- #include "SftpFileSystem.h"
- #include "TextsCore.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- #define COMMAND_ERROR_ARI(MESSAGE, REPEAT) \
- { \
- int Result = CommandError(&E, MESSAGE, qaRetry | qaSkip | qaAbort); \
- switch (Result) { \
- case qaRetry: { REPEAT; } break; \
- case qaAbort: Abort(); \
- } \
- }
- //---------------------------------------------------------------------------
- __fastcall TTerminal::TTerminal(): TSecureShell()
- {
- FFiles = new TRemoteDirectory(this);
- FExceptionOnFail = 0;
- FInTransaction = 0;
- FReadCurrentDirectoryPending = false;
- FReadDirectoryPending = false;
- FUserGroupsLookedup = False;
- FUserGroups = new TUserGroupsList();
- FOnProgress = NULL;
- FOnFinished = NULL;
- FUseBusyCursor = True;
- FLockDirectory = "";
- FDirectoryCache = new TRemoteDirectoryCache();
- }
- //---------------------------------------------------------------------------
- __fastcall TTerminal::~TTerminal()
- {
- SAFE_DESTROY(FFileSystem);
- delete FFiles;
- delete FUserGroups;
- delete FDirectoryCache;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TTerminal::GetProtocolName()
- {
- assert(FFileSystem);
- return FFileSystem->ProtocolName;
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::Close()
- {
- // file system cannot be destoryed here, moved to destructor
- TSecureShell::Close();
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::Open()
- {
- TSecureShell::Open();
- assert(!FFileSystem);
- if ((SessionData->FSProtocol == fsSCPonly) ||
- (SessionData->FSProtocol == fsSFTP && SshFallbackCmd()))
- {
- FFileSystem = new TSCPFileSystem(this);
- LogEvent("Using SCP protocol.");
- }
- else
- {
- FFileSystem = new TSFTPFileSystem(this);
- LogEvent("Using SFTP protocol.");
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TTerminal::GetIsCapable(TFSCapability Capability) const
- {
- assert(FFileSystem);
- return FFileSystem->IsCapable(Capability);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ReactOnCommand(int /*TFSCommand*/ Cmd)
- {
- bool ChangesDirectory = false;
- bool ModifiesFiles = false;
- switch ((TFSCommand)Cmd) {
- case fsChangeDirectory:
- case fsHomeDirectory:
- ChangesDirectory = true;
- break;
- case fsCopyToRemote:
- case fsDeleteFile:
- case fsRenameFile:
- case fsCreateDirectory:
- case fsChangeMode:
- case fsChangeGroup:
- case fsChangeOwner:
- case fsChangeProperties:
- case fsAnyCommand:
- ModifiesFiles = true;
- break;
- }
- if (ChangesDirectory)
- {
- if (!FInTransaction)
- {
- ReadCurrentDirectory();
- ReadDirectory(false);
- }
- else
- {
- FReadCurrentDirectoryPending = true;
- FReadDirectoryPending = true;
- }
- }
- else
- if (ModifiesFiles)
- {
- if (!FInTransaction) ReadDirectory(true);
- else FReadDirectoryPending = true;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::TerminalError(AnsiString Msg)
- {
- TerminalError(NULL, Msg);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::TerminalError(Exception * E, AnsiString Msg)
- {
- throw ETerminal(E, Msg);
- }
- //---------------------------------------------------------------------------
- int __fastcall TTerminal::FileOperationLoop(TFileOperationEvent CallBackFunc,
- TFileOperationProgressType * OperationProgress, bool AllowSkip,
- const AnsiString Message, void * Param1, void * Param2)
- {
- assert(CallBackFunc);
- int Result;
- TTerminal * FTerminal = this; // required by FILE_OPERATION_LOOP_EX macro
- FILE_OPERATION_LOOP_EX
- (
- "", AllowSkip, Message,
- Result = CallBackFunc(Param1, Param2);
- );
- return Result;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TTerminal::TranslateLockedPath(AnsiString Path, bool Lock)
- {
- if (!SessionData->LockInHome || Path.IsEmpty() || (Path[1] != '/'))
- return Path;
- if (Lock)
- {
- if (Path.SubString(1, FLockDirectory.Length()) == FLockDirectory)
- {
- Path.Delete(1, FLockDirectory.Length());
- if (Path.IsEmpty()) Path = "/";
- }
- }
- else
- {
- Path = UnixExcludeTrailingBackslash(FLockDirectory + Path);
- }
- return Path;
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::SetCurrentDirectory(AnsiString value)
- {
- assert(FFileSystem);
- value = TranslateLockedPath(value, false);
- if (value != FFileSystem->CurrentDirectory)
- {
- ChangeDirectory(value);
- }
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TTerminal::GetCurrentDirectory()
- {
- if (FFileSystem)
- {
- FCurrentDirectory = FFileSystem->CurrentDirectory;
- if (FCurrentDirectory.IsEmpty())
- {
- ReadCurrentDirectory();
- }
- }
- return TranslateLockedPath(FCurrentDirectory, true);
- }
- //---------------------------------------------------------------------------
- TUserGroupsList * __fastcall TTerminal::GetUserGroups()
- {
- assert(FFileSystem);
- if (!FUserGroupsLookedup && SessionData->LookupUserGroups &&
- IsCapable[fcUserGroupListing])
- {
- LookupUserGroups();
- }
- return FUserGroups;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall TTerminal::GetUserName() const
- {
- // in future might be implemented to detect username similar to GetUserGroups
- return SessionData->UserName;
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DoChangeDirectory()
- {
- if (FOnChangeDirectory) FOnChangeDirectory(this);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DoReadDirectory(bool ReloadOnly)
- {
- if (FOnReadDirectory) FOnReadDirectory(this, ReloadOnly);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::BeginTransaction()
- {
- if (!FInTransaction)
- {
- FReadCurrentDirectoryPending = false;
- FReadDirectoryPending = false;
- }
- FInTransaction++;
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::EndTransaction()
- {
- // it connection was closed due to fatal error during transaction, do nothing
- if (Active)
- {
- if (!FInTransaction)
- TerminalError("Can't end transaction, not in transaction");
- assert(FInTransaction > 0);
- FInTransaction--;
- if (FInTransaction == 0)
- {
- try
- {
- if (FReadCurrentDirectoryPending) ReadCurrentDirectory();
- if (FReadDirectoryPending) ReadDirectory(!FReadCurrentDirectoryPending);
- }
- __finally
- {
- FReadCurrentDirectoryPending = false;
- FReadDirectoryPending = false;
- }
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::SetExceptionOnFail(bool value)
- {
- if (value) FExceptionOnFail++;
- else
- {
- if (FExceptionOnFail == 0)
- throw Exception("ExceptionOnFail is already zero.");
- FExceptionOnFail--;
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TTerminal::GetExceptionOnFail() const
- {
- return (bool)(FExceptionOnFail > 0);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::CommandError(Exception * E, const AnsiString Msg)
- {
- CommandError(E, Msg, 0);
- }
- //---------------------------------------------------------------------------
- int __fastcall TTerminal::CommandError(Exception * E, const AnsiString Msg,
- int Answers)
- {
- int Result = 0;
- if (E && E->InheritsFrom(__classid(EFatal)))
- {
- FatalError(E, Msg);
- }
- else if (E && E->InheritsFrom(__classid(EAbort)))
- {
- // resent EAbort exception
- Abort();
- }
- else if (ExceptionOnFail)
- {
- throw ECommand(E, Msg);
- }
- else if (!Answers)
- {
- ECommand * ECmd = new ECommand(E, Msg);
- try
- {
- ShowExtendedException(ECmd, this);
- }
- __finally
- {
- delete ECmd;
- }
- }
- else
- {
- Result = DoQueryUser(Msg, E, Answers, qpAllowContinueOnError);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TTerminal::HandleException(Exception * E)
- {
- if (ExceptionOnFail)
- {
- return false;
- }
- else
- {
- HandleExtendedException(E, this);
- return true;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::CloseOnCompletion(const AnsiString Message)
- {
- LogEvent("Closing session after completed operation (as requested by user)");
- Close();
- throw ESshTerminate(NULL,
- Message.IsEmpty() ? LoadStr(CLOSED_ON_COMPLETION) : Message);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::FileModified(const TRemoteFile * File)
- {
- assert(File);
- if (SessionData->CacheDirectories && File->Directory)
- {
- if (File->IsDirectory)
- {
- // do not use UnixIncludeTrailingBackslash(CurrentDirectory)
- FDirectoryCache->ClearFileList(
- File->Directory->FullDirectory + File->FileName, true);
- }
- FDirectoryCache->ClearFileList(File->Directory->Directory, false);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DirectoryModified(const AnsiString UnlockedPath, bool SubDirs)
- {
- FDirectoryCache->ClearFileList(TranslateLockedPath(UnlockedPath, true),
- SubDirs);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ReloadDirectory()
- {
- if (SessionData->CacheDirectories)
- {
- FDirectoryCache->ClearFileList(CurrentDirectory, false);
- }
- ReadCurrentDirectory();
- FReadCurrentDirectoryPending = false;
- ReadDirectory(True);
- FReadDirectoryPending = false;
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::EnsureNonExistence(const AnsiString FileName)
- {
- // if filename doesn't contain path, we check for existence of file
- if ((UnixExtractFileDir(FileName) == FileName) &&
- UnixComparePaths(CurrentDirectory, FFiles->Directory))
- {
- TRemoteFile *File = FFiles->FindFile(FileName);
- if (File)
- {
- if (File->IsDirectory) throw ECommand(NULL, FMTLOAD(RENAME_CREATE_DIR_EXISTS, (FileName)));
- else throw ECommand(NULL, FMTLOAD(RENAME_CREATE_FILE_EXISTS, (FileName)));
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DoStartup()
- {
- LogEvent("Doing startup conversation with host.");
- BeginTransaction();
- try
- {
- UpdateStatus(sshStartup);
- // Make sure that directory would be loaded at last
- FReadCurrentDirectoryPending = true;
- FReadDirectoryPending = true;
- FFileSystem->DoStartup();
- if (SessionData->LookupUserGroups && IsCapable[fcUserGroupListing])
- {
- LookupUserGroups();
- }
- UpdateStatus(sshOpenDirectory);
- if (!SessionData->RemoteDirectory.IsEmpty())
- {
- ChangeDirectory(SessionData->RemoteDirectory);
- }
- }
- __finally
- {
- EndTransaction();
- }
- LogEvent("Startup conversation with host finished.");
- UpdateStatus(sshReady);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ReadCurrentDirectory()
- {
- assert(FFileSystem);
- try
- {
- LogEvent("Getting current directory name.");
- AnsiString OldDirectory = FFileSystem->CurrentDirectory;
- FFileSystem->ReadCurrentDirectory();
- ReactOnCommand(fsCurrentDirectory);
- if (OldDirectory.IsEmpty())
- {
- FLockDirectory = (SessionData->LockInHome ?
- FFileSystem->CurrentDirectory : AnsiString(""));
- }
- if (OldDirectory != FFileSystem->CurrentDirectory) DoChangeDirectory();
- }
- catch (Exception &E)
- {
- CommandError(&E, LoadStr(READ_CURRENT_DIR_ERROR));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ReadDirectory(bool ReloadOnly)
- {
- TRemoteFileList * CachedFileList = NULL;
- if (SessionData->CacheDirectories)
- {
- CachedFileList = FDirectoryCache->GetFileList(CurrentDirectory);
- }
- if (CachedFileList)
- {
- CachedFileList->DuplicateTo(FFiles);
- DoReadDirectory(ReloadOnly);
- LogEvent("Directory content loaded from cache.");
- }
- else
- {
- FFiles->Directory = CurrentDirectory;
- try
- {
- try
- {
- CustomReadDirectory(FFiles);
- }
- __finally
- {
- if (Active)
- {
- // this must be called before error is displayed, otherwise
- // TUnixDirView would be drawn with invalid data (it keeps reference
- // to already destoroyed old listing)
- DoReadDirectory(ReloadOnly);
- if (SessionData->CacheDirectories)
- {
- FDirectoryCache->AddFileList(FFiles);
- }
- }
- }
- }
- catch (Exception &E)
- {
- CommandError(&E, FmtLoadStr(LIST_DIR_ERROR, ARRAYOFCONST((FFiles->Directory))));
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::CustomReadDirectory(TRemoteFileList * FileList)
- {
- assert(FileList);
- assert(FFileSystem);
- FFileSystem->ReadDirectory(FileList);
- ReactOnCommand(fsListDirectory);
- }
- //---------------------------------------------------------------------------
- TRemoteFileList * TTerminal::ReadDirectoryListing(AnsiString Directory)
- {
- TRemoteFileList * FileList;
- try
- {
- FileList = new TRemoteFileList();
- try
- {
- FileList->Directory = Directory;
- AnsiString Directory = UnixIncludeTrailingBackslash(Directory);
- ExceptionOnFail = true;
- try
- {
- ReadDirectory(FileList);
- }
- __finally
- {
- ExceptionOnFail = false;
- }
- }
- catch(...)
- {
- delete FileList;
- throw;
- }
- }
- catch(Exception & E)
- {
- COMMAND_ERROR_ARI
- (
- "",
- FileList = ReadDirectoryListing(Directory);
- );
- }
- return FileList;
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ProcessDirectory(const AnsiString DirName,
- TProcessFileEvent CallBackFunc, void * Param)
- {
- TRemoteFileList * FileList = ReadDirectoryListing(DirName);
- try
- {
- AnsiString Directory = UnixIncludeTrailingBackslash(DirName);
- TRemoteFile * File;
- for (int Index = 0; Index < FileList->Count; Index++)
- {
- File = FileList->Files[Index];
- if (!File->IsParentDirectory && !File->IsThisDirectory)
- {
- CallBackFunc(Directory + File->FileName, File, Param);
- }
- }
- }
- __finally
- {
- delete FileList;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ReadDirectory(TRemoteFileList * FileList)
- {
- try
- {
- CustomReadDirectory(FileList);
- }
- catch (Exception &E)
- {
- CommandError(&E, FmtLoadStr(LIST_DIR_ERROR, ARRAYOFCONST((FileList->Directory))));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ReadSymlink(TRemoteFile * SymlinkFile,
- TRemoteFile *& File)
- {
- assert(FFileSystem);
- try
- {
- LogEvent(FORMAT("Reading symlink \"%s\".", (SymlinkFile->FileName)));
- FFileSystem->ReadSymlink(SymlinkFile, File);
- ReactOnCommand(fsReadSymlink);
- }
- catch (Exception &E)
- {
- CommandError(&E, FMTLOAD(READ_SYMLINK_ERROR, (SymlinkFile->FileName)));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ReadFile(const AnsiString FileName,
- TRemoteFile *& File)
- {
- assert(FFileSystem);
- File = NULL;
- try
- {
- LogEvent(FORMAT("Listing file \"%s\".", (FileName)));
- FFileSystem->ReadFile(FileName, File);
- ReactOnCommand(fsListFile);
- }
- catch (Exception &E)
- {
- if (File) delete File;
- File = NULL;
- CommandError(&E, FMTLOAD(LIST_DIR_ERROR, (FileName)));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ProcessFiles(TStrings * FileList,
- TFileOperation Operation, TProcessFileEvent ProcessFile, void * Param)
- {
- assert(FFileSystem);
- assert(FileList);
- bool DisconnectWhenComplete = false;
- try
- {
- TFileOperationProgressType Progress(FOnProgress, FOnFinished);
- Progress.Start(Operation, osRemote, FileList->Count);
- FOperationProgress = &Progress;
- try
- {
- BeginTransaction();
- try
- {
- int Index = 0;
- AnsiString FileName;
- bool Success;
- while ((Index < FileList->Count) && (Progress.Cancel == csContinue))
- {
- FileName = FileList->Strings[Index];
- try
- {
- Success = false;
- ProcessFile(FileName, (TRemoteFile *)FileList->Objects[Index], Param);
- Success = true;
- }
- __finally
- {
- Progress.Finish(UnixExtractFileName(FileName),
- Success, DisconnectWhenComplete);
- }
- Index++;
- }
- }
- __finally
- {
- EndTransaction();
- }
- }
- __finally
- {
- FOperationProgress = NULL;
- Progress.Stop();
- }
- }
- catch (...)
- {
- DisconnectWhenComplete = false;
- // this was missing here. was it by purpose?
- // without it any error message is lost
- throw;
- }
- if (DisconnectWhenComplete)
- {
- CloseOnCompletion();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DeleteFile(AnsiString FileName,
- const TRemoteFile * File, void * Recursive)
- {
- if (FileName.IsEmpty() && File)
- {
- FileName = File->FileName;
- }
- if (OperationProgress && OperationProgress->Operation == foDelete)
- {
- if (OperationProgress->Cancel != csContinue) Abort();
- OperationProgress->SetFile(FileName);
- }
- LogEvent(FORMAT("Deleting file \"%s\".", (FileName)));
- if (File) FileModified(File);
- DoDeleteFile(FileName, File, Recursive);
- ReactOnCommand(fsDeleteFile);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DoDeleteFile(const AnsiString FileName,
- const TRemoteFile * File, void * Recursive)
- {
- try
- {
- assert(FFileSystem);
- // 'File' parameter: SFTPFileSystem needs to know if file is file or directory
- FFileSystem->DeleteFile(FileName, File,
- Recursive ? *((bool*)Recursive) : true);
- }
- catch(Exception & E)
- {
- COMMAND_ERROR_ARI
- (
- FMTLOAD(DELETE_FILE_ERROR, (FileName)),
- DoDeleteFile(FileName, File, Recursive)
- );
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DeleteFiles(TStrings * FilesToDelete, bool * Recursive)
- {
- ProcessFiles(FilesToDelete, foDelete, DeleteFile, Recursive);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::CustomCommandOnFile(AnsiString FileName,
- const TRemoteFile * File, void * ACommand)
- {
- AnsiString Command = *((AnsiString *)ACommand);
- if (FileName.IsEmpty() && File)
- {
- FileName = File->FileName;
- }
- if (OperationProgress && OperationProgress->Operation == foCustomCommand)
- {
- if (OperationProgress->Cancel != csContinue) Abort();
- OperationProgress->SetFile(FileName);
- }
- LogEvent(FORMAT("Executing custom command \"%s\" on file \"%s\".",
- (Command, FileName)));
- if (File) FileModified(File);
- DoCustomCommandOnFile(FileName, File, Command);
- ReactOnCommand(fsAnyCommand);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DoCustomCommandOnFile(AnsiString FileName,
- const TRemoteFile * File, AnsiString Command)
- {
- try
- {
- assert(FFileSystem);
- FFileSystem->CustomCommandOnFile(FileName, File, Command);
- }
- catch(Exception & E)
- {
- COMMAND_ERROR_ARI
- (
- FMTLOAD(CUSTOM_COMMAND_ERROR, (Command, FileName)),
- DoCustomCommandOnFile(FileName, File, Command)
- );
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::CustomCommandOnFiles(AnsiString Command, TStrings * Files)
- {
- ProcessFiles(Files, foCustomCommand, CustomCommandOnFile, &Command);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ChangeFileProperties(AnsiString FileName,
- const TRemoteFile * File, /*const TRemoteProperties*/ void * Properties)
- {
- TRemoteProperties * RProperties = (TRemoteProperties *)Properties;
- assert(RProperties && !RProperties->Valid.Empty());
- if (FileName.IsEmpty() && File)
- {
- FileName = File->FileName;
- }
- if (OperationProgress && OperationProgress->Operation == foSetProperties)
- {
- if (OperationProgress->Cancel != csContinue) Abort();
- OperationProgress->SetFile(FileName);
- }
- if (IsLogging())
- {
- LogEvent(FORMAT("Changing properties of \"%s\" (%s)",
- (FileName, BooleanToEngStr(RProperties->Recursive))));
- if (RProperties->Valid.Contains(vpRights))
- {
- LogEvent(FORMAT(" - mode: \"%s\"", (RProperties->Rights.ModeStr)));
- }
- if (RProperties->Valid.Contains(vpGroup))
- {
- LogEvent(FORMAT(" - group: \"%s\"", (RProperties->Group)));
- }
- if (RProperties->Valid.Contains(vpOwner))
- {
- LogEvent(FORMAT(" - owner: \"%s\"", (RProperties->Owner)));
- }
- }
- if (File) FileModified(File);
- DoChangeFileProperties(FileName, File, RProperties);
- ReactOnCommand(fsChangeProperties);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DoChangeFileProperties(const AnsiString FileName,
- const TRemoteFile * File, const TRemoteProperties * Properties)
- {
- try
- {
- assert(FFileSystem);
- FFileSystem->ChangeFileProperties(FileName, File, Properties);
- }
- catch(Exception & E)
- {
- COMMAND_ERROR_ARI
- (
- FMTLOAD(CHANGE_PROPERTIES_ERROR, (FileName)),
- DoChangeFileProperties(FileName, File, Properties)
- );
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ChangeFilesProperties(TStrings * FileList,
- const TRemoteProperties * Properties)
- {
- ProcessFiles(FileList, foSetProperties, ChangeFileProperties, (void *)Properties);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::RenameFile(const AnsiString FileName,
- const AnsiString NewName)
- {
- LogEvent(FORMAT("Renaming file \"%s\" to \"%s\".", (FileName, NewName)));
- DoRenameFile(FileName, NewName);
- ReactOnCommand(fsRenameFile);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::RenameFile(const TRemoteFile * File,
- const AnsiString NewName, bool CheckExistence)
- {
- assert(File && File->Directory == FFiles);
- bool Proceed = true;
- // if filename doesn't contain path, we check for existence of file
- if ((File->FileName != NewName) && CheckExistence &&
- Configuration->ConfirmOverwriting &&
- UnixComparePaths(CurrentDirectory, FFiles->Directory))
- {
- TRemoteFile * DuplicateFile = FFiles->FindFile(NewName);
- if (DuplicateFile)
- {
- AnsiString QuestionFmt;
- if (DuplicateFile->IsDirectory) QuestionFmt = LoadStr(DIRECTORY_OVERWRITE);
- else QuestionFmt = LoadStr(FILE_OVERWRITE);
- int Result;
- Result = DoQueryUser(FORMAT(QuestionFmt, (NewName)),
- qaYes | qaNo, qpNeverAskAgainCheck);
- if (Result == qaNeverAskAgain)
- {
- Proceed = true;
- Configuration->ConfirmOverwriting = false;
- }
- else
- {
- Proceed = (Result == qaYes);
- }
- }
- }
- if (Proceed)
- {
- FileModified(File);
- RenameFile(File->FileName, NewName);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DoRenameFile(const AnsiString FileName,
- const AnsiString NewName)
- {
- try
- {
- assert(FFileSystem);
- FFileSystem->RenameFile(FileName, NewName);
- }
- catch(Exception & E)
- {
- COMMAND_ERROR_ARI
- (
- FMTLOAD(RENAME_FILE_ERROR, (FileName, NewName)),
- DoRenameFile(FileName, NewName)
- );
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::CreateDirectory(const AnsiString DirName,
- const TRemoteProperties * Properties)
- {
- assert(FFileSystem);
- EnsureNonExistence(DirName);
- if (SessionData->CacheDirectories)
- {
- FDirectoryCache->ClearFileList(CurrentDirectory, false);
- }
- LogEvent(FORMAT("Creating directory \"%s\".", (DirName)));
- DoCreateDirectory(DirName, Properties);
- ReactOnCommand(fsCreateDirectory);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DoCreateDirectory(const AnsiString DirName,
- const TRemoteProperties * Properties)
- {
- try
- {
- assert(FFileSystem);
- FFileSystem->CreateDirectory(DirName, Properties);
- }
- catch(Exception & E)
- {
- COMMAND_ERROR_ARI
- (
- FMTLOAD(CREATE_DIR_ERROR, (DirName)),
- DoCreateDirectory(DirName, Properties)
- );
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::CreateLink(const AnsiString FileName,
- const AnsiString PointTo, bool Symbolic)
- {
- assert(FFileSystem);
- EnsureNonExistence(FileName);
- if (SessionData->CacheDirectories)
- {
- FDirectoryCache->ClearFileList(CurrentDirectory, false);
- }
- LogEvent(FORMAT("Creating link \"%s\" to \"%s\" (symbolic: %s).",
- (FileName, PointTo, BooleanToEngStr(Symbolic))));
- DoCreateLink(FileName, PointTo, Symbolic);
- ReactOnCommand(fsCreateDirectory);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::DoCreateLink(const AnsiString FileName,
- const AnsiString PointTo, bool Symbolic)
- {
- try
- {
- assert(FFileSystem);
- FFileSystem->CreateLink(FileName, PointTo, Symbolic);
- }
- catch(Exception & E)
- {
- COMMAND_ERROR_ARI
- (
- FMTLOAD(CREATE_LINK_ERROR, (FileName)),
- DoCreateLink(FileName, PointTo, Symbolic);
- );
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::HomeDirectory()
- {
- assert(FFileSystem);
- try
- {
- LogEvent("Changing directory to home directory.");
- FFileSystem->HomeDirectory();
- ReactOnCommand(fsHomeDirectory);
- }
- catch (Exception &E)
- {
- CommandError(&E, LoadStr(CHANGE_HOMEDIR_ERROR));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::ChangeDirectory(const AnsiString Directory)
- {
- assert(FFileSystem);
- try
- {
- LogEvent(FORMAT("Changing directory to \"%s\".", (Directory)));
- FFileSystem->ChangeDirectory(Directory);
- ReactOnCommand(fsChangeDirectory);
- }
- catch (Exception &E)
- {
- CommandError(&E, FMTLOAD(CHANGE_DIR_ERROR, (Directory)));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::LookupUserGroups()
- {
- assert(FFileSystem);
- assert(IsCapable[fcUserGroupListing]);
- try
- {
- FUserGroupsLookedup = true;
- LogEvent("Looking up current user groups.");
- FFileSystem->LookupUserGroups();
- ReactOnCommand(fsLookupUserGroups);
- if (IsLogging())
- {
- LogEvent("Following groups found:");
- for (int Index = 0; Index < FUserGroups->Count; Index++)
- {
- LogEvent(AnsiString(" ") + FUserGroups->Strings[Index]);
- }
- }
- }
- catch (Exception &E)
- {
- CommandError(&E, LoadStr(LOOKUP_GROUPS_ERROR));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::AnyCommand(const AnsiString Command)
- {
- assert(FFileSystem);
- try
- {
- DirectoryModified(CurrentDirectory, false);
- LogEvent("Executing used defined command.");
- FFileSystem->AnyCommand(Command);
- ReactOnCommand(fsAnyCommand);
- }
- catch (Exception &E)
- {
- if (ExceptionOnFail || (E.InheritsFrom(__classid(EFatal)))) throw;
- else ShowExtendedException(&E, this);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::OpenLocalFile(const AnsiString FileName,
- int Access, int * AAttrs, HANDLE * AHandle, unsigned long * ACTime,
- unsigned long * AMTime, unsigned long * AATime, __int64 * ASize)
- {
- TTerminal * FTerminal = this; //required by FILE_OPERATION_LOOP macro
- int Attrs = 0;
- HANDLE Handle = 0;
- FILE_OPERATION_LOOP (FileName, FMTLOAD(FILE_NOT_EXISTS, (FileName)),
- Attrs = FileGetAttr(FileName);
- if (Attrs == -1) EXCEPTION;
- )
- if ((Attrs & faDirectory) == 0)
- {
- FILE_OPERATION_LOOP (FileName, FMTLOAD(OPENFILE_ERROR, (FileName)),
- Handle = CreateFile(FileName.c_str(), Access,
- Access == GENERIC_READ ? FILE_SHARE_READ : 0,
- NULL, OPEN_EXISTING, 0, 0);
- if (Handle == INVALID_HANDLE_VALUE)
- {
- Handle = 0;
- EXCEPTION;
- }
- );
- try
- {
- if (AATime || AMTime)
- {
- // Get last file access and modification time
- FILE_OPERATION_LOOP (FileName, FMTLOAD(CANT_GET_ATTRS, (FileName)),
- FILETIME ATime;
- FILETIME MTime;
- FILETIME CTime;
- if (!GetFileTime(Handle, &CTime, &ATime, &MTime)) EXCEPTION;
- if (ACTime) TIME_WIN_TO_POSIX(CTime, *ACTime);
- if (AATime) TIME_WIN_TO_POSIX(ATime, *AATime);
- if (AMTime) TIME_WIN_TO_POSIX(MTime, *AMTime);
- );
- }
- if (ASize)
- {
- // Get file size
- FILE_OPERATION_LOOP (FileName, FMTLOAD(CANT_GET_ATTRS, (FileName)),
- unsigned long LSize;
- unsigned long HSize;
- LSize = GetFileSize(Handle, &HSize);
- if ((LSize == 0xFFFFFFFF) && (GetLastError() != NO_ERROR)) EXCEPTION;
- *ASize = (__int64(HSize) << 32) + LSize;
- );
- }
- }
- catch(...)
- {
- CloseHandle(Handle);
- throw;
- }
- }
- if (AAttrs) *AAttrs = Attrs;
- if (AHandle) *AHandle = Handle;
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::CopyToRemote(TStrings * FilesToCopy,
- const AnsiString TargetDir, const TCopyParamType * CopyParam, int Params)
- {
- assert(FFileSystem);
- assert(FilesToCopy);
- bool DisconnectWhenComplete = false;
- try
- {
- TFileOperationProgressType OperationProgress(FOnProgress, FOnFinished);
- OperationProgress.Start((Params & cpDelete ? foMove : foCopy), osLocal,
- FilesToCopy->Count, Params & cpDragDrop, TargetDir);
- FOperationProgress = &OperationProgress;
- try
- {
- AnsiString UnlockedTargetDir = TranslateLockedPath(TargetDir, false);
- BeginTransaction();
- try
- {
- if (IsLogging())
- {
- LogEvent(FORMAT("Copying %d files/directories to remote directory "
- "\"%s\"", (FilesToCopy->Count, TargetDir)));
- LogEvent(CopyParam->LogStr);
- }
- FFileSystem->CopyToRemote(FilesToCopy, UnlockedTargetDir,
- CopyParam, Params, &OperationProgress, DisconnectWhenComplete);
- }
- __finally
- {
- if (Active)
- {
- ReactOnCommand(fsCopyToRemote);
- EndTransaction();
- }
- }
- }
- __finally
- {
- OperationProgress.Stop();
- FOperationProgress = NULL;
- }
- }
- catch (Exception &E)
- {
- CommandError(&E, LoadStr(TOREMOTE_COPY_ERROR));
- DisconnectWhenComplete = false;
- }
- if (DisconnectWhenComplete) CloseOnCompletion();
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminal::CopyToLocal(TStrings * FilesToCopy,
- const AnsiString TargetDir, const TCopyParamType * CopyParam, int Params)
- {
- assert(FFileSystem);
- // see scp.c: sink(), tolocal()
- bool OwnsFileList = (FilesToCopy == NULL);
- bool DisconnectWhenComplete = false;
- try
- {
- if (OwnsFileList)
- {
- FilesToCopy = new TStringList();
- FilesToCopy->Assign(Files->SelectedFiles);
- }
- BeginTransaction();
- try
- {
- TFileOperationProgressType OperationProgress(FOnProgress, FOnFinished);
- OperationProgress.Start((Params & cpDelete ? foMove : foCopy), osRemote,
- FilesToCopy->Count, Params & cpDragDrop, TargetDir);
- FOperationProgress = &OperationProgress;
- try
- {
- try
- {
- try
- {
- FFileSystem->CopyToLocal(FilesToCopy, TargetDir, CopyParam, Params,
- &OperationProgress, DisconnectWhenComplete);
- }
- __finally
- {
- if (Active)
- {
- ReactOnCommand(fsCopyToLocal);
- }
- }
- }
- catch (Exception &E)
- {
- CommandError(&E, LoadStr(TOLOCAL_COPY_ERROR));
- DisconnectWhenComplete = false;
- }
- }
- __finally
- {
- FOperationProgress = NULL;
- OperationProgress.Stop();
- }
- }
- __finally
- {
- // If session is still active (no fatal error) we reload directory
- // by calling EndTransaction
- EndTransaction();
- }
- }
- __finally
- {
- if (OwnsFileList) delete FilesToCopy;
- }
- if (DisconnectWhenComplete) CloseOnCompletion();
- }
- //---------------------------------------------------------------------------
- __fastcall TTerminalList::TTerminalList(TConfiguration * AConfiguration) :
- TObjectList()
- {
- assert(AConfiguration);
- FConfiguration = AConfiguration;
- }
- //---------------------------------------------------------------------------
- __fastcall TTerminalList::~TTerminalList()
- {
- assert(Count == 0);
- }
- //---------------------------------------------------------------------------
- TTerminal * __fastcall TTerminalList::NewTerminal(TSessionData * Data)
- {
- TTerminal * Terminal = new TTerminal();
- try
- {
- Terminal->Configuration = FConfiguration;
- Terminal->SessionData = Data;
- Add(Terminal);
- }
- catch(...)
- {
- delete Terminal;
- throw;
- }
- return Terminal;
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminalList::FreeTerminal(TTerminal * Terminal)
- {
- assert(IndexOf(Terminal) >= 0);
- Remove(Terminal);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminalList::FreeAndNullTerminal(TTerminal * & Terminal)
- {
- TTerminal * T = Terminal;
- Terminal = NULL;
- FreeTerminal(T);
- }
- //---------------------------------------------------------------------------
- TTerminal * __fastcall TTerminalList::GetTerminal(int Index)
- {
- return dynamic_cast<TTerminal *>(Items[Index]);
- }
- //---------------------------------------------------------------------------
- void __fastcall TTerminalList::Idle()
- {
- TTerminal * Terminal;
- for (int i = 0; i < Count; i++)
- {
- Terminal = Terminals[i];
- if (Terminal->Status == sshReady)
- {
- Terminal->Idle();
- }
- }
- }
|