123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442 |
- //---------------------------------------------------------------------------
- #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)
- //---------------------------------------------------------------------------
- static const wchar_t * TransferModeNames[] = { L"binary", L"ascii", L"automatic" };
- enum { Off, On };
- static const wchar_t * ToggleNames[] = { L"off", L"on" };
- //---------------------------------------------------------------------------
- __fastcall TScriptProcParams::TScriptProcParams(UnicodeString ParamsStr)
- {
- int P = FSwitchMarks.Pos(L"/");
- assert(P > 0);
- if (P > 0)
- {
- FSwitchMarks.Delete(P, 1);
- }
- FParamsStr = ParamsStr;
- UnicodeString Param;
- while (CutToken(ParamsStr, Param))
- {
- Add(Param);
- }
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- class TScriptCommands : TStringList
- {
- public:
- typedef void __fastcall (__closure *TCommandProc)(TScriptProcParams * Parameters);
- __fastcall TScriptCommands(TScript * Script);
- virtual __fastcall ~TScriptCommands();
- void __fastcall Execute(const UnicodeString & Command, const UnicodeString & Params);
- UnicodeString __fastcall ResolveCommand(const UnicodeString & Command);
- void __fastcall Register(const wchar_t * Command,
- const UnicodeString Description, const UnicodeString Help, TCommandProc Proc,
- int MinParams, int MaxParams, bool Switches);
- void __fastcall Register(const wchar_t * Command,
- int Description, int Help, TCommandProc Proc,
- int MinParams, int MaxParams, bool Switches);
- bool __fastcall Info(const UnicodeString Command,
- UnicodeString * Description, UnicodeString * Help);
- bool __fastcall Enumerate(int Index,
- UnicodeString * Command, UnicodeString * Description, UnicodeString * Help);
- static int __fastcall FindCommand(TStrings * Commands, const UnicodeString Command,
- UnicodeString * Matches = NULL);
- static int __fastcall FindCommand(const wchar_t ** Commands, size_t Count,
- const UnicodeString Command, UnicodeString * Matches = NULL);
- static void __fastcall CheckParams(TOptions * Parameters, bool Switches);
- protected:
- struct TScriptCommand
- {
- UnicodeString Description;
- UnicodeString Help;
- TCommandProc Proc;
- int MinParams;
- int MaxParams;
- bool Switches;
- };
- TScript * FScript;
- };
- //---------------------------------------------------------------------------
- __fastcall TScriptCommands::TScriptCommands(TScript * Script)
- {
- FScript = Script;
- 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 wchar_t * Command,
- const UnicodeString Description, const UnicodeString 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 wchar_t * Command,
- int Description, int Help, TCommandProc Proc,
- int MinParams, int MaxParams, bool Switches)
- {
- UnicodeString ADescription;
- if (Description > 0)
- {
- ADescription = LoadStr(Description);
- }
- UnicodeString AHelp;
- if (Help > 0)
- {
- AHelp = LoadStr(Help, 10240);
- }
- Register(Command, ADescription, AHelp, Proc, MinParams, MaxParams, Switches);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TScriptCommands::Info(const UnicodeString Command,
- UnicodeString * Description, UnicodeString * 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,
- UnicodeString * Command, UnicodeString * Description, UnicodeString * 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 UnicodeString Command, UnicodeString * 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()) &&
- AnsiSameText(Command, Commands->Strings[i].SubString(1, Command.Length())))
- {
- if (Matches != NULL)
- {
- if (!Matches->IsEmpty())
- {
- *Matches += L", ";
- }
- *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 wchar_t ** Commands, size_t Count,
- const UnicodeString Command, UnicodeString * 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)
- {
- UnicodeString Switch;
- if (!Switches && Parameters->UnusedSwitch(Switch))
- {
- throw Exception(FMTLOAD(SCRIPT_UNKNOWN_SWITCH, (Switch)));
- }
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TScriptCommands::ResolveCommand(const UnicodeString & Command)
- {
- UnicodeString Matches;
- int Index = FindCommand(this, Command, &Matches);
- if (Index >= 0)
- {
- return Strings[Index];
- }
- else
- {
- return UnicodeString();
- }
- }
- //---------------------------------------------------------------------------
- // parameters are by purpose passed by (constant) reference.
- // because if passed by value (copy), UnicodeString reference is not for some reason
- // decreased on exit by exception, leading to memory leak
- void __fastcall TScriptCommands::Execute(const UnicodeString & Command, const UnicodeString & Params)
- {
- TScriptProcParams * Parameters = new TScriptProcParams(Params);
- try
- {
- UnicodeString 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]);
- UnicodeString 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;
- FGroups = false;
- FWantsProgress = false;
- FIncludeFileMaskOptionUsed = false;
- FPendingLogLines = new TStringList();
- Init();
- }
- //---------------------------------------------------------------------------
- __fastcall TScript::~TScript()
- {
- delete FCommands;
- delete FPendingLogLines;
- }
- //---------------------------------------------------------------------------
- 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(this);
- FCommands->Register(L"help", SCRIPT_HELP_DESC, SCRIPT_HELP_HELP, &HelpProc, 0, -1, false);
- FCommands->Register(L"man", 0, SCRIPT_HELP_HELP, &HelpProc, 0, -1, false);
- // the call command does not have switches itself, but the commands may have
- FCommands->Register(L"call", SCRIPT_CALL_DESC2, SCRIPT_CALL_HELP2, &CallProc, 1, -1, true);
- FCommands->Register(L"!", 0, SCRIPT_CALL_HELP2, &CallProc, 1, -1, false);
- FCommands->Register(L"pwd", SCRIPT_PWD_DESC, SCRIPT_PWD_HELP, &PwdProc, 0, 0, false);
- FCommands->Register(L"cd", SCRIPT_CD_DESC, SCRIPT_CD_HELP, &CdProc, 0, 1, false);
- FCommands->Register(L"ls", SCRIPT_LS_DESC, SCRIPT_LS_HELP, &LsProc, 0, 1, false);
- FCommands->Register(L"dir", 0, SCRIPT_LS_HELP, &LsProc, 0, 1, false);
- FCommands->Register(L"rm", SCRIPT_RM_DESC, SCRIPT_RM_HELP, &RmProc, 1, -1, false);
- FCommands->Register(L"rmdir", SCRIPT_RMDIR_DESC, SCRIPT_RMDIR_HELP, &RmDirProc, 1, -1, false);
- FCommands->Register(L"mv", SCRIPT_MV_DESC, SCRIPT_MV_HELP, &MvProc, 2, -1, false);
- FCommands->Register(L"rename", 0, SCRIPT_MV_HELP, &MvProc, 2, -1, false);
- FCommands->Register(L"chmod", SCRIPT_CHMOD_DESC, SCRIPT_CHMOD_HELP, &ChModProc, 2, -1, false);
- FCommands->Register(L"ln", SCRIPT_LN_DESC, SCRIPT_LN_HELP, &LnProc, 2, 2, false);
- FCommands->Register(L"symlink", 0, SCRIPT_LN_HELP, &LnProc, 2, 2, false);
- FCommands->Register(L"mkdir", SCRIPT_MKDIR_DESC, SCRIPT_MKDIR_HELP, &MkDirProc, 1, 1, false);
- FCommands->Register(L"get", SCRIPT_GET_DESC, SCRIPT_GET_HELP6, &GetProc, 1, -1, true);
- FCommands->Register(L"recv", 0, SCRIPT_GET_HELP6, &GetProc, 1, -1, false);
- FCommands->Register(L"mget", 0, SCRIPT_GET_HELP6, &GetProc, 1, -1, false);
- FCommands->Register(L"put", SCRIPT_PUT_DESC, SCRIPT_PUT_HELP6, &PutProc, 1, -1, true);
- FCommands->Register(L"send", 0, SCRIPT_PUT_HELP6, &PutProc, 1, -1, false);
- FCommands->Register(L"mput", 0, SCRIPT_PUT_HELP6, &PutProc, 1, -1, false);
- FCommands->Register(L"option", SCRIPT_OPTION_DESC, SCRIPT_OPTION_HELP6, &OptionProc, -1, 2, false);
- FCommands->Register(L"ascii", 0, SCRIPT_OPTION_HELP6, &AsciiProc, 0, 0, false);
- FCommands->Register(L"binary", 0, SCRIPT_OPTION_HELP6, &BinaryProc, 0, 0, false);
- FCommands->Register(L"synchronize", SCRIPT_SYNCHRONIZE_DESC, SCRIPT_SYNCHRONIZE_HELP7, &SynchronizeProc, 1, 3, true);
- FCommands->Register(L"keepuptodate", SCRIPT_KEEPUPTODATE_DESC, SCRIPT_KEEPUPTODATE_HELP4, &KeepUpToDateProc, 0, 2, true);
- // the echo command does not have switches actually, but it must handle dashes in its arguments
- FCommands->Register(L"echo", SCRIPT_ECHO_DESC, SCRIPT_ECHO_HELP, &EchoProc, -1, -1, true);
- FCommands->Register(L"stat", SCRIPT_STAT_DESC, SCRIPT_STAT_HELP, &StatProc, 1, 1, false);
- }
- //---------------------------------------------------------------------------
- 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));
- }
- //---------------------------------------------------------------------------
- bool __fastcall TScript::IsTerminalLogging(TTerminal * ATerminal)
- {
- return (ATerminal != NULL) && ATerminal->Log->Logging;
- }
- //---------------------------------------------------------------------------
- const static UnicodeString ScriptLogFormat(L"Script: %s");
- void __fastcall TScript::Log(TLogLineType Type, AnsiString Str)
- {
- Str = FORMAT(ScriptLogFormat, (Str));
- if (IsTerminalLogging(Terminal))
- {
- Terminal->Log->Add(Type, Str);
- }
- else if (Configuration->Logging)
- {
- FPendingLogLines->AddObject(Str, reinterpret_cast<TObject *>(Type));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::LogPendingLines(TTerminal * ATerminal)
- {
- if (IsTerminalLogging(ATerminal) && (FPendingLogLines->Count > 0))
- {
- // not using Log(), as we want to log to ATerminal, not Terminal,
- // what is different here, as we are called from TManagementScript::Connect()
- ATerminal->Log->Add(llMessage, FORMAT(ScriptLogFormat, (L"Retrospectivelly logging previous script records:")));
- for (int Index = 0; Index < FPendingLogLines->Count; Index++)
- {
- ATerminal->Log->Add(
- reinterpret_cast<TLogLineType>(FPendingLogLines->Objects[Index]),
- FPendingLogLines->Strings[Index]);
- }
- FPendingLogLines->Clear();
- ATerminal->Log->AddSeparator();
- }
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TScript::GetLogCmd(const UnicodeString & FullCommand,
- const UnicodeString & /*Command*/, const UnicodeString & /*Params*/)
- {
- return FullCommand;
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::Command(UnicodeString Cmd)
- {
- try
- {
- if (!Cmd.Trim().IsEmpty() && (Cmd[1] != L';') && (Cmd[1] != L'#'))
- {
- UnicodeString FullCmd = Cmd;
- UnicodeString Command;
- if (CutToken(Cmd, Command))
- {
- UnicodeString LogCmd = GetLogCmd(FullCmd, Command, Cmd);
- Log(llInput, LogCmd);
- if (FEcho)
- {
- PrintLine(LogCmd);
- }
- TTerminal * BeforeGroupTerminal = FGroups ? Terminal : NULL;
- if (BeforeGroupTerminal != NULL)
- {
- BeforeGroupTerminal->ActionLog->BeginGroup(LogCmd);
- }
- int ASessionReopenTimeout = Configuration->SessionReopenTimeout;
- try
- {
- Configuration->SessionReopenTimeout = FSessionReopenTimeout;
- try
- {
- FCommands->Execute(Command, Cmd);
- }
- catch(Exception & E)
- {
- // seemingly duplicate (to the method-level one) catch clausule,
- // ensures the <failure/> tag is enclosed in <group/> tag
- if (!HandleExtendedException(&E))
- {
- throw;
- }
- }
- }
- __finally
- {
- Configuration->SessionReopenTimeout = ASessionReopenTimeout;
- TTerminal * AfterGroupTerminal = FGroups ? Terminal : NULL;
- if (AfterGroupTerminal != NULL)
- {
- // this happens for "open" command
- if (AfterGroupTerminal != BeforeGroupTerminal)
- {
- AfterGroupTerminal->ActionLog->BeginGroup(LogCmd);
- }
- AfterGroupTerminal->ActionLog->EndGroup();
- }
- }
- }
- }
- }
- 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++)
- {
- UnicodeString 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))
- {
- UnicodeString FileDirectory = UnixExtractFilePath(FileName);
- UnicodeString 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];
- TFileMasks::TParams Params;
- Params.Size = File->Size;
- Params.Modification = File->Modification;
- if (!File->IsThisDirectory && !File->IsParentDirectory &&
- Mask.Matches(File->FileName, false, UnicodeString(), &Params))
- {
- 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++)
- {
- UnicodeString FileName = Parameters->Param[i];
- if (FLAGSET(ListType, fltMask))
- {
- TSearchRec SearchRec;
- int FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
- if (FindFirst(FileName, FindAttrs, SearchRec) == 0)
- {
- UnicodeString Directory = ExtractFilePath(FileName);
- try
- {
- do
- {
- if ((SearchRec.Name != L".") && (SearchRec.Name != L".."))
- {
- Result->Add(Directory + SearchRec.Name);
- }
- }
- while (FindNextChecked(SearchRec) == 0);
- }
- __finally
- {
- FindClose(SearchRec);
- }
- }
- else
- {
- if (FileName.LastDelimiter(L"?*") == 0)
- {
- // no match, and it is not a mask, let it fail latter
- 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 * ATerminal)
- {
- ATerminal->Open();
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::Print(const UnicodeString Str)
- {
- if (FOnPrint != NULL)
- {
- FOnPrint(this, Str);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::PrintLine(const UnicodeString Str)
- {
- Log(llOutput, Str);
- Print(Str + L"\n");
- }
- //---------------------------------------------------------------------------
- bool __fastcall TScript::HandleExtendedException(Exception * E, TTerminal * ATerminal)
- {
- bool Result = (OnShowExtendedException != NULL);
- if (Result)
- {
- if (ATerminal == NULL)
- {
- ATerminal = FTerminal;
- }
- OnShowExtendedException(ATerminal, 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(L"delete"))
- {
- Params |= cpDelete;
- }
- if (Parameters->FindSwitch(L"resume"))
- {
- Params |= cpResume;
- }
- else if (Parameters->FindSwitch(L"append"))
- {
- Params |= cpAppend;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::CopyParamParams(TCopyParamType & CopyParam, TScriptProcParams * Parameters)
- {
- UnicodeString Value;
- if (!FWantsProgress)
- {
- // total size is not visualized, hence it makes no sense to calculate it
- CopyParam.CalculateSize = false;
- }
- if (Parameters->FindSwitch(L"nopreservetime"))
- {
- CopyParam.PreserveTime = false;
- }
- if (Parameters->FindSwitch(L"preservetime"))
- {
- CopyParam.PreserveTime = true;
- }
- if (Parameters->FindSwitch(L"nopermissions"))
- {
- CopyParam.PreserveRights = false;
- }
- if (Parameters->FindSwitch(L"permissions", Value))
- {
- CopyParam.PreserveRights = true;
- CopyParam.Rights.Octal = Value;
- }
- if (Parameters->FindSwitch(L"speed", Value))
- {
- int CPSLimit;
- if (Value.IsEmpty())
- {
- CPSLimit = 0;
- }
- else
- {
- CPSLimit = StrToInt(Value) * 1024;
- if (CPSLimit < 0)
- {
- CPSLimit = 0;
- }
- }
- CopyParam.CPSLimit = CPSLimit;
- }
- if (Parameters->FindSwitch(L"transfer", Value))
- {
- CopyParam.TransferMode = ParseTransferModeName(Value);
- }
- if (Parameters->FindSwitch(L"filemask", Value))
- {
- CopyParam.IncludeFileMask = Value;
- if (FIncludeFileMaskOptionUsed)
- {
- PrintLine(LoadStr(SCRIPT_FILEMASK_INCLUDE_EXCLUDE));
- }
- }
- if (Parameters->FindSwitch(L"resumesupport", Value))
- {
- int ToggleValue = TScriptCommands::FindCommand(ToggleNames,
- LENOF(ToggleNames), Value);
- if (ToggleValue >= 0)
- {
- switch (ToggleValue)
- {
- case Off:
- CopyParam.ResumeSupport = rsOff;
- break;
- case On:
- CopyParam.ResumeSupport = rsOn;
- break;
- default:
- FAIL;
- break;
- }
- }
- else
- {
- int ThresholdValue;
- if (!TryStrToInt(Value, ThresholdValue))
- {
- throw Exception(FMTLOAD(SCRIPT_VALUE_UNKNOWN, (L"resumesupport", Value)));
- }
- CopyParam.ResumeSupport = rsSmart;
- CopyParam.ResumeThreshold = ThresholdValue * 1024;
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::ResetTransfer()
- {
- }
- //---------------------------------------------------------------------------
- bool __fastcall TScript::EnsureCommandSessionFallback(
- TFSCapability Capability, TSessionAction & Action)
- {
- bool Result = FTerminal->IsCapable[Capability] ||
- FTerminal->CommandSessionOpened;
- if (!Result)
- {
- try
- {
- ConnectTerminal(FTerminal->CommandSession);
- Result = true;
- }
- catch(Exception & E)
- {
- Action.Rollback(&E);
- HandleExtendedException(&E, FTerminal->CommandSession);
- Result = false;
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::HelpProc(TScriptProcParams * Parameters)
- {
- UnicodeString Output;
- if (Parameters->ParamCount == 0)
- {
- UnicodeString Command;
- UnicodeString Description;
- int Index = 0;
- while (FCommands->Enumerate(Index, &Command, &Description, NULL))
- {
- if (!Description.IsEmpty())
- {
- Output += FORMAT(L"%-8s %s\n", (Command, Description));
- }
- Index++;
- }
- }
- else
- {
- for (int i = 1; i <= Parameters->ParamCount; i++)
- {
- UnicodeString 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();
- // this is used only to log failures to open secondary shell session,
- // the actual call logging is done in TTerminal::AnyCommand
- TCallSessionAction Action(
- FTerminal->ActionLog, Parameters->ParamsStr, FTerminal->CurrentDirectory);
- if (EnsureCommandSessionFallback(fcAnyCommand, Action))
- {
- Action.Cancel();
- FTerminal->AnyCommand(Parameters->ParamsStr, TerminalCaptureLog);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::EchoProc(TScriptProcParams * Parameters)
- {
- PrintLine(Parameters->ParamsStr);
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::StatProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- UnicodeString Path = Parameters->Param[1];
- FTerminal->ExceptionOnFail = true;
- TRemoteFile * File = NULL;
- try
- {
- File = FTerminal->ReadFileListing(Path);
- PrintLine(File->ListingStr);
- }
- __finally
- {
- FTerminal->ExceptionOnFail = false;
- delete File;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::TerminalCaptureLog(const UnicodeString & 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();
- UnicodeString Directory;
- TFileMasks Mask;
- if (Parameters->ParamCount > 0)
- {
- Directory = Parameters->Param[1];
- UnicodeString 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,
- (TFileListType)(fltQueryServer | 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);
- UnicodeString Target = Parameters->Param[Parameters->ParamCount];
- UnicodeString TargetDirectory = UnixExtractFilePath(Target);
- UnicodeString 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,
- (TFileListType)(fltQueryServer | fltMask));
- try
- {
- TCopyParamType CopyParam = FCopyParam;
- UnicodeString TargetDirectory;
- if (Parameters->ParamCount == 1)
- {
- TargetDirectory = GetCurrentDir();
- CopyParam.FileMask = L"";
- }
- else
- {
- UnicodeString 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;
- UnicodeString TargetDirectory;
- if (Parameters->ParamCount == 1)
- {
- TargetDirectory = FTerminal->CurrentDirectory;
- CopyParam.FileMask = L"";
- }
- else
- {
- UnicodeString 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);
- }
- }
- //---------------------------------------------------------------------------
- TTransferMode __fastcall TScript::ParseTransferModeName(UnicodeString Name)
- {
- assert((tmBinary == 0) && (tmAscii == 1) && (tmAutomatic == 2));
- int Value = TScriptCommands::FindCommand(TransferModeNames,
- LENOF(TransferModeNames), Name);
- if (Value < 0)
- {
- throw Exception(FMTLOAD(SCRIPT_VALUE_UNKNOWN, (L"transfer", Name)));
- }
- return (TTransferMode)Value;
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::OptionImpl(UnicodeString OptionName, UnicodeString ValueName)
- {
- enum { Echo, Batch, Confirm, Transfer, SynchDelete, Exclude, Include, ReconnectTime };
- static const wchar_t * Names[] = { L"echo", L"batch", L"confirm", L"transfer",
- L"synchdelete", L"exclude", L"include", L"reconnecttime" };
- assert((BatchOff == 0) && (BatchOn == 1) && (BatchAbort == 2) && (BatchContinue == 3));
- static const wchar_t * BatchModeNames[] = { L"off", L"on", L"abort", L"continue" };
- 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 wchar_t * ListFormat = L"%-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])));
- }
- // omit the option in listing
- if (Option == Transfer)
- {
- if (SetValue)
- {
- FCopyParam.TransferMode = ParseTransferModeName(ValueName);
- }
- assert(FCopyParam.TransferMode < (TTransferMode)LENOF(TransferModeNames));
- const wchar_t * 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 wchar_t * Clear = L"clear";
- // omit the option in listing
- if (Option == Include)
- {
- if (SetValue)
- {
- FCopyParam.IncludeFileMask =
- (ValueName == Clear ? UnicodeString() : ValueName);
- FIncludeFileMaskOptionUsed = (ValueName != Clear);
- }
- PrintLine(FORMAT(ListFormat, (Names[Include], FCopyParam.IncludeFileMask.Masks)));
- }
- // omit the option in listing
- if (Option == Exclude)
- {
- if (SetValue)
- {
- // will throw if ValueName already includes IncludeExcludeFileMasksDelimiter
- FCopyParam.IncludeFileMask =
- (ValueName == Clear ? UnicodeString() : UnicodeString(IncludeExcludeFileMasksDelimiter) + ValueName);
- FIncludeFileMaskOptionUsed = (ValueName != Clear);
- }
- PrintLine(FORMAT(ListFormat, (Names[Include], FCopyParam.IncludeFileMask.Masks)));
- }
- if (OPT(ReconnectTime))
- {
- if (SetValue)
- {
- int Value;
- if (AnsiSameText(ValueName, ToggleNames[Off]))
- {
- Value = 0;
- }
- else
- {
- if (!TryStrToInt(ValueName, Value))
- {
- throw Exception(FMTLOAD(SCRIPT_VALUE_UNKNOWN, (ValueName, OptionName)));
- }
- else
- {
- Value *= MSecsPerSec;
- }
- }
- FSessionReopenTimeout = Value;
- }
- if (FSessionReopenTimeout == 0)
- {
- ValueName = ToggleNames[Off];
- }
- else
- {
- ValueName = IntToStr(FSessionReopenTimeout / MSecsPerSec);
- }
- PrintLine(FORMAT(ListFormat, (Names[ReconnectTime], ValueName)));
- }
- #undef OPT
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::OptionProc(TScriptProcParams * Parameters)
- {
- UnicodeString OptionName;
- UnicodeString 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(L"transfer", L"ascii");
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::BinaryProc(TScriptProcParams * /*Parameters*/)
- {
- OptionImpl(L"transfer", L"binary");
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::SynchronizeDirectories(TScriptProcParams * Parameters,
- UnicodeString & LocalDirectory, UnicodeString & 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;
- }
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TScript::SynchronizeFileRecord(
- const UnicodeString & RootDirectory, const TSynchronizeChecklist::TItem * Item, bool Local)
- {
- const TSynchronizeChecklist::TItem::TFileInfo & FileInfo =
- Local ? Item->Local : Item->Remote;
- UnicodeString Path;
- if (Local)
- {
- Path = IncludeTrailingBackslash(FileInfo.Directory) + FileInfo.FileName;
- }
- else
- {
- Path = UnixIncludeTrailingBackslash(FileInfo.Directory) + FileInfo.FileName;
- }
- if (SameText(RootDirectory, Path.SubString(1, RootDirectory.Length())))
- {
- Path[1] = L'.';
- Path.Delete(2, RootDirectory.Length() - 2);
- }
- UnicodeString Result;
- if (Item->IsDirectory)
- {
- if (Local)
- {
- Result = IncludeTrailingBackslash(Path);
- }
- else
- {
- Result = UnixIncludeTrailingBackslash(Path);
- }
- }
- else
- {
- UnicodeString SizeStr = IntToStr(FileInfo.Size);
- UnicodeString ModificationStr =
- ::ModificationStr(FileInfo.Modification, FileInfo.ModificationFmt);
- Result = FORMAT("%s [%s, %s]", (Path, SizeStr, ModificationStr));
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::SynchronizePreview(
- UnicodeString LocalDirectory, UnicodeString RemoteDirectory,
- TSynchronizeChecklist * Checklist)
- {
- LocalDirectory = IncludeTrailingBackslash(LocalDirectory);
- RemoteDirectory = UnixIncludeTrailingBackslash(RemoteDirectory);
- for (int Index = 0; (Index < Checklist->Count); Index++)
- {
- const TSynchronizeChecklist::TItem * Item = Checklist->Item[Index];
- if (Item->Checked)
- {
- UnicodeString Message;
- UnicodeString LocalRecord = SynchronizeFileRecord(LocalDirectory, Item, true);
- UnicodeString RemoteRecord = SynchronizeFileRecord(RemoteDirectory, Item, false);
- switch (Item->Action)
- {
- case TSynchronizeChecklist::saUploadNew:
- Message =
- FMTLOAD(SCRIPT_SYNC_UPLOAD_NEW, (LocalRecord));
- break;
- case TSynchronizeChecklist::saDownloadNew:
- Message =
- FMTLOAD(SCRIPT_SYNC_DOWNLOAD_NEW, (RemoteRecord));
- break;
- case TSynchronizeChecklist::saUploadUpdate:
- Message =
- FMTLOAD(SCRIPT_SYNC_UPLOAD_UPDATE,
- (LocalRecord, RemoteRecord));
- break;
- case TSynchronizeChecklist::saDownloadUpdate:
- Message =
- FMTLOAD(SCRIPT_SYNC_DOWNLOAD_UPDATE,
- (RemoteRecord, LocalRecord));
- break;
- case TSynchronizeChecklist::saDeleteRemote:
- Message =
- FMTLOAD(SCRIPT_SYNC_DELETE_REMOTE, (RemoteRecord));
- break;
- case TSynchronizeChecklist::saDeleteLocal:
- Message =
- FMTLOAD(SCRIPT_SYNC_DELETE_LOCAL, (LocalRecord));
- break;
- default:
- FAIL;
- }
- PrintLine(Message);
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::SynchronizeProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- ResetTransfer();
- static const wchar_t * ModeNames[] = { L"remote", L"local", L"both" };
- UnicodeString 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)));
- }
- UnicodeString LocalDirectory;
- UnicodeString RemoteDirectory;
- SynchronizeDirectories(Parameters, LocalDirectory, RemoteDirectory, 2);
- TCopyParamType CopyParam = FCopyParam;
- CopyParamParams(CopyParam, Parameters);
- int SynchronizeParams = FSynchronizeParams | TTerminal::spNoConfirmation;
- UnicodeString Value;
- if (Parameters->FindSwitch(L"delete"))
- {
- SynchronizeParams |= TTerminal::spDelete;
- }
- if (Parameters->FindSwitch(L"mirror") &&
- (FSynchronizeMode != TTerminal::smBoth))
- {
- SynchronizeParams |= TTerminal::spMirror;
- }
- if (Parameters->FindSwitch(L"criteria", Value))
- {
- enum { None, Time, Size, Either, EitherBoth };
- static const wchar_t * CriteriaNames[] = { L"none", L"time", L"size", L"either", L"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 Either:
- case EitherBoth:
- SynchronizeParams &= ~TTerminal::spNotByTime;
- SynchronizeParams |= TTerminal::spBySize;
- break;
- }
- }
- bool Preview = Parameters->FindSwitch(L"preview");
- // 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
- {
- bool AnyChecked = false;
- for (int Index = 0; !AnyChecked && (Index < Checklist->Count); Index++)
- {
- AnyChecked = Checklist->Item[Index]->Checked;
- }
- if (AnyChecked)
- {
- if (Preview)
- {
- PrintLine(LoadStr(SCRIPT_SYNCHRONIZE_CHECKLIST));
- SynchronizePreview(LocalDirectory, RemoteDirectory, Checklist);
- }
- else
- {
- 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 UnicodeString LocalDirectory,
- const UnicodeString 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(L"");
- FKeepingUpToDate = false;
- }
- catch(Exception & E)
- {
- FKeepingUpToDate = false;
- HandleExtendedException(&E);
- throw;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TScript::KeepUpToDateProc(TScriptProcParams * Parameters)
- {
- if (OnSynchronizeStartStop == NULL)
- {
- Abort();
- }
- CheckSession();
- ResetTransfer();
- UnicodeString LocalDirectory;
- UnicodeString RemoteDirectory;
- SynchronizeDirectories(Parameters, LocalDirectory, RemoteDirectory, 1);
- int SynchronizeParams = FSynchronizeParams | TTerminal::spNoConfirmation |
- TTerminal::spNoRecurse | TTerminal::spUseCache | TTerminal::spDelayProgress |
- TTerminal::spSubDirs;
- if (Parameters->FindSwitch(L"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(L"exit", SCRIPT_EXIT_DESC, SCRIPT_EXIT_HELP, &ExitProc, 0, 0, false);
- FCommands->Register(L"bye", 0, SCRIPT_EXIT_HELP, &ExitProc, 0, 0, false);
- FCommands->Register(L"open", SCRIPT_OPEN_DESC, SCRIPT_OPEN_HELP5, &OpenProc, 0, -1, true);
- FCommands->Register(L"close", SCRIPT_CLOSE_DESC, SCRIPT_CLOSE_HELP, &CloseProc, 0, 1, false);
- FCommands->Register(L"session", SCRIPT_SESSION_DESC, SCRIPT_SESSION_HELP, &SessionProc, 0, 1, false);
- FCommands->Register(L"lpwd", SCRIPT_LPWD_DESC, SCRIPT_LPWD_HELP, &LPwdProc, 0, 0, false);
- FCommands->Register(L"lcd", SCRIPT_LCD_DESC, SCRIPT_LCD_HELP, &LCdProc, 1, 1, false);
- FCommands->Register(L"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 * ATerminal)
- {
- TSessionData * Data = StoredSessions->FindSame(ATerminal->SessionData);
- if (Data != NULL)
- {
- ATerminal->SessionData->RemoteDirectory = ATerminal->CurrentDirectory;
- bool Changed = false;
- if (ATerminal->SessionData->UpdateDirectories)
- {
- Data->RemoteDirectory = ATerminal->SessionData->RemoteDirectory;
- Changed = true;
- }
- if (Changed)
- {
- // only modified, implicit
- StoredSessions->Save(false, false);
- }
- }
- FTerminalList->FreeTerminal(ATerminal);
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::Input(const UnicodeString Prompt,
- UnicodeString & Str, bool AllowEmpty)
- {
- do
- {
- Str = L"";
- if (FOnInput != NULL)
- {
- FOnInput(this, Prompt, Str);
- }
- else
- {
- Abort();
- }
- }
- while (Str.Trim().IsEmpty() && !AllowEmpty);
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::PrintProgress(bool First, const UnicodeString Str)
- {
- if (FOnPrintProgress != NULL)
- {
- FOnPrintProgress(this, First, Str);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::ResetTransfer()
- {
- TScript::ResetTransfer();
- FLastProgressFile = L"";
- FLastProgressTime = 0;
- FLastProgressEventTime = 0;
- FLastProgressMessage = L"";
- }
- //---------------------------------------------------------------------------
- bool __fastcall TManagementScript::QueryCancel()
- {
- bool Result = false;
- if (OnQueryCancel != NULL)
- {
- OnQueryCancel(this, Result);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::TerminalInformation(TTerminal * ATerminal,
- const UnicodeString & Str, bool /*Status*/, int Phase)
- {
- assert(ATerminal != NULL);
- if ((Phase < 0) && (ATerminal->Status == ssOpening))
- {
- PrintLine(Str);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::TerminalPromptUser(TTerminal * ATerminal,
- TPromptKind Kind, UnicodeString Name, UnicodeString Instructions, TStrings * Prompts,
- TStrings * Results, bool & Result, void * Arg)
- {
- // When authentication using stored password fails,
- // do not ask user for another password.
- if ((!ATerminal->StoredCredentialsTried ||
- !IsAuthenticationPrompt(Kind) ||
- (Prompts->Count == 0)) && // allow instructions-only prompts
- (OnTerminalPromptUser != NULL))
- {
- OnTerminalPromptUser(ATerminal, 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 = L"";
- }
- }
- //---------------------------------------------------------------------------
- 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;
- UnicodeString ProgressFileName = ProgressData.FileName;
- if (ProgressData.Side == osLocal)
- {
- ProgressFileName = ExcludeTrailingBackslash(ProgressFileName);
- }
- else
- {
- ProgressFileName = UnixExcludeTrailingBackslash(ProgressFileName);
- }
- if (ProgressFileName != FLastProgressFile)
- {
- First = true;
- DoPrint = true;
- ShowPendingProgress();
- }
- time_t Time = time(NULL);
- if ((OnProgress != NULL) && WantsProgress &&
- (DoPrint || (FLastProgressEventTime != Time) || ProgressData.IsTransferDone()))
- {
- FLastProgressEventTime = Time;
- TScriptProgress Progress;
- Progress.Operation = ProgressData.Operation;
- Progress.Side = ProgressData.Side;
- Progress.FileName = ProgressData.FileName;
- Progress.Directory = ProgressData.Directory;
- Progress.OverallProgress = ProgressData.OverallProgress();
- Progress.FileProgress = ProgressData.TransferProgress();
- Progress.CPS = ProgressData.CPS();
- OnProgress(this, Progress);
- }
- if (!DoPrint && ((FLastProgressTime != Time) || ProgressData.IsTransferDone()))
- {
- DoPrint = true;
- }
- if (DoPrint)
- {
- static int WidthFileName = 25;
- UnicodeString FileName;
- if (FLimitedOutput)
- {
- FileName = MinimizeName(ProgressFileName, WidthFileName,
- ProgressData.Side == osRemote);
- }
- else
- {
- FileName = ProgressFileName;
- }
- UnicodeString TransferedSizeStr;
- if (ProgressData.TransferedSize < 1024)
- {
- TransferedSizeStr = FORMAT("%d B", (static_cast<int>(ProgressData.TransferedSize)));
- }
- else
- {
- TransferedSizeStr = FORMAT("%d KiB", (static_cast<int>(ProgressData.TransferedSize / 1024)));
- }
- UnicodeString ProgressMessage = FORMAT(L"%-*s | %14s | %6.1f KiB/s | %-6.6s | %3d%%",
- (WidthFileName, FileName,
- TransferedSizeStr,
- static_cast<float>(ProgressData.CPS()) / 1024,
- ProgressData.AsciiTransfer ? L"ascii" : L"binary",
- ProgressData.TransferProgress()));
- if (FLastProgressMessage != ProgressMessage)
- {
- FLastProgressTime = Time;
- PrintProgress(First, ProgressMessage);
- FLastProgressMessage = ProgressMessage;
- FLastProgressFile = ProgressFileName;
- }
- }
- }
- else
- {
- FLastProgressFile = L"";
- }
- }
- if (QueryCancel())
- {
- Cancel = csCancel;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::TerminalOperationFinished(
- TFileOperation Operation, TOperationSide /*Side*/,
- bool /*Temp*/, const UnicodeString & FileName, Boolean Success,
- TOnceDoneOperation & /*OnceDoneOperation*/)
- {
- 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 UnicodeString LocalDirectory, const UnicodeString RemoteDirectory,
- bool & Continue, bool Collect)
- {
- int SynchronizeMode = FSynchronizeMode;
- if (FKeepingUpToDate)
- {
- SynchronizeMode = TTerminal::smRemote;
- }
- UnicodeString Arrow;
- switch (SynchronizeMode)
- {
- case TTerminal::smRemote:
- Arrow = L"=>";
- break;
- case TTerminal::smLocal:
- Arrow = L"<=";
- break;
- case TTerminal::smBoth:
- Arrow = L"<=>";
- break;
- }
- UnicodeString Progress = FMTLOAD(SCRIPT_SYNCHRONIZE, (ExcludeTrailingBackslash(LocalDirectory),
- Arrow, UnixExcludeTrailingBackslash(RemoteDirectory)));
- if (Collect)
- {
- PrintProgress(false, Progress);
- }
- else
- {
- FSynchronizeIntro = Progress;
- }
- if (QueryCancel())
- {
- Continue = false;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::TerminalInitializeLog(TObject * Sender)
- {
- TTerminal * ATerminal = dynamic_cast<TTerminal *>(Sender);
- if (ALWAYS_TRUE(ATerminal != NULL))
- {
- LogPendingLines(ATerminal);
- }
- }
- //---------------------------------------------------------------------------
- TTerminal * __fastcall TManagementScript::FindSession(const UnicodeString 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 * ATerminal)
- {
- bool Result = TScript::HandleExtendedException(E, ATerminal);
- if (ATerminal == NULL)
- {
- ATerminal = FTerminal;
- }
- if ((ATerminal != NULL) && (ATerminal == FTerminal) && (dynamic_cast<EFatal*>(E) != NULL))
- {
- try
- {
- DoClose(ATerminal);
- }
- catch(...)
- {
- // ignore disconnect errors
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall TManagementScript::GetLogCmd(const UnicodeString & FullCommand,
- const UnicodeString & Command, const UnicodeString & Params)
- {
- UnicodeString Result = FullCommand;
- if (SameText(FCommands->ResolveCommand(Command), L"open"))
- {
- UnicodeString AParams = Params;
- std::auto_ptr<TScriptProcParams> Parameters(new TScriptProcParams(L""));
- UnicodeString MaskedParams;
- UnicodeString Param;
- UnicodeString RawParam;
- while ((Parameters->ParamCount == 0) && CutToken(AParams, Param, &RawParam))
- {
- Parameters->Add(Param);
- if (Parameters->ParamCount == 0)
- {
- AddToList(MaskedParams, RawParam, L" ");
- }
- }
- if (Parameters->ParamCount > 0)
- {
- UnicodeString Session = Parameters->Param[1];
- UnicodeString MaskedUrl;
- bool DefaultsOnly;
- std::auto_ptr<TSessionData> Data(
- FStoredSessions->ParseUrl(Session, Parameters.get(), DefaultsOnly, NULL, NULL, &MaskedUrl));
- if (Session != MaskedUrl)
- {
- // todo: quote, if necessary
- AddToList(MaskedParams, MaskedUrl, L" ");
- AddToList(MaskedParams, AParams, L" ");
- Result = Command + L" " + MaskedParams;
- }
- }
- }
- return TScript::GetLogCmd(Result, Command, Params);
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::Connect(const UnicodeString Session,
- TOptions * Options, bool CheckParams)
- {
- try
- {
- bool DefaultsOnly;
- if (FStoredSessions->IsFolder(Session) ||
- FStoredSessions->IsWorkspace(Session))
- {
- throw Exception(LoadStr(CANNOT_OPEN_SESSION_FOLDER));
- }
- TSessionData * Data = FStoredSessions->ParseUrl(Session, Options, DefaultsOnly);
- try
- {
- if (CheckParams)
- {
- if (Options->ParamCount > 1)
- {
- throw Exception(FMTLOAD(SCRIPT_TOO_MANY_PARAMS, (L"open")));
- }
- TScriptCommands::CheckParams(Options, false);
- }
- assert(Data != NULL);
- if (!Data->CanLogin || DefaultsOnly)
- {
- if (Data->HostName.IsEmpty())
- {
- UnicodeString Value;
- Input(LoadStr(SCRIPT_HOST_PROMPT), Value, false);
- Data->HostName = Value;
- }
- assert(Data->CanLogin);
- }
- TTerminal * ATerminal = FTerminalList->NewTerminal(Data);
- try
- {
- ATerminal->AutoReadDirectory = false;
- ATerminal->OnInformation = TerminalInformation;
- ATerminal->OnPromptUser = TerminalPromptUser;
- ATerminal->OnShowExtendedException = OnShowExtendedException;
- ATerminal->OnQueryUser = OnTerminalQueryUser;
- ATerminal->OnProgress = TerminalOperationProgress;
- ATerminal->OnFinished = TerminalOperationFinished;
- ATerminal->OnInitializeLog = TerminalInitializeLog;
- ConnectTerminal(ATerminal);
- }
- catch(Exception & E)
- {
- // make sure errors (mainly fatal ones) are associated
- // with this terminal, not the last active one
- bool Handled = HandleExtendedException(&E, ATerminal);
- FTerminalList->FreeTerminal(ATerminal);
- ATerminal = NULL;
- if (!Handled)
- {
- throw;
- }
- }
- if (ATerminal != NULL)
- {
- FTerminal = ATerminal;
- 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 * ATerminal)
- {
- int Index = FTerminalList->IndexOf(ATerminal);
- assert(Index >= 0);
- bool WasActiveTerminal = (FTerminal == ATerminal);
- try
- {
- if (ATerminal->Active)
- {
- ATerminal->Close();
- }
- UnicodeString SessionName = ATerminal->SessionData->SessionName;
- FreeTerminal(ATerminal);
- if (WasActiveTerminal)
- {
- FTerminal = NULL;
- }
- PrintLine(FMTLOAD(SCRIPT_SESSION_CLOSED, (SessionName)));
- }
- __finally
- {
- if (WasActiveTerminal)
- {
- if (FTerminalList->Count > 0)
- {
- if (Index < FTerminalList->Count)
- {
- FTerminal = FTerminalList->Terminals[Index];
- }
- else
- {
- FTerminal = FTerminalList->Terminals[0];
- }
- PrintActiveSession();
- }
- else
- {
- PrintLine(LoadStr(SCRIPT_NO_SESSION));
- }
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::DoChangeLocalDirectory(UnicodeString 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] : UnicodeString(),
- Parameters, true);
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::CloseProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- TTerminal * ATerminal;
- if (Parameters->ParamCount == 0)
- {
- ATerminal = FTerminal;
- }
- else
- {
- ATerminal = FindSession(Parameters->Param[1]);
- }
- DoClose(ATerminal);
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::SessionProc(TScriptProcParams * Parameters)
- {
- CheckSession();
- if (Parameters->ParamCount == 0)
- {
- for (int i = 0; i < FTerminalList->Count; i++)
- {
- PrintLine(FORMAT(L"%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)
- {
- UnicodeString Directory;
- UnicodeString Mask;
- if (Parameters->ParamCount > 0)
- {
- Directory = Parameters->Param[1];
- Mask = ExtractFileName(Directory);
- if (TFileMasks::IsMask(Mask))
- {
- Directory = ExtractFilePath(Directory);
- }
- else
- {
- Mask = L"";
- }
- }
- if (Directory.IsEmpty())
- {
- Directory = GetCurrentDir();
- }
- if (Mask.IsEmpty())
- {
- Mask = L"*.*";
- }
- TSearchRec SearchRec;
- int FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
- if (FindFirst(IncludeTrailingBackslash(Directory) + Mask, FindAttrs, SearchRec) != 0)
- {
- throw EOSExtException(FMTLOAD(LIST_DIR_ERROR, (Directory)));
- }
- try
- {
- UnicodeString TimeFormat = FixedLenDateTimeFormat(FormatSettings.ShortTimeFormat);
- UnicodeString DateFormat = FixedLenDateTimeFormat(FormatSettings.ShortDateFormat);
- int DateLen = 0;
- int TimeLen = 0;
- bool First = true;
- do
- {
- if (SearchRec.Name != L".")
- {
- TDateTime DateTime = SearchRec.TimeStamp;
- UnicodeString TimeStr = FormatDateTime(TimeFormat, DateTime);
- UnicodeString DateStr = FormatDateTime(DateFormat, DateTime);
- if (First)
- {
- if (TimeLen < TimeStr.Length())
- {
- TimeLen = TimeStr.Length();
- }
- if (DateLen < DateStr.Length())
- {
- DateLen = DateStr.Length();
- }
- First = false;
- }
- UnicodeString SizeStr;
- if (FLAGSET(SearchRec.Attr, faDirectory))
- {
- SizeStr = L"<DIR>";
- }
- else
- {
- SizeStr = FORMAT(L"%14.0n", (double(SearchRec.Size)));
- }
- PrintLine(FORMAT(L"%-*s %-*s %-14s %s", (
- DateLen, DateStr, TimeLen, TimeStr, SizeStr, SearchRec.Name)));
- }
- }
- while (FindNextChecked(SearchRec) == 0);
- }
- __finally
- {
- FindClose(SearchRec);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TManagementScript::ReflectSettings()
- {
- for (int i = 0; i < FTerminalList->Count; i++)
- {
- FTerminalList->Terminals[i]->ReflectSettings();
- }
- }
- //---------------------------------------------------------------------------
|