| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include <SysUtils.hpp>
- #include "Common.h"
- #include "Exceptions.h"
- #include "TextsCore.h"
- #include "Script.h"
- #include "Terminal.h"
- #include "SessionData.h"
- #include "CoreMain.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- __fastcall TScriptProcParams::TScriptProcParams(AnsiString ParamsStr)
- {
- int P = FSwitchMarks.Pos("/");
- assert(P > 0);
- if (P > 0)
- {
- FSwitchMarks.Delete(P, 1);
- }
- FParamsStr = ParamsStr;
- AnsiString Param;
- while (CutToken(ParamsStr, Param))
- {
- Add(Param);
- }
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- class TScriptCommands : TStringList
- {
- public:
- typedef void __fastcall (__closure *TCommandProc)(TScriptProcParams * Parameters);
- __fastcall TScriptCommands();
- virtual __fastcall ~TScriptCommands();
- void __fastcall Execute(const AnsiString & Command, const AnsiString & Params);
- void __fastcall Register(const char * Command,
- const AnsiString Description, const AnsiString Help, TCommandProc Proc,
- int MinParams, int MaxParams, bool Switches);
- void __fastcall Register(const char * Command,
- int Description, int Help, TCommandProc Proc,
- int MinParams, int MaxParams, bool Switches);
- void __fastcall Register(const char * Command, TCommandProc Proc,
- int MinParams, int MaxParams, bool Switches);
- bool __fastcall Info(const AnsiString Command,
- AnsiString * Description, AnsiString * Help);
- bool __fastcall Enumerate(int Index,
- AnsiString * Command, AnsiString * Description, AnsiString * Help);
- static int __fastcall FindCommand(TStrings * Commands, const AnsiString Command,
- AnsiString * Matches = NULL);
- static int __fastcall FindCommand(const char ** Commands, size_t Count,
- const AnsiString Command, AnsiString * Matches = NULL);
- static void __fastcall CheckParams(TOptions * Parameters, bool Switches);
- protected:
- struct TScriptCommand
- {
- AnsiString Description;
- AnsiString Help;
- TCommandProc Proc;
- int MinParams;
- int MaxParams;
- bool Switches;
- };
- };
- //---------------------------------------------------------------------------
- __fastcall TScriptCommands::TScriptCommands()
- {
- Sorted = true;
- CaseSensitive = false;
- }
- //---------------------------------------------------------------------------
- __fastcall TScriptCommands::~TScriptCommands()
- {
- for (int Index = 0; Index < Count; Index++)
- {
- delete reinterpret_cast<TScriptCommand *>(Objects[Index]);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScriptCommands::Register(const char * Command,
- const AnsiString Description, const AnsiString Help, TCommandProc Proc,
- int MinParams, int MaxParams, bool Switches)
- {
- TScriptCommand * ScriptCommand = new TScriptCommand;
- ScriptCommand->Description = Description;
- ScriptCommand->Help = Help;
- ScriptCommand->Proc = Proc;
- ScriptCommand->MinParams = MinParams;
- ScriptCommand->MaxParams = MaxParams;
- ScriptCommand->Switches = Switches;
- AddObject(Command, reinterpret_cast<TObject *>(ScriptCommand));
- }
- //---------------------------------------------------------------------------
- void __fastcall TScriptCommands::Register(const char * Command,
- int Description, int Help, TCommandProc Proc,
- int MinParams, int MaxParams, bool Switches)
- {
- AnsiString ADescription;
- if (Description > 0)
- {
- ADescription = LoadStr(Description);
- }
- AnsiString AHelp;
- if (Help > 0)
- {
- AHelp = LoadStr(Help, 10240);
- }
- Register(Command, ADescription, AHelp, Proc, MinParams, MaxParams, Switches);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScriptCommands::Register(const char * Command, TCommandProc Proc,
- int MinParams, int MaxParams, bool Switches)
- {
- Register(Command, "", "", Proc, MinParams, MaxParams, Switches);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TScriptCommands::Info(const AnsiString Command,
- AnsiString * Description, AnsiString * Help)
- {
- int Index = FindCommand(this, Command);
- bool Result = (Index >= 0);
- if (Result)
- {
- TScriptCommand * ScriptCommand = reinterpret_cast<TScriptCommand *>(Objects[Index]);
- if (Description != NULL)
- {
- *Description = ScriptCommand->Description;
- }
- if (Help != NULL)
- {
- *Help = ScriptCommand->Help;
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TScriptCommands::Enumerate(int Index,
- AnsiString * Command, AnsiString * Description, AnsiString * Help)
- {
- bool Result = (Index < Count);
- if (Result)
- {
- TScriptCommand * ScriptCommand = reinterpret_cast<TScriptCommand *>(Objects[Index]);
- if (Command != NULL)
- {
- *Command = Strings[Index];
- }
- if (Description != NULL)
- {
- *Description = ScriptCommand->Description;
- }
- if (Help != NULL)
- {
- *Help = ScriptCommand->Help;
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- int __fastcall TScriptCommands::FindCommand(TStrings * Commands,
- const AnsiString Command, AnsiString * Matches)
- {
- int Result = Commands->IndexOf(Command);
- if (Result < 0)
- {
- int MatchesCount = 0;
- for (int i = 0; i < Commands->Count; i++)
- {
- if ((Command.Length() <= Commands->Strings[i].Length()) &&
- SameText(Command, Commands->Strings[i].SubString(1, Command.Length())))
- {
- if (Matches != NULL)
- {
- if (!Matches->IsEmpty())
- {
- *Matches += ", ";
- }
- *Matches += Commands->Strings[i];
- }
- MatchesCount++;
- Result = i;
- }
- }
- if (MatchesCount == 0)
- {
- Result = -1;
- }
- else if (MatchesCount > 1)
- {
- Result = -2;
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- int __fastcall TScriptCommands::FindCommand(const char ** Commands, size_t Count,
- const AnsiString Command, AnsiString * Matches)
- {
- int Result;
- TStringList * Strings = new TStringList;
- try
- {
- Strings->CaseSensitive = false;
- for (unsigned int i = 0; i < Count; i++)
- {
- Strings->Add(Commands[i]);
- }
- Result = FindCommand(Strings, Command, Matches);
- }
- __finally
- {
- delete Strings;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TScriptCommands::CheckParams(TOptions * Parameters,
- bool Switches)
- {
- AnsiString Switch;
- if (!Switches && Parameters->UnusedSwitch(Switch))
- {
- throw Exception(FMTLOAD(SCRIPT_UNKNOWN_SWITCH, (Switch)));
- }
- }
- //---------------------------------------------------------------------------
- // parameters are by purpose passed by (constant) reference.
- // because if passed by value (copy), AnsiString reference is not for some reason
- // decreased on exit by exception, leading to memory leak
- void __fastcall TScriptCommands::Execute(const AnsiString & Command, const AnsiString & Params)
- {
- TScriptProcParams * Parameters = new TScriptProcParams(Params);
- try
- {
- AnsiString Matches;
- int Index = FindCommand(this, Command, &Matches);
- if (Index == -2)
- {
- throw Exception(FMTLOAD(SCRIPT_COMMAND_AMBIGUOUS, (Command, Matches)));
- }
- else if (Index < 0)
- {
- throw Exception(FMTLOAD(SCRIPT_COMMAND_UNKNOWN, (Command)));
- }
- TScriptCommand * ScriptCommand = reinterpret_cast<TScriptCommand *>(Objects[Index]);
- AnsiString FullCommand = Strings[Index];
- if (Parameters->ParamCount < ScriptCommand->MinParams)
- {
- throw Exception(FMTLOAD(SCRIPT_MISSING_PARAMS, (FullCommand)));
- }
- else if ((ScriptCommand->MaxParams >= 0) && (Parameters->ParamCount > ScriptCommand->MaxParams))
- {
- throw Exception(FMTLOAD(SCRIPT_TOO_MANY_PARAMS, (FullCommand)));
- }
- else
- {
- CheckParams(Parameters, ScriptCommand->Switches);
- ScriptCommand->Proc(Parameters);
- }
- }
- __finally
- {
- delete Parameters;
- }
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- __fastcall TScript::TScript(bool LimitedOutput)
- {
- FLimitedOutput = LimitedOutput;
- FTerminal = NULL;
- FSessionReopenTimeout = Configuration->SessionReopenTimeout;
- Init();
- }
- //---------------------------------------------------------------------------
- __fastcall TScript::~TScript()
- {
- delete FCommands;
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::Init()
- {
- FBatch = BatchOff;
- FConfirm = true;
- FEcho = false;
- FSynchronizeParams = 0;
- FOnPrint = NULL;
- FOnTerminalSynchronizeDirectory = NULL;
- FOnSynchronizeStartStop = NULL;
- FSynchronizeMode = -1;
- FKeepingUpToDate = false;
- FCommands = new TScriptCommands;
- FCommands->Register("help", SCRIPT_HELP_DESC, SCRIPT_HELP_HELP, &HelpProc, 0, -1, false);
- FCommands->Register("man", 0, SCRIPT_HELP_HELP, &HelpProc, 0, -1, false);
- // the call command does not have switches itself, but the commands may have
- FCommands->Register("call", SCRIPT_CALL_DESC2, SCRIPT_CALL_HELP2, &CallProc, 1, -1, true);
- FCommands->Register("!", 0, SCRIPT_CALL_HELP2, &CallProc, 1, -1, false);
- FCommands->Register("pwd", SCRIPT_PWD_DESC, SCRIPT_PWD_HELP, &PwdProc, 0, 0, false);
- FCommands->Register("cd", SCRIPT_CD_DESC, SCRIPT_CD_HELP, &CdProc, 0, 1, false);
- FCommands->Register("ls", SCRIPT_LS_DESC, SCRIPT_LS_HELP, &LsProc, 0, 1, false);
- FCommands->Register("dir", 0, SCRIPT_LS_HELP, &LsProc, 0, 1, false);
- FCommands->Register("rm", SCRIPT_RM_DESC, SCRIPT_RM_HELP, &RmProc, 1, -1, false);
- FCommands->Register("rmdir", SCRIPT_RMDIR_DESC, SCRIPT_RMDIR_HELP, &RmDirProc, 1, -1, false);
- FCommands->Register("mv", SCRIPT_MV_DESC, SCRIPT_MV_HELP, &MvProc, 2, -1, false);
- FCommands->Register("rename", 0, SCRIPT_MV_HELP, &MvProc, 2, -1, false);
- FCommands->Register("chmod", SCRIPT_CHMOD_DESC, SCRIPT_CHMOD_HELP, &ChModProc, 2, -1, false);
- FCommands->Register("ln", SCRIPT_LN_DESC, SCRIPT_LN_HELP, &LnProc, 2, 2, false);
- FCommands->Register("symlink", 0, SCRIPT_LN_HELP, &LnProc, 2, 2, false);
- FCommands->Register("mkdir", SCRIPT_MKDIR_DESC, SCRIPT_MKDIR_HELP, &MkDirProc, 1, 1, false);
- FCommands->Register("get", SCRIPT_GET_DESC, SCRIPT_GET_HELP3, &GetProc, 1, -1, true);
- FCommands->Register("recv", 0, SCRIPT_GET_HELP3, &GetProc, 1, -1, false);
- FCommands->Register("put", SCRIPT_PUT_DESC, SCRIPT_PUT_HELP3, &PutProc, 1, -1, true);
- FCommands->Register("send", 0, SCRIPT_PUT_HELP3, &PutProc, 1, -1, false);
- FCommands->Register("option", SCRIPT_OPTION_DESC, SCRIPT_OPTION_HELP6, &OptionProc, -1, 2, false);
- FCommands->Register("ascii", 0, SCRIPT_OPTION_HELP6, &AsciiProc, 0, 0, false);
- FCommands->Register("binary", 0, SCRIPT_OPTION_HELP6, &BinaryProc, 0, 0, false);
- FCommands->Register("synchronize", SCRIPT_SYNCHRONIZE_DESC, SCRIPT_SYNCHRONIZE_HELP3, &SynchronizeProc, 1, 3, true);
- FCommands->Register("keepuptodate", SCRIPT_KEEPUPTODATE_DESC, SCRIPT_KEEPUPTODATE_HELP2, &KeepUpToDateProc, 0, 2, true);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::SetCopyParam(const TCopyParamType & value)
- {
- FCopyParam.Assign(&value);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::SetSynchronizeParams(int value)
- {
- FSynchronizeParams = (value &
- (TTerminal::spExistingOnly | TTerminal::spTimestamp |
- TTerminal::spNotByTime | TTerminal::spBySize));
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::Command(AnsiString Cmd)
- {
- try
- {
- if (!Cmd.Trim().IsEmpty() && (Cmd[1] != ';') && (Cmd[1] != '#'))
- {
- if (FEcho)
- {
- PrintLine(Cmd);
- }
- AnsiString Command;
- if (CutToken(Cmd, Command))
- {
- int ASessionReopenTimeout = Configuration->SessionReopenTimeout;
- try
- {
- Configuration->SessionReopenTimeout = FSessionReopenTimeout;
- FCommands->Execute(Command, Cmd);
- }
- __finally
- {
- Configuration->SessionReopenTimeout = ASessionReopenTimeout;
- }
- }
- }
- }
- catch(Exception & E)
- {
- if (!HandleExtendedException(&E))
- {
- throw;
- }
- }
- }
- //---------------------------------------------------------------------------
- TStrings * __fastcall TScript::CreateFileList(TScriptProcParams * Parameters, int Start,
- int End, TFileListType ListType)
- {
- TStrings * Result = new TStringList();
- TStrings * FileLists = NULL;
- try
- {
- try
- {
- for (int i = Start; i <= End; i++)
- {
- AnsiString FileName = Parameters->Param[i];
- if (FLAGSET(ListType, fltDirectories))
- {
- TRemoteFile * File = new TRemoteFile();
- File->FileName = FileName;
- File->Type = FILETYPE_DIRECTORY;
- Result->AddObject(FileName, File);
- }
- else if (FLAGSET(ListType, fltMask) && TFileMasks::IsMask(FileName))
- {
- AnsiString FileDirectory = UnixExtractFilePath(FileName);
- AnsiString Directory = FileDirectory;
- if (Directory.IsEmpty())
- {
- Directory = UnixIncludeTrailingBackslash(FTerminal->CurrentDirectory);
- }
- TRemoteFileList * FileList = NULL;
- if (FileLists != NULL)
- {
- int Index = FileLists->IndexOf(Directory);
- if (Index > 0)
- {
- FileList = dynamic_cast<TRemoteFileList *>(FileLists->Objects[Index]);
- }
- }
- if (FileList == NULL)
- {
- FileList = FTerminal->CustomReadDirectoryListing(Directory, false);
- if (FileLists == NULL)
- {
- FileLists = new TStringList();
- }
- FileLists->AddObject(Directory, FileList);
- }
- TFileMasks Mask;
- Mask.SetMask(UnixExtractFileName(FileName));
- for (int i = 0; i < FileList->Count; i++)
- {
- TRemoteFile * File = FileList->Files[i];
- if (!File->IsThisDirectory && !File->IsParentDirectory &&
- Mask.Matches(File->FileName))
- {
- Result->AddObject(FileDirectory + File->FileName,
- FLAGSET(ListType, fltQueryServer) ? File->Duplicate() : NULL);
- }
- }
- }
- else
- {
- TRemoteFile * File = NULL;
- if (FLAGSET(ListType, fltQueryServer))
- {
- FTerminal->ExceptionOnFail = true;
- try
- {
- FTerminal->ReadFile(FileName, File);
- if (!File->HaveFullFileName)
- {
- File->FullFileName = FileName;
- }
- }
- __finally
- {
- FTerminal->ExceptionOnFail = false;
- }
- }
- Result->AddObject(FileName, File);
- }
- }
- }
- catch(...)
- {
- FreeFileList(Result);
- throw;
- }
- }
- __finally
- {
- if (FileLists != NULL)
- {
- for (int i = 0; i < FileLists->Count; i++)
- {
- delete FileLists->Objects[i];
- }
- delete FileLists;
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- TStrings * __fastcall TScript::CreateLocalFileList(TScriptProcParams * Parameters,
- int Start, int End, TFileListType ListType)
- {
- TStrings * Result = new TStringList();
- try
- {
- for (int i = Start; i <= End; i++)
- {
- AnsiString FileName = Parameters->Param[i];
- if (FLAGSET(ListType, fltMask))
- {
- TSearchRec SearchRec;
- int FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
- if (FindFirst(FileName, FindAttrs, SearchRec) == 0)
- {
- AnsiString Directory = ExtractFilePath(FileName);
- try
- {
- do
- {
- if ((SearchRec.Name != ".") && (SearchRec.Name != ".."))
- {
- Result->Add(Directory + SearchRec.Name);
- }
- }
- while (FindNext(SearchRec) == 0);
- }
- __finally
- {
- FindClose(SearchRec);
- }
- }
- else
- {
- // not match, let it fail latter however
- Result->Add(FileName);
- }
- }
- else
- {
- Result->Add(FileName);
- }
- }
- }
- catch(...)
- {
- delete Result;
- throw;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::FreeFileList(TStrings * FileList)
- {
- for (int i = 0; i < FileList->Count; i++)
- {
- if (FileList->Objects[i] != NULL)
- {
- TRemoteFile * File = dynamic_cast<TRemoteFile *>(FileList->Objects[i]);
- delete File;
- }
- }
- delete FileList;
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::ConnectTerminal(TTerminal * Terminal)
- {
- Terminal->Open();
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::Print(const AnsiString Str)
- {
- if (FOnPrint != NULL)
- {
- FOnPrint(this, Str);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::PrintLine(const AnsiString Str)
- {
- Print(Str + "\n");
- }
- //---------------------------------------------------------------------------
- bool __fastcall TScript::HandleExtendedException(Exception * E, TTerminal * Terminal)
- {
- bool Result = (OnShowExtendedException != NULL);
- if (Result)
- {
- if (Terminal == NULL)
- {
- Terminal = FTerminal;
- }
- OnShowExtendedException(Terminal, E, NULL);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::CheckSession()
- {
- if (FTerminal == NULL)
- {
- throw Exception(LoadStr(SCRIPT_NO_SESSION));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::CheckParams(TScriptProcParams * Parameters)
- {
- TScriptCommands::CheckParams(Parameters, false);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::TransferParamParams(int & Params, TScriptProcParams * Parameters)
- {
- Params |= FLAGMASK(!FConfirm, cpNoConfirmation);
- if (Parameters->FindSwitch("delete"))
- {
- Params |= cpDelete;
- }
- if (Parameters->FindSwitch("resume"))
- {
- Params |= cpResume;
- }
- else if (Parameters->FindSwitch("append"))
- {
- Params |= cpAppend;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::CopyParamParams(TCopyParamType & CopyParam, TScriptProcParams * Parameters)
- {
- AnsiString Value;
- // total size is not visualized, hence it makes no sense to calculate it
- CopyParam.CalculateSize = false;
- if (Parameters->FindSwitch("nopreservetime"))
- {
- CopyParam.PreserveTime = false;
- }
- if (Parameters->FindSwitch("preservetime"))
- {
- CopyParam.PreserveTime = true;
- }
- if (Parameters->FindSwitch("nopermissions"))
- {
- CopyParam.PreserveRights = false;
- }
- if (Parameters->FindSwitch("permissions", Value))
- {
- CopyParam.PreserveRights = true;
- CopyParam.Rights.Octal = Value;
- }
- if (Parameters->FindSwitch("speed", Value))
- {
- int CPSLimit;
- if (Value.IsEmpty())
- {
- CPSLimit = 0;
- }
- else
- {
- CPSLimit = StrToInt(Value) * 1024;
- if (CPSLimit < 0)
- {
- CPSLimit = 0;
- }
- }
- CopyParam.CPSLimit = CPSLimit;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::ResetTransfer()
- {
- }
- //---------------------------------------------------------------------------
- bool __fastcall TScript::EnsureCommandSessionFallback(TFSCapability Capability)
- {
- bool Result = FTerminal->IsCapable[Capability] ||
- FTerminal->CommandSessionOpened;
- if (!Result)
- {
- try
- {
- ConnectTerminal(FTerminal->CommandSession);
- Result = true;
- }
- catch(Exception & E)
- {
- HandleExtendedException(&E, FTerminal->CommandSession);
- Result = false;
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::HelpProc(TScriptProcParams * Parameters)
- {
- AnsiString Output;
- if (Parameters->ParamCount == 0)
- {
- AnsiString Command;
- AnsiString Description;
- int Index = 0;
- while (FCommands->Enumerate(Index, &Command, &Description, NULL))
- {
- if (!Description.IsEmpty())
- {
- Output += FORMAT("%-8s %s\n", (Command, Description));
- }
- Index++;
- }
- }
- else
- {
- for (int i = 1; i <= Parameters->ParamCount; i++)
- {
- AnsiString Help;
- if (FCommands->Info(Parameters->Param[i], NULL, &Help))
- {
- Output += Help;
- }
- else
- {
- throw Exception(FMTLOAD(SCRIPT_COMMAND_UNKNOWN, (Parameters->Param[i])));
- }
- }
- }
- Print(Output);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::CallProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- if (EnsureCommandSessionFallback(fcAnyCommand))
- {
- FTerminal->AnyCommand(Parameters->ParamsStr, TerminalCaptureLog);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::TerminalCaptureLog(const AnsiString & AddedLine,
- bool /*StdError*/)
- {
- PrintLine(AddedLine);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::PwdProc(TScriptProcParams * /*Parameters*/)
- {
- CheckSession();
- PrintLine(FTerminal->CurrentDirectory);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::CdProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- if (Parameters->ParamCount == 0)
- {
- FTerminal->HomeDirectory();
- }
- else
- {
- FTerminal->ChangeDirectory(Parameters->Param[1]);
- }
- PrintLine(FTerminal->CurrentDirectory);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::LsProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- AnsiString Directory;
- TFileMasks Mask;
- if (Parameters->ParamCount > 0)
- {
- Directory = Parameters->Param[1];
- AnsiString MaskStr = UnixExtractFileName(Directory);
- if (TFileMasks::IsMask(MaskStr))
- {
- Mask.SetMask(MaskStr);
- Directory = UnixExtractFilePath(Directory);
- }
- }
- if (Directory.IsEmpty())
- {
- Directory = FTerminal->CurrentDirectory;
- }
- TRemoteFileList * FileList = FTerminal->ReadDirectoryListing(Directory, Mask);
- // on error user may select "skip", then we get NULL
- if (FileList != NULL)
- {
- try
- {
- for (int i = 0; i < FileList->Count; i++)
- {
- PrintLine(FileList->Files[i]->ListingStr);
- }
- }
- __finally
- {
- delete FileList;
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::RmProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- TStrings * FileList = CreateFileList(Parameters, 1, Parameters->ParamCount, fltMask);
- try
- {
- FTerminal->DeleteFiles(FileList);
- }
- __finally
- {
- FreeFileList(FileList);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::RmDirProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- TStrings * FileList = CreateFileList(Parameters, 1, Parameters->ParamCount, fltDirectories);
- try
- {
- FTerminal->DeleteFiles(FileList);
- }
- __finally
- {
- FreeFileList(FileList);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::MvProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- TStrings * FileList = CreateFileList(Parameters, 1, Parameters->ParamCount - 1,
- fltMask);
- try
- {
- assert(Parameters->ParamCount >= 1);
- AnsiString Target = Parameters->Param[Parameters->ParamCount];
- AnsiString TargetDirectory = UnixExtractFilePath(Target);
- AnsiString FileMask = UnixExtractFileName(Target);
- FTerminal->MoveFiles(FileList, TargetDirectory, FileMask);
- }
- __finally
- {
- FreeFileList(FileList);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::ChModProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- TStrings * FileList = CreateFileList(Parameters, 2, Parameters->ParamCount,
- fltMask);
- try
- {
- TRemoteProperties Properties;
- Properties.Valid = TValidProperties() << vpRights;
- Properties.Rights.Octal = Parameters->Param[1];
- FTerminal->ChangeFilesProperties(FileList, &Properties);
- }
- __finally
- {
- FreeFileList(FileList);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::LnProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- assert(Parameters->ParamCount == 2);
- FTerminal->CreateLink(Parameters->Param[2], Parameters->Param[1], true);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::MkDirProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- FTerminal->CreateDirectory(Parameters->Param[1]);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::GetProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- ResetTransfer();
- int LastFileParam = (Parameters->ParamCount == 1 ? 1 : Parameters->ParamCount - 1);
- TStrings * FileList = CreateFileList(Parameters, 1, LastFileParam,
- fltQueryServer | fltMask);
- try
- {
- TCopyParamType CopyParam = FCopyParam;
- AnsiString TargetDirectory;
- if (Parameters->ParamCount == 1)
- {
- TargetDirectory = GetCurrentDir();
- CopyParam.FileMask = "";
- }
- else
- {
- AnsiString Target = Parameters->Param[Parameters->ParamCount];
- TargetDirectory = ExtractFilePath(Target);
- if (TargetDirectory.IsEmpty())
- {
- TargetDirectory = GetCurrentDir();
- }
- CopyParam.FileMask = ExtractFileName(Target);
- }
- int Params = 0;
- TransferParamParams(Params, Parameters);
- CopyParamParams(CopyParam, Parameters);
- CheckParams(Parameters);
- FTerminal->CopyToLocal(FileList, TargetDirectory, &CopyParam, Params);
- }
- __finally
- {
- FreeFileList(FileList);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::PutProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- ResetTransfer();
- int LastFileParam = (Parameters->ParamCount == 1 ? 1 : Parameters->ParamCount - 1);
- TStrings * FileList = CreateLocalFileList(Parameters, 1, LastFileParam, fltMask);
- try
- {
- TCopyParamType CopyParam = FCopyParam;
- AnsiString TargetDirectory;
- if (Parameters->ParamCount == 1)
- {
- TargetDirectory = FTerminal->CurrentDirectory;
- CopyParam.FileMask = "";
- }
- else
- {
- AnsiString Target = Parameters->Param[Parameters->ParamCount];
- TargetDirectory = UnixExtractFilePath(Target);
- if (TargetDirectory.IsEmpty())
- {
- TargetDirectory = FTerminal->CurrentDirectory;
- }
- CopyParam.FileMask = UnixExtractFileName(Target);
- }
- int Params = 0;
- TransferParamParams(Params, Parameters);
- CopyParamParams(CopyParam, Parameters);
- CheckParams(Parameters);
- FTerminal->CopyToRemote(FileList, TargetDirectory, &CopyParam, Params);
- }
- __finally
- {
- FreeFileList(FileList);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::OptionImpl(AnsiString OptionName, AnsiString ValueName)
- {
- enum { Echo, Batch, Confirm, Transfer, SynchDelete, Exclude, Include, ReconnectTime };
- static const char * Names[] = { "echo", "batch", "confirm", "transfer",
- "synchdelete", "exclude", "include", "reconnecttime" };
- enum { Off, On };
- static const char * ToggleNames[] = { "off", "on" };
- assert((BatchOff == 0) && (BatchOn == 1) && (BatchAbort == 2) && (BatchContinue == 3));
- static const char * BatchModeNames[] = { "off", "on", "abort", "continue" };
- assert((tmBinary == 0) && (tmAscii == 1) && (tmAutomatic == 2));
- static const char * TransferModeNames[] = { "binary", "ascii", "automatic" };
- int Option = -1;
- if (!OptionName.IsEmpty())
- {
- Option = TScriptCommands::FindCommand(Names, LENOF(Names), OptionName);
- if (Option < 0)
- {
- throw Exception(FMTLOAD(SCRIPT_OPTION_UNKNOWN, (OptionName)));
- }
- else
- {
- OptionName = Names[Option];
- }
- }
- #define OPT(OPT) ((Option < 0) || (Option == OPT))
- const char * ListFormat = "%-15s %-10s";
- bool SetValue = !ValueName.IsEmpty();
- if (OPT(Echo))
- {
- if (SetValue)
- {
- int Value = TScriptCommands::FindCommand(ToggleNames, LENOF(ToggleNames), ValueName);
- if (Value < 0)
- {
- throw Exception(FMTLOAD(SCRIPT_VALUE_UNKNOWN, (ValueName, OptionName)));
- }
- FEcho = (Value == On);
- }
- PrintLine(FORMAT(ListFormat, (Names[Echo], ToggleNames[FEcho ? On : Off])));
- }
- if (OPT(Batch))
- {
- if (SetValue)
- {
- int Value = TScriptCommands::FindCommand(BatchModeNames, LENOF(BatchModeNames), ValueName);
- if (Value < 0)
- {
- throw Exception(FMTLOAD(SCRIPT_VALUE_UNKNOWN, (ValueName, OptionName)));
- }
- FBatch = (TBatchMode)Value;
- }
- PrintLine(FORMAT(ListFormat, (Names[Batch], BatchModeNames[FBatch])));
- }
- if (OPT(Confirm))
- {
- if (SetValue)
- {
- int Value = TScriptCommands::FindCommand(ToggleNames, LENOF(ToggleNames), ValueName);
- if (Value < 0)
- {
- throw Exception(FMTLOAD(SCRIPT_VALUE_UNKNOWN, (ValueName, OptionName)));
- }
- FConfirm = (Value == On);
- }
- PrintLine(FORMAT(ListFormat, (Names[Confirm], ToggleNames[FConfirm ? On : Off])));
- }
- if (OPT(Transfer))
- {
- if (SetValue)
- {
- int Value = TScriptCommands::FindCommand(TransferModeNames,
- LENOF(TransferModeNames), ValueName);
- if (Value < 0)
- {
- throw Exception(FMTLOAD(SCRIPT_VALUE_UNKNOWN, (ValueName, OptionName)));
- }
- FCopyParam.TransferMode = (TTransferMode)Value;
- }
- assert(FCopyParam.TransferMode < LENOF(TransferModeNames));
- const char * Value = TransferModeNames[FCopyParam.TransferMode];
- PrintLine(FORMAT(ListFormat, (Names[Transfer], Value)));
- }
- // omit the option in listing
- if (Option == SynchDelete)
- {
- if (SetValue)
- {
- int Value = TScriptCommands::FindCommand(ToggleNames, LENOF(ToggleNames), ValueName);
- if (Value < 0)
- {
- throw Exception(FMTLOAD(SCRIPT_VALUE_UNKNOWN, (ValueName, OptionName)));
- }
- FSynchronizeParams =
- (FSynchronizeParams & ~TTerminal::spDelete) |
- FLAGMASK(Value == On, TTerminal::spDelete);
- }
- PrintLine(FORMAT(ListFormat, (Names[SynchDelete],
- ToggleNames[FLAGSET(FSynchronizeParams, TTerminal::spDelete) ? On : Off])));
- }
- static const char * Clear = "clear";
- if (OPT(Include))
- {
- if (SetValue)
- {
- FCopyParam.NegativeExclude = true;
- FCopyParam.ExcludeFileMask =
- (ValueName == Clear ? AnsiString() : ValueName);
- }
- if (SetValue ||
- (FCopyParam.NegativeExclude && !FCopyParam.ExcludeFileMask.Masks.IsEmpty()))
- {
- PrintLine(FORMAT(ListFormat, (Names[Include], FCopyParam.ExcludeFileMask.Masks)));
- }
- }
- if (OPT(Exclude))
- {
- if (SetValue)
- {
- FCopyParam.NegativeExclude = false;
- FCopyParam.ExcludeFileMask =
- (ValueName == Clear ? AnsiString() : ValueName);
- }
- if (SetValue ||
- (!FCopyParam.NegativeExclude && !FCopyParam.ExcludeFileMask.Masks.IsEmpty()))
- {
- PrintLine(FORMAT(ListFormat, (Names[Exclude], FCopyParam.ExcludeFileMask.Masks)));
- }
- }
- if (OPT(ReconnectTime))
- {
- if (SetValue)
- {
- int Value;
- if (SameText(ValueName, ToggleNames[Off]))
- {
- Value = 0;
- }
- else
- {
- Value = StrToInt(ValueName) * 1000;
- }
- if (Value < 0)
- {
- throw Exception(FMTLOAD(SCRIPT_VALUE_UNKNOWN, (ValueName, OptionName)));
- }
- FSessionReopenTimeout = Value;
- }
- if (FSessionReopenTimeout == 0)
- {
- ValueName = ToggleNames[Off];
- }
- else
- {
- ValueName = IntToStr(FSessionReopenTimeout / 1000);
- }
- PrintLine(FORMAT(ListFormat, (Names[ReconnectTime], ValueName)));
- }
- #undef OPT
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::OptionProc(TScriptProcParams * Parameters)
- {
- AnsiString OptionName;
- AnsiString ValueName;
- if (Parameters->ParamCount >= 1)
- {
- OptionName = Parameters->Param[1];
- }
- if (Parameters->ParamCount >= 2)
- {
- ValueName = Parameters->Param[2];
- }
- OptionImpl(OptionName, ValueName);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::AsciiProc(TScriptProcParams * /*Parameters*/)
- {
- OptionImpl("transfer", "ascii");
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::BinaryProc(TScriptProcParams * /*Parameters*/)
- {
- OptionImpl("transfer", "binary");
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::SynchronizeDirectories(TScriptProcParams * Parameters,
- AnsiString & LocalDirectory, AnsiString & RemoteDirectory, int FirstParam)
- {
- if (Parameters->ParamCount >= FirstParam)
- {
- LocalDirectory = Parameters->Param[FirstParam];
- }
- else
- {
- LocalDirectory = GetCurrentDir();
- }
- if (Parameters->ParamCount >= FirstParam + 1)
- {
- RemoteDirectory = Parameters->Param[FirstParam + 1];
- }
- else
- {
- RemoteDirectory = FTerminal->CurrentDirectory;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::SynchronizeProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- ResetTransfer();
- static const char * ModeNames[] = { "remote", "local", "both" };
- AnsiString ModeName = Parameters->Param[1];
- assert(FSynchronizeMode < 0);
- FSynchronizeMode = TScriptCommands::FindCommand(ModeNames, LENOF(ModeNames), ModeName);
- try
- {
- if (FSynchronizeMode < 0)
- {
- throw Exception(FMTLOAD(SCRIPT_OPTION_UNKNOWN, (ModeName)));
- }
- AnsiString LocalDirectory;
- AnsiString RemoteDirectory;
- SynchronizeDirectories(Parameters, LocalDirectory, RemoteDirectory, 2);
- TCopyParamType CopyParam = FCopyParam;
- CopyParamParams(CopyParam, Parameters);
- int SynchronizeParams = FSynchronizeParams | TTerminal::spNoConfirmation;
- AnsiString Value;
- if (Parameters->FindSwitch("delete"))
- {
- SynchronizeParams |= TTerminal::spDelete;
- }
- if (Parameters->FindSwitch("mirror") &&
- (FSynchronizeMode != TTerminal::smBoth))
- {
- SynchronizeParams |= TTerminal::spMirror;
- }
- if (Parameters->FindSwitch("criteria", Value))
- {
- enum { None, Time, Size, Both };
- static const char * CriteriaNames[] = { "none", "time", "size", "both" };
- int Criteria = TScriptCommands::FindCommand(CriteriaNames, LENOF(CriteriaNames), Value);
- switch (Criteria)
- {
- case None:
- SynchronizeParams |= TTerminal::spNotByTime;
- SynchronizeParams &= ~TTerminal::spBySize;
- break;
- case Time:
- SynchronizeParams &= ~(TTerminal::spNotByTime | TTerminal::spBySize);
- break;
- case Size:
- SynchronizeParams |= TTerminal::spNotByTime | TTerminal::spBySize;
- break;
- case Both:
- SynchronizeParams &= ~TTerminal::spNotByTime;
- SynchronizeParams |= TTerminal::spBySize;
- break;
- }
- }
- // enforce rules
- if (FSynchronizeMode == TTerminal::smBoth)
- {
- SynchronizeParams &= ~(TTerminal::spNotByTime | TTerminal::spBySize);
- }
- CheckParams(Parameters);
- PrintLine(LoadStr(SCRIPT_SYNCHRONIZE_COLLECTING));
- TSynchronizeChecklist * Checklist =
- FTerminal->SynchronizeCollect(LocalDirectory, RemoteDirectory,
- static_cast<TTerminal::TSynchronizeMode>(FSynchronizeMode),
- &CopyParam, SynchronizeParams, OnTerminalSynchronizeDirectory, NULL);
- try
- {
- if (Checklist->Count > 0)
- {
- PrintLine(LoadStr(SCRIPT_SYNCHRONIZE_SYNCHRONIZING));
- FTerminal->SynchronizeApply(Checklist, LocalDirectory, RemoteDirectory,
- &CopyParam, SynchronizeParams, OnTerminalSynchronizeDirectory);
- }
- else
- {
- PrintLine(LoadStr(SCRIPT_SYNCHRONIZE_NODIFFERENCE));
- }
- }
- __finally
- {
- delete Checklist;
- }
- }
- __finally
- {
- FSynchronizeMode = -1;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::Synchronize(const AnsiString LocalDirectory,
- const AnsiString RemoteDirectory, const TCopyParamType & CopyParam,
- int SynchronizeParams, TSynchronizeChecklist ** Checklist)
- {
- try
- {
- FKeepingUpToDate = true;
- TSynchronizeChecklist * AChecklist =
- FTerminal->SynchronizeCollect(LocalDirectory, RemoteDirectory, TTerminal::smRemote,
- &CopyParam, SynchronizeParams, NULL, NULL);
- try
- {
- if (AChecklist->Count > 0)
- {
- FTerminal->SynchronizeApply(AChecklist, LocalDirectory, RemoteDirectory,
- &CopyParam, SynchronizeParams, OnTerminalSynchronizeDirectory);
- }
- }
- __finally
- {
- if (Checklist == NULL)
- {
- delete AChecklist;
- }
- else
- {
- *Checklist = AChecklist;
- }
- }
- // to break line after the last transfer (if any);
- Print("");
- FKeepingUpToDate = false;
- }
- catch(Exception & E)
- {
- FKeepingUpToDate = false;
- HandleExtendedException(&E);
- throw;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::KeepUpToDateProc(TScriptProcParams * Parameters)
- {
- if (OnSynchronizeStartStop == NULL)
- {
- Abort();
- }
- CheckSession();
- ResetTransfer();
- AnsiString LocalDirectory;
- AnsiString RemoteDirectory;
- SynchronizeDirectories(Parameters, LocalDirectory, RemoteDirectory, 1);
- int SynchronizeParams = FSynchronizeParams | TTerminal::spNoConfirmation |
- TTerminal::spNoRecurse | TTerminal::spUseCache | TTerminal::spDelayProgress |
- TTerminal::spSubDirs;
- if (Parameters->FindSwitch("delete"))
- {
- SynchronizeParams |= TTerminal::spDelete;
- }
- TCopyParamType CopyParam = FCopyParam;
- CopyParamParams(CopyParam, Parameters);
- CheckParams(Parameters);
- PrintLine(LoadStr(SCRIPT_KEEPING_UP_TO_DATE));
- OnSynchronizeStartStop(this, LocalDirectory, RemoteDirectory, CopyParam, SynchronizeParams);
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- __fastcall TManagementScript::TManagementScript(TStoredSessionList * StoredSessions,
- bool LimitedOutput) :
- TScript(LimitedOutput)
- {
- assert(StoredSessions != NULL);
- FOnInput = NULL;
- FOnTerminalPromptUser = NULL;
- FOnShowExtendedException = NULL;
- FOnTerminalQueryUser = NULL;
- FStoredSessions = StoredSessions;
- FTerminalList = new TTerminalList(Configuration);
- FOnQueryCancel = NULL;
- FContinue = true;
- OnTerminalSynchronizeDirectory = TerminalSynchronizeDirectory;
- FCommands->Register("exit", SCRIPT_EXIT_DESC, SCRIPT_EXIT_HELP, &ExitProc, 0, 0, false);
- FCommands->Register("bye", 0, SCRIPT_EXIT_HELP, &ExitProc, 0, 0, false);
- FCommands->Register("open", SCRIPT_OPEN_DESC, SCRIPT_OPEN_HELP3, &OpenProc, 0, 1, true);
- FCommands->Register("close", SCRIPT_CLOSE_DESC, SCRIPT_CLOSE_HELP, &CloseProc, 0, 1, false);
- FCommands->Register("session", SCRIPT_SESSION_DESC, SCRIPT_SESSION_HELP, &SessionProc, 0, 1, false);
- FCommands->Register("lpwd", SCRIPT_LPWD_DESC, SCRIPT_LPWD_HELP, &LPwdProc, 0, 0, false);
- FCommands->Register("lcd", SCRIPT_LCD_DESC, SCRIPT_LCD_HELP, &LCdProc, 1, 1, false);
- FCommands->Register("lls", SCRIPT_LLS_DESC, SCRIPT_LLS_HELP, &LLsProc, 0, 1, false);
- }
- //---------------------------------------------------------------------------
- __fastcall TManagementScript::~TManagementScript()
- {
- while (FTerminalList->Count > 0)
- {
- FreeTerminal(FTerminalList->Terminals[0]);
- }
- delete FTerminalList;
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::FreeTerminal(TTerminal * Terminal)
- {
- if (!Terminal->SessionData->Name.IsEmpty())
- {
- Terminal->SessionData->RemoteDirectory = Terminal->CurrentDirectory;
- TSessionData * Data;
- Data = (TSessionData *)StoredSessions->FindByName(Terminal->SessionData->Name);
- if (Data != NULL)
- {
- bool Changed = false;
- if (Terminal->SessionData->UpdateDirectories)
- {
- Data->RemoteDirectory = Terminal->SessionData->RemoteDirectory;
- Changed = true;
- }
- if (Changed)
- {
- // only modified, implicit
- StoredSessions->Save(false, false);
- }
- }
- }
- FTerminalList->FreeTerminal(Terminal);
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::Input(const AnsiString Prompt,
- AnsiString & Str, bool AllowEmpty)
- {
- do
- {
- Str = "";
- if (FOnInput != NULL)
- {
- FOnInput(this, Prompt, Str);
- }
- else
- {
- Abort();
- }
- }
- while (Str.Trim().IsEmpty() && !AllowEmpty);
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::PrintProgress(bool First, const AnsiString Str)
- {
- if (FOnPrintProgress != NULL)
- {
- FOnPrintProgress(this, First, Str);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::ResetTransfer()
- {
- TScript::ResetTransfer();
- FLastProgressFile = "";
- FLastProgressTime = 0;
- FLastProgressMessage = "";
- }
- //---------------------------------------------------------------------------
- bool __fastcall TManagementScript::QueryCancel()
- {
- bool Result = false;
- if (OnQueryCancel != NULL)
- {
- OnQueryCancel(this, Result);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::TerminalInformation(TTerminal * Terminal,
- const AnsiString & Str, bool /*Status*/, bool Active)
- {
- assert(Terminal != NULL);
- if (Active && (Terminal->Status == ssOpening))
- {
- PrintLine(Str);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::TerminalPromptUser(TTerminal * Terminal,
- TPromptKind Kind, AnsiString Name, AnsiString Instructions, TStrings * Prompts,
- TStrings * Results, bool & Result, void * Arg)
- {
- if ((!Terminal->StoredCredentialsTried || !IsAuthenticationPrompt(Kind)) &&
- (OnTerminalPromptUser != NULL))
- {
- OnTerminalPromptUser(Terminal, Kind, Name, Instructions, Prompts, Results, Result, Arg);
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TManagementScript::Synchronizing()
- {
- return (FKeepingUpToDate || (FSynchronizeMode >= 0));
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::ShowPendingProgress()
- {
- if (!FSynchronizeIntro.IsEmpty())
- {
- if (Synchronizing())
- {
- PrintLine(FSynchronizeIntro);
- }
- FSynchronizeIntro = "";
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::TerminalOperationProgress(
- TFileOperationProgressType & ProgressData, TCancelStatus & Cancel)
- {
- if ((ProgressData.Operation == foCopy) ||
- (ProgressData.Operation == foMove))
- {
- if (ProgressData.InProgress && ProgressData.FileInProgress &&
- !ProgressData.FileName.IsEmpty())
- {
- bool DoPrint = false;
- bool First = false;
- AnsiString ProgressFileName = ProgressData.FileName;
- if (ProgressData.Side == osLocal)
- {
- ProgressFileName = ExcludeTrailingBackslash(ProgressFileName);
- }
- else
- {
- ProgressFileName = UnixExcludeTrailingBackslash(ProgressFileName);
- }
- if (ProgressFileName != FLastProgressFile)
- {
- First = true;
- DoPrint = true;
- ShowPendingProgress();
- }
- if (!DoPrint && ((FLastProgressTime != time(NULL)) || ProgressData.IsTransferDone()))
- {
- DoPrint = true;
- }
- if (DoPrint)
- {
- static int WidthFileName = 25;
- AnsiString FileName;
- if (FLimitedOutput)
- {
- FileName = MinimizeName(ProgressFileName, WidthFileName,
- ProgressData.Side == osRemote);
- }
- else
- {
- FileName = ProgressFileName;
- }
- AnsiString ProgressMessage = FORMAT("%-*s | %10d KiB | %6.1f KiB/s | %-6.6s | %3d%%",
- (WidthFileName, FileName,
- static_cast<int>(ProgressData.TransferedSize / 1024),
- static_cast<float>(ProgressData.CPS()) / 1024,
- ProgressData.AsciiTransfer ? "ascii" : "binary",
- ProgressData.TransferProgress()));
- if (FLastProgressMessage != ProgressMessage)
- {
- FLastProgressTime = time(NULL);
- PrintProgress(First, ProgressMessage);
- FLastProgressMessage = ProgressMessage;
- FLastProgressFile = ProgressFileName;
- }
- }
- }
- else
- {
- FLastProgressFile = "";
- }
- }
- if (QueryCancel())
- {
- Cancel = csCancel;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::TerminalOperationFinished(
- TFileOperation Operation, TOperationSide /*Side*/,
- bool /*Temp*/, const AnsiString & FileName, Boolean Success,
- TOnceDoneOperation & /*OnceDoneOperation*/)
- {
- assert(Operation != foCalculateSize);
- if (Success && (Operation != foCalculateSize) && (Operation != foCopy) && (Operation != foMove))
- {
- ShowPendingProgress();
- // For FKeepingUpToDate we should send events to synchronize controller eventually.
- if (Synchronizing() && (Operation == foDelete))
- {
- // Note that this is duplicated with "keep up to date" log.
- PrintLine(FMTLOAD(SCRIPT_SYNCHRONIZE_DELETED, (FileName)));
- }
- else
- {
- PrintLine(FileName);
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::TerminalSynchronizeDirectory(
- const AnsiString LocalDirectory, const AnsiString RemoteDirectory,
- bool & Continue, bool Collect)
- {
- int SynchronizeMode = FSynchronizeMode;
- if (FKeepingUpToDate)
- {
- SynchronizeMode = TTerminal::smRemote;
- }
- AnsiString Arrow;
- switch (SynchronizeMode)
- {
- case TTerminal::smRemote:
- Arrow = "=>";
- break;
- case TTerminal::smLocal:
- Arrow = "<=";
- break;
- case TTerminal::smBoth:
- Arrow = "<=>";
- break;
- }
- AnsiString Progress = FMTLOAD(SCRIPT_SYNCHRONIZE, (ExcludeTrailingBackslash(LocalDirectory),
- Arrow, UnixExcludeTrailingBackslash(RemoteDirectory)));
- if (Collect)
- {
- PrintProgress(false, Progress);
- }
- else
- {
- FSynchronizeIntro = Progress;
- }
- if (QueryCancel())
- {
- Continue = false;
- }
- }
- //---------------------------------------------------------------------------
- TTerminal * __fastcall TManagementScript::FindSession(const AnsiString Index)
- {
- int i = StrToIntDef(Index, -1);
- if ((i <= 0) || (i > FTerminalList->Count))
- {
- throw Exception(FMTLOAD(SCRIPT_SESSION_INDEX_INVALID, (Index)));
- }
- else
- {
- return FTerminalList->Terminals[i - 1];
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::PrintActiveSession()
- {
- assert(FTerminal != NULL);
- PrintLine(FMTLOAD(SCRIPT_ACTIVE_SESSION,
- (FTerminalList->IndexOf(FTerminal) + 1, FTerminal->SessionData->SessionName)));
- }
- //---------------------------------------------------------------------------
- bool __fastcall TManagementScript::HandleExtendedException(Exception * E,
- TTerminal * Terminal)
- {
- bool Result = TScript::HandleExtendedException(E);
- if (Terminal == NULL)
- {
- Terminal = FTerminal;
- }
- if ((Terminal != NULL) && (Terminal == FTerminal) && (dynamic_cast<EFatal*>(E) != NULL))
- {
- try
- {
- DoClose(Terminal);
- }
- catch(...)
- {
- // ignore disconnect errors
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::Connect(const AnsiString Session,
- TOptions * Options, bool CheckParams)
- {
- try
- {
- bool DefaultsOnly;
- TSessionData * Data = FStoredSessions->ParseUrl(Session, Options, DefaultsOnly);
- try
- {
- if (CheckParams)
- {
- TScriptCommands::CheckParams(Options, false);
- }
- assert(Data != NULL);
- if (!Data->CanLogin || DefaultsOnly)
- {
- if (Data->HostName.IsEmpty())
- {
- AnsiString Value;
- Input(LoadStr(SCRIPT_HOST_PROMPT), Value, false);
- Data->HostName = Value;
- }
- assert(Data->CanLogin);
- }
- TTerminal * Terminal = FTerminalList->NewTerminal(Data);
- try
- {
- Terminal->AutoReadDirectory = false;
- Terminal->OnInformation = TerminalInformation;
- Terminal->OnPromptUser = TerminalPromptUser;
- Terminal->OnShowExtendedException = OnShowExtendedException;
- Terminal->OnQueryUser = OnTerminalQueryUser;
- Terminal->OnProgress = TerminalOperationProgress;
- Terminal->OnFinished = TerminalOperationFinished;
- ConnectTerminal(Terminal);
- }
- catch(Exception & E)
- {
- // make sure errors (mainly fatal ones) are associated
- // with this terminal, not the last active one
- bool Handled = HandleExtendedException(&E, Terminal);
- FTerminalList->FreeTerminal(Terminal);
- Terminal = NULL;
- if (!Handled)
- {
- throw;
- }
- }
- if (Terminal != NULL)
- {
- FTerminal = Terminal;
- if (!Data->LocalDirectory.IsEmpty())
- {
- try
- {
- DoChangeLocalDirectory(ExpandFileName(Data->LocalDirectory));
- }
- catch(Exception & E)
- {
- if (!HandleExtendedException(&E))
- {
- throw;
- }
- }
- }
- PrintActiveSession();
- }
- }
- __finally
- {
- delete Data;
- }
- }
- catch(Exception & E)
- {
- if (!HandleExtendedException(&E))
- {
- throw;
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::DoClose(TTerminal * Terminal)
- {
- int Index = FTerminalList->IndexOf(Terminal);
- assert(Index >= 0);
- try
- {
- if (Terminal->Active)
- {
- Terminal->Close();
- }
- AnsiString SessionName = Terminal->SessionData->SessionName;
- FreeTerminal(Terminal);
- PrintLine(FMTLOAD(SCRIPT_SESSION_CLOSED, (SessionName)));
- }
- __finally
- {
- if (FTerminalList->Count > 0)
- {
- if (Index < FTerminalList->Count)
- {
- FTerminal = FTerminalList->Terminals[Index];
- }
- else
- {
- FTerminal = FTerminalList->Terminals[0];
- }
- PrintActiveSession();
- }
- else
- {
- FTerminal = NULL;
- PrintLine(LoadStr(SCRIPT_NO_SESSION));
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::DoChangeLocalDirectory(AnsiString Directory)
- {
- if (!SetCurrentDir(Directory))
- {
- throw Exception(FMTLOAD(CHANGE_DIR_ERROR, (Directory)));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::ExitProc(TScriptProcParams * /*Parameters*/)
- {
- FContinue = false;
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::OpenProc(TScriptProcParams * Parameters)
- {
- Connect(Parameters->ParamCount > 0 ? Parameters->Param[1] : AnsiString(),
- Parameters, true);
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::CloseProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- TTerminal * Terminal;
- if (Parameters->ParamCount == 0)
- {
- Terminal = FTerminal;
- }
- else
- {
- Terminal = FindSession(Parameters->Param[1]);
- }
- DoClose(Terminal);
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::SessionProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- if (Parameters->ParamCount == 0)
- {
- for (int i = 0; i < FTerminalList->Count; i++)
- {
- PrintLine(FORMAT("%3d %s",
- (i + 1, FTerminalList->Terminals[i]->SessionData->SessionName)));
- }
- PrintActiveSession();
- }
- else
- {
- FTerminal = FindSession(Parameters->Param[1]);
- PrintActiveSession();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::LPwdProc(TScriptProcParams * /*Parameters*/)
- {
- PrintLine(GetCurrentDir());
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::LCdProc(TScriptProcParams * Parameters)
- {
- assert(Parameters->ParamCount == 1);
- DoChangeLocalDirectory(Parameters->Param[1]);
- PrintLine(GetCurrentDir());
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::LLsProc(TScriptProcParams * Parameters)
- {
- AnsiString Directory;
- AnsiString Mask;
- if (Parameters->ParamCount > 0)
- {
- Directory = Parameters->Param[1];
- Mask = ExtractFileName(Directory);
- if (TFileMasks::IsMask(Mask))
- {
- Directory = ExtractFilePath(Directory);
- }
- else
- {
- Mask = "";
- }
- }
- if (Directory.IsEmpty())
- {
- Directory = GetCurrentDir();
- }
- if (Mask.IsEmpty())
- {
- Mask = "*.*";
- }
- TSearchRec SearchRec;
- int FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
- if (FindFirst(IncludeTrailingBackslash(Directory) + Mask, FindAttrs, SearchRec) != 0)
- {
- throw Exception(FMTLOAD(LIST_DIR_ERROR, (Directory)));
- }
- try
- {
- AnsiString TimeFormat = FixedLenDateTimeFormat(ShortTimeFormat);
- AnsiString DateFormat = FixedLenDateTimeFormat(ShortDateFormat);
- int DateLen = 0;
- int TimeLen = 0;
- bool First = true;
- do
- {
- if (SearchRec.Name != ".")
- {
- TDateTime DateTime = FileDateToDateTime(SearchRec.Time);
- AnsiString TimeStr = FormatDateTime(TimeFormat, DateTime);
- AnsiString DateStr = FormatDateTime(DateFormat, DateTime);
- if (First)
- {
- if (TimeLen < TimeStr.Length())
- {
- TimeLen = TimeStr.Length();
- }
- if (DateLen < DateStr.Length())
- {
- DateLen = DateStr.Length();
- }
- First = false;
- }
- AnsiString SizeStr;
- if (FLAGSET(SearchRec.Attr, faDirectory))
- {
- SizeStr = "<DIR>";
- }
- else
- {
- SizeStr = FORMAT("%14.0n", (double(SearchRec.Size)));
- }
- PrintLine(FORMAT("%-*s %-*s %-14s %s", (
- DateLen, DateStr, TimeLen, TimeStr, SizeStr, SearchRec.Name)));
- }
- }
- while (FindNext(SearchRec) == 0);
- }
- __finally
- {
- FindClose(SearchRec);
- }
- }
- //---------------------------------------------------------------------------
|