| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include <Common.h>
- #include <Exceptions.h>
- #include <Script.h>
- #include <CoreMain.h>
- #include <Terminal.h>
- #include <PuttyTools.h>
- #include <Consts.hpp>
- #include "Console.h"
- #include "WinInterface.h"
- #include "ProgParams.h"
- #include "TextsWin.h"
- #include "TextsCore.h"
- #include "CustomWinConfiguration.h"
- #include "SynchronizeController.h"
- #include "GUITools.h"
- enum { RESULT_SUCCESS = 0, RESULT_ANY_ERROR = 1 };
- //---------------------------------------------------------------------------
- #define WM_INTERUPT_IDLE (WM_WINSCP_USER + 3)
- #define BATCH_INPUT_TIMEOUT 10000
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- class TConsole
- {
- public:
- virtual __fastcall ~TConsole() {};
- virtual void __fastcall Print(AnsiString Str, bool FromBeginning = false) = 0;
- virtual bool __fastcall Input(AnsiString & Str, bool Echo, unsigned int Timer) = 0;
- virtual int __fastcall Choice(AnsiString Options, int Cancel, int Break,
- int Timeouted, unsigned int Timer) = 0;
- virtual bool __fastcall PendingAbort() = 0;
- virtual void __fastcall SetTitle(AnsiString Title) = 0;
- virtual void __fastcall WaitBeforeExit() = 0;
- };
- //---------------------------------------------------------------------------
- class TOwnConsole : public TConsole
- {
- public:
- static TOwnConsole * __fastcall Instance();
- virtual void __fastcall Print(AnsiString Str, bool FromBeginning = false);
- virtual bool __fastcall Input(AnsiString & Str, bool Echo, unsigned int Timer);
- virtual int __fastcall Choice(AnsiString Options, int Cancel, int Break,
- int Timeouted, unsigned int Timer);
- virtual bool __fastcall PendingAbort();
- virtual void __fastcall SetTitle(AnsiString Title);
- virtual void __fastcall WaitBeforeExit();
- protected:
- static TOwnConsole * FInstance;
- __fastcall TOwnConsole();
- virtual __fastcall ~TOwnConsole();
- void __fastcall BreakInput();
- static BOOL WINAPI HandlerRoutine(DWORD CtrlType);
- static int __fastcall InputTimerThreadProc(void * Parameter);
- private:
- HANDLE FInput;
- HANDLE FOutput;
- HANDLE FInputTimerEvent;
- static TCriticalSection FSection;
- bool FPendingAbort;
- };
- //---------------------------------------------------------------------------
- TOwnConsole * TOwnConsole::FInstance = NULL;
- TCriticalSection TOwnConsole::FSection;
- //---------------------------------------------------------------------------
- __fastcall TOwnConsole::TOwnConsole()
- {
- assert(FInstance == NULL);
- FInstance = this;
- AllocConsole();
- SetConsoleCtrlHandler(HandlerRoutine, true);
- FInput = GetStdHandle(STD_INPUT_HANDLE);
- FOutput = GetStdHandle(STD_OUTPUT_HANDLE);
- FInputTimerEvent = NULL;
- FPendingAbort = false;
- }
- //---------------------------------------------------------------------------
- __fastcall TOwnConsole::~TOwnConsole()
- {
- TGuard Guard(&FSection);
- // deliberatelly do not remove ConsoleCtrlHandler as it causes
- // failures while exiting
- FreeConsole();
- assert(FInstance == this);
- FInstance = NULL;
- }
- //---------------------------------------------------------------------------
- TOwnConsole * __fastcall TOwnConsole::Instance()
- {
- return new TOwnConsole();
- }
- //---------------------------------------------------------------------------
- void __fastcall TOwnConsole::BreakInput()
- {
- FlushConsoleInputBuffer(FInput);
- INPUT_RECORD InputRecord;
- memset(&InputRecord, 0, sizeof(InputRecord));
- InputRecord.EventType = KEY_EVENT;
- InputRecord.Event.KeyEvent.bKeyDown = true;
- InputRecord.Event.KeyEvent.wRepeatCount = 1;
- InputRecord.Event.KeyEvent.uChar.AsciiChar = '\r';
- unsigned long Written;
- // this assertion occasionally fails (when console is being exited)
- CHECK(WriteConsoleInput(FInput, &InputRecord, 1, &Written));
- assert(Written == 1);
- FPendingAbort = true;
- PostMessage(Application->Handle, WM_INTERUPT_IDLE, 0, 0);
- }
- //---------------------------------------------------------------------------
- BOOL WINAPI TOwnConsole::HandlerRoutine(DWORD CtrlType)
- {
- if ((CtrlType == CTRL_C_EVENT) || (CtrlType == CTRL_BREAK_EVENT))
- {
- {
- TGuard Guard(&FSection);
- // just to be real thread-safe
- if (FInstance != NULL)
- {
- FInstance->BreakInput();
- }
- }
- return true;
- }
- else
- {
- return false;
- }
- }
- //---------------------------------------------------------------------------
- int __fastcall TOwnConsole::InputTimerThreadProc(void * Parameter)
- {
- assert(FInstance != NULL);
- unsigned int Timer = reinterpret_cast<unsigned int>(Parameter);
- if (WaitForSingleObject(FInstance->FInputTimerEvent, Timer) == WAIT_TIMEOUT)
- {
- FInstance->BreakInput();
- }
- return 0;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TOwnConsole::PendingAbort()
- {
- if (FPendingAbort)
- {
- FPendingAbort = false;
- return true;
- }
- else
- {
- return FPendingAbort;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TOwnConsole::Print(AnsiString Str, bool FromBeginning)
- {
- if (FromBeginning)
- {
- CONSOLE_SCREEN_BUFFER_INFO BufferInfo;
- GetConsoleScreenBufferInfo(FOutput, &BufferInfo);
- BufferInfo.dwCursorPosition.X = 0;
- SetConsoleCursorPosition(FOutput, BufferInfo.dwCursorPosition);
- }
- unsigned long Written;
- AnsiToOem(Str);
- bool Result = WriteConsole(FOutput, Str.c_str(), Str.Length(), &Written, NULL);
- assert(Result);
- USEDPARAM(Result);
- assert(Str.Length() == static_cast<long>(Written));
- }
- //---------------------------------------------------------------------------
- bool __fastcall TOwnConsole::Input(AnsiString & Str, bool Echo, unsigned int Timer)
- {
- unsigned long PrevMode, NewMode;
- GetConsoleMode(FInput, &PrevMode);
- NewMode = PrevMode | ENABLE_PROCESSED_INPUT | ENABLE_LINE_INPUT;
- if (Echo)
- {
- NewMode |= ENABLE_ECHO_INPUT;
- }
- else
- {
- NewMode &= ~ENABLE_ECHO_INPUT;
- }
- SetConsoleMode(FInput, NewMode);
- HANDLE InputTimerThread = NULL;
- bool Result;
- try
- {
- if (Timer > 0)
- {
- unsigned int ThreadId;
- assert(FInputTimerEvent == NULL);
- FInputTimerEvent = CreateEvent(NULL, false, false, NULL);
- InputTimerThread = (HANDLE)BeginThread(NULL, 0, InputTimerThreadProc,
- reinterpret_cast<void *>(Timer), 0, ThreadId);
- }
- unsigned long Read;
- Str.SetLength(10240);
- Result = ReadConsole(FInput, Str.c_str(), Str.Length(), &Read, NULL);
- assert(Result);
- Str.SetLength(Read);
- OemToAnsi(Str);
- if (FPendingAbort || !Echo)
- {
- Print("\n");
- }
- if (FPendingAbort || (Read == 0))
- {
- Result = false;
- FPendingAbort = false;
- }
- }
- __finally
- {
- if (InputTimerThread != NULL)
- {
- SetEvent(FInputTimerEvent);
- WaitForSingleObject(InputTimerThread, 100);
- CloseHandle(FInputTimerEvent);
- FInputTimerEvent = NULL;
- CloseHandle(InputTimerThread);
- }
- SetConsoleMode(FInput, PrevMode);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- int __fastcall TOwnConsole::Choice(AnsiString Options, int Cancel, int Break,
- int Timeouted, unsigned int Timer)
- {
- AnsiToOem(Options);
- unsigned int ATimer = Timer;
- int Result = 0;
- unsigned long PrevMode, NewMode;
- GetConsoleMode(FInput, &PrevMode);
- NewMode = (PrevMode | ENABLE_PROCESSED_INPUT) & ~(ENABLE_LINE_INPUT | ENABLE_ECHO_INPUT);
- SetConsoleMode(FInput, NewMode);
- try
- {
- do
- {
- unsigned long Read;
- INPUT_RECORD Record;
- if ((PeekConsoleInput(FInput, &Record, 1, &Read) != 0) &&
- (Read == 1))
- {
- if ((ReadConsoleInput(FInput, &Record, 1, &Read) != 0) &&
- (Read == 1))
- {
- if (PendingAbort())
- {
- Result = Break;
- }
- else if ((Record.EventType == KEY_EVENT) &&
- Record.Event.KeyEvent.bKeyDown)
- {
- char C = AnsiUpperCase(Record.Event.KeyEvent.uChar.AsciiChar)[1];
- if (C == 27)
- {
- Result = Cancel;
- }
- else if ((Options.Pos(C) > 0) &&
- FLAGCLEAR(Record.Event.KeyEvent.dwControlKeyState,
- LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED | LEFT_ALT_PRESSED |
- RIGHT_CTRL_PRESSED))
- {
- Result = Options.Pos(C);
- }
- }
- }
- }
- if (Result == 0)
- {
- unsigned int TimerSlice = 50;
- Sleep(TimerSlice);
- if (Timer > 0)
- {
- if (ATimer > TimerSlice)
- {
- ATimer -= TimerSlice;
- }
- else
- {
- Result = Timeouted;
- }
- }
- }
- }
- while (Result == 0);
- }
- __finally
- {
- SetConsoleMode(FInput, PrevMode);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TOwnConsole::SetTitle(AnsiString Title)
- {
- AnsiToOem(Title);
- SetConsoleTitle(Title.c_str());
- }
- //---------------------------------------------------------------------------
- void __fastcall TOwnConsole::WaitBeforeExit()
- {
- unsigned long Read;
- INPUT_RECORD Record;
- while (ReadConsoleInput(FInput, &Record, 1, &Read))
- {
- if ((Read == 1) && (Record.EventType == KEY_EVENT) &&
- (Record.Event.KeyEvent.uChar.AsciiChar != 0) &&
- Record.Event.KeyEvent.bKeyDown)
- {
- break;
- }
- }
- }
- //---------------------------------------------------------------------------
- class TExternalConsole : public TConsole
- {
- public:
- __fastcall TExternalConsole(const AnsiString Instance);
- virtual __fastcall ~TExternalConsole();
- virtual void __fastcall Print(AnsiString Str, bool FromBeginning = false);
- virtual bool __fastcall Input(AnsiString & Str, bool Echo, unsigned int Timer);
- virtual int __fastcall Choice(AnsiString Options, int Cancel, int Break,
- int Timeouted, unsigned int Timer);
- virtual bool __fastcall PendingAbort();
- virtual void __fastcall SetTitle(AnsiString Title);
- virtual void __fastcall WaitBeforeExit();
- private:
- bool FPendingAbort;
- HANDLE FRequestEvent;
- HANDLE FResponseEvent;
- HANDLE FCancelEvent;
- HANDLE FFileMapping;
- static const int PrintTimeout = 5000;
- inline TConsoleCommStruct * __fastcall GetCommStruct();
- inline void __fastcall FreeCommStruct(TConsoleCommStruct * CommStruct);
- inline void __fastcall SendEvent(int Timeout);
- };
- //---------------------------------------------------------------------------
- __fastcall TExternalConsole::TExternalConsole(const AnsiString Instance)
- {
- FRequestEvent = OpenEvent(EVENT_ALL_ACCESS, false,
- FORMAT("%s%s", (CONSOLE_EVENT_REQUEST, (Instance))).c_str());
- FResponseEvent = OpenEvent(EVENT_ALL_ACCESS, false,
- FORMAT("%s%s", (CONSOLE_EVENT_RESPONSE, (Instance))).c_str());
- FCancelEvent = OpenEvent(EVENT_ALL_ACCESS, false,
- FORMAT("%s%s", (CONSOLE_EVENT_CANCEL, (Instance))).c_str());
- FFileMapping = OpenFileMapping(FILE_MAP_ALL_ACCESS, false,
- FORMAT("%s%s", (CONSOLE_MAPPING, (Instance))).c_str());
- if ((FRequestEvent == NULL) || (FResponseEvent == NULL) || (FFileMapping == NULL))
- {
- throw Exception(LoadStr(EXTERNAL_CONSOLE_INIT_ERROR));
- }
- TConsoleCommStruct * CommStruct = GetCommStruct();
- try
- {
- if (CommStruct->Version < TConsoleCommStruct::MinVersion)
- {
- throw Exception(FMTLOAD(EXTERNAL_CONSOLE_INCOMPATIBLE, (CommStruct->Version)));
- }
- else if (CommStruct->Version == TConsoleCommStruct::Version1)
- {
- // version upgrade from 1 to the latest version indicates to the
- // external console that the application supports newer versions than 0.
- CommStruct->Version = TConsoleCommStruct::CurrentVersion;
- }
- else if (CommStruct->Version > TConsoleCommStruct::CurrentVersion)
- {
- CommStruct->Version = TConsoleCommStruct::CurrentVersion;
- }
- }
- __finally
- {
- FreeCommStruct(CommStruct);
- }
- // to break application event loop regularly during "watching for changes"
- // to allow user to abort it
- SetTimer(Application->Handle, 1, 500, NULL);
- }
- //---------------------------------------------------------------------------
- __fastcall TExternalConsole::~TExternalConsole()
- {
- CloseHandle(FRequestEvent);
- CloseHandle(FResponseEvent);
- CloseHandle(FCancelEvent);
- CloseHandle(FFileMapping);
- KillTimer(Application->Handle, 1);
- }
- //---------------------------------------------------------------------------
- TConsoleCommStruct * __fastcall TExternalConsole::GetCommStruct()
- {
- TConsoleCommStruct * Result;
- Result = static_cast<TConsoleCommStruct*>(MapViewOfFile(FFileMapping,
- FILE_MAP_ALL_ACCESS, 0, 0, 0));
- if (Result == NULL)
- {
- throw Exception(LoadStr(CONSOLE_COMM_ERROR));
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TExternalConsole::FreeCommStruct(TConsoleCommStruct * CommStruct)
- {
- UnmapViewOfFile(CommStruct);
- }
- //---------------------------------------------------------------------------
- void __fastcall TExternalConsole::SendEvent(int Timeout)
- {
- SetEvent(FRequestEvent);
- if (WaitForSingleObject(FResponseEvent, Timeout) != WAIT_OBJECT_0)
- {
- throw Exception(LoadStr(CONSOLE_SEND_TIMEOUT));
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TExternalConsole::Print(AnsiString Str, bool FromBeginning)
- {
- TConsoleCommStruct * CommStruct = GetCommStruct();
- try
- {
- if (Str.Length() >= sizeof(CommStruct->PrintEvent.Message))
- {
- throw Exception(FMTLOAD(CONSOLE_PRINT_TOO_LONG, (Str.Length())));
- }
- CommStruct->Event = TConsoleCommStruct::PRINT;
- CharToOem(Str.c_str(), CommStruct->PrintEvent.Message);
- CommStruct->PrintEvent.FromBeginning = FromBeginning;
- }
- __finally
- {
- FreeCommStruct(CommStruct);
- }
- SendEvent(PrintTimeout);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TExternalConsole::Input(AnsiString & Str, bool Echo, unsigned int Timer)
- {
- TConsoleCommStruct * CommStruct = GetCommStruct();
- try
- {
- CommStruct->Event = TConsoleCommStruct::INPUT;
- CommStruct->InputEvent.Echo = Echo;
- CommStruct->InputEvent.Result = false;
- CommStruct->InputEvent.Str[0] = '\0';
- if (CommStruct->Version >= TConsoleCommStruct::Version2)
- {
- CommStruct->InputEvent.Timer = Timer;
- }
- }
- __finally
- {
- FreeCommStruct(CommStruct);
- }
- SendEvent(INFINITE);
- bool Result;
- CommStruct = GetCommStruct();
- try
- {
- Result = CommStruct->InputEvent.Result;
- Str.SetLength(strlen(CommStruct->InputEvent.Str));
- OemToChar(CommStruct->InputEvent.Str, Str.c_str());
- }
- __finally
- {
- FreeCommStruct(CommStruct);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- int __fastcall TExternalConsole::Choice(AnsiString Options, int Cancel, int Break,
- int Timeouted, unsigned int Timer)
- {
- TConsoleCommStruct * CommStruct = GetCommStruct();
- try
- {
- CommStruct->Event = TConsoleCommStruct::CHOICE;
- assert(Options.Length() < sizeof(CommStruct->ChoiceEvent.Options));
- CharToOem(Options.c_str(), CommStruct->ChoiceEvent.Options);
- CommStruct->ChoiceEvent.Cancel = Cancel;
- CommStruct->ChoiceEvent.Break = Break;
- CommStruct->ChoiceEvent.Result = Break;
- if (CommStruct->Version >= TConsoleCommStruct::Version2)
- {
- CommStruct->ChoiceEvent.Timeouted = Timeouted;
- CommStruct->ChoiceEvent.Timer = Timer;
- }
- }
- __finally
- {
- FreeCommStruct(CommStruct);
- }
- SendEvent(INFINITE);
- int Result;
- CommStruct = GetCommStruct();
- try
- {
- Result = CommStruct->ChoiceEvent.Result;
- }
- __finally
- {
- FreeCommStruct(CommStruct);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TExternalConsole::PendingAbort()
- {
- return (WaitForSingleObject(FCancelEvent, 0) == WAIT_OBJECT_0);
- }
- //---------------------------------------------------------------------------
- void __fastcall TExternalConsole::SetTitle(AnsiString Title)
- {
- TConsoleCommStruct * CommStruct = GetCommStruct();
- try
- {
- if (Title.Length() >= sizeof(CommStruct->TitleEvent.Title))
- {
- throw Exception(FMTLOAD(CONSOLE_PRINT_TOO_LONG, (Title.Length())));
- }
- CommStruct->Event = TConsoleCommStruct::TITLE;
- CharToOem(Title.c_str(), CommStruct->TitleEvent.Title);
- }
- __finally
- {
- FreeCommStruct(CommStruct);
- }
- SendEvent(PrintTimeout);
- }
- //---------------------------------------------------------------------------
- void __fastcall TExternalConsole::WaitBeforeExit()
- {
- // noop
- }
- //---------------------------------------------------------------------------
- class TNullConsole : public TConsole
- {
- public:
- __fastcall TNullConsole();
- virtual void __fastcall Print(AnsiString Str, bool FromBeginning = false);
- virtual bool __fastcall Input(AnsiString & Str, bool Echo, unsigned int Timer);
- virtual int __fastcall Choice(AnsiString Options, int Cancel, int Break,
- int Timeouted, unsigned int Timer);
- virtual bool __fastcall PendingAbort();
- virtual void __fastcall SetTitle(AnsiString Title);
- virtual void __fastcall WaitBeforeExit();
- };
- //---------------------------------------------------------------------------
- __fastcall TNullConsole::TNullConsole()
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TNullConsole::Print(AnsiString /*Str*/, bool /*FromBeginning*/)
- {
- // noop
- }
- //---------------------------------------------------------------------------
- bool __fastcall TNullConsole::Input(AnsiString & /*Str*/, bool /*Echo*/,
- unsigned int /*Timer*/)
- {
- return false;
- }
- //---------------------------------------------------------------------------
- int __fastcall TNullConsole::Choice(AnsiString /*Options*/, int /*Cancel*/,
- int Break, int /*Timeouted*/, unsigned int /*Timer*/)
- {
- return Break;
- }
- //---------------------------------------------------------------------------
- bool __fastcall TNullConsole::PendingAbort()
- {
- return false;
- }
- //---------------------------------------------------------------------------
- void __fastcall TNullConsole::SetTitle(AnsiString /*Title*/)
- {
- // noop
- }
- //---------------------------------------------------------------------------
- void __fastcall TNullConsole::WaitBeforeExit()
- {
- assert(false);
- // noop
- }
- //---------------------------------------------------------------------------
- class TConsoleRunner
- {
- public:
- TConsoleRunner(TConsole * Console);
- int __fastcall Run(const AnsiString Session, TStrings * ScriptCommands);
- void __fastcall ShowException(Exception * E);
- protected:
- bool __fastcall Input(AnsiString & Str, bool Echo, unsigned int Timer);
- inline void __fastcall Print(const AnsiString & Str, bool FromBeginning = false);
- inline void __fastcall PrintLine(const AnsiString & Str);
- inline void __fastcall PrintMessage(const AnsiString & Str);
- void __fastcall UpdateTitle();
- inline void __fastcall NotifyAbort();
- inline bool __fastcall Aborted(bool AllowCompleteAbort = true);
- private:
- TManagementScript * FScript;
- TConsole * FConsole;
- TSynchronizeController FSynchronizeController;
- int FLastProgressLen;
- bool FSynchronizeAborted;
- bool FCommandError;
- bool FBatchScript;
- bool FAborted;
- void __fastcall ScriptPrint(TScript * Script, const AnsiString Str);
- void __fastcall ScriptPrintProgress(TScript * Script, bool First, const AnsiString Str);
- void __fastcall ScriptInput(TScript * Script, const AnsiString Prompt, AnsiString & Str);
- void __fastcall ScriptTerminalPromptUser(TTerminal * Terminal,
- AnsiString Prompt, TPromptKind Kind, AnsiString & Response, bool & Result, void * Arg);
- void __fastcall ScriptShowExtendedException(TTerminal * Terminal,
- Exception * E, void * Arg);
- void __fastcall ScriptTerminalQueryUser(TObject * Sender, const AnsiString Query,
- TStrings * MoreMessages, int Answers, const TQueryParams * Params, int & Answer,
- TQueryType QueryType, void * Arg);
- void __fastcall ScriptQueryCancel(TScript * Script, bool & Cancel);
- void __fastcall SynchronizeControllerAbort(TObject * Sender, bool Close);
- void __fastcall SynchronizeControllerLog(TSynchronizeController * Controller,
- TSynchronizeLogEntry Entry, const AnsiString Message);
- void __fastcall ScriptSynchronizeStartStop(TScript * Script,
- const AnsiString LocalDirectory, const AnsiString RemoteDirectory);
- void __fastcall SynchronizeControllerSynchronize(TSynchronizeController * Sender,
- const AnsiString LocalDirectory, const AnsiString RemoteDirectory,
- const TCopyParamType & CopyParam, const TSynchronizeParamType & Params,
- TSynchronizeChecklist ** Checklist, TSynchronizeOptions * Options, bool Full);
- void __fastcall SynchronizeControllerSynchronizeInvalid(TSynchronizeController * Sender,
- const AnsiString Directory, const AnsiString ErrorStr);
- void __fastcall SynchronizeControllerTooManyDirectories(TSynchronizeController * Sender,
- int & MaxDirectories);
- unsigned int InputTimeout();
- };
- //---------------------------------------------------------------------------
- TConsoleRunner::TConsoleRunner(TConsole * Console) :
- FSynchronizeController(&SynchronizeControllerSynchronize,
- &SynchronizeControllerSynchronizeInvalid,
- &SynchronizeControllerTooManyDirectories)
- {
- FConsole = Console;
- FLastProgressLen = 0;
- FScript = NULL;
- FAborted = false;
- FBatchScript = false;
- }
- //---------------------------------------------------------------------------
- unsigned int TConsoleRunner::InputTimeout()
- {
- return (FScript->Batch != TScript::BatchOff ? BATCH_INPUT_TIMEOUT : 0);
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::ScriptInput(TScript * /*Script*/,
- const AnsiString Prompt, AnsiString & Str)
- {
- Print(Prompt);
- if (!Input(Str, true, InputTimeout()))
- {
- Abort();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::Print(const AnsiString & Str, bool FromBeginning)
- {
- if (FLastProgressLen > 0)
- {
- FConsole->Print("\n" + Str, FromBeginning);
- FLastProgressLen = 0;
- }
- else
- {
- FConsole->Print(Str, FromBeginning);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::PrintLine(const AnsiString & Str)
- {
- Print(Str + "\n");
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::PrintMessage(const AnsiString & Str)
- {
- PrintLine(
- StringReplace(StringReplace(Str.TrimRight(), "\n\n", "\n", TReplaceFlags() << rfReplaceAll),
- "\n \n", "\n", TReplaceFlags() << rfReplaceAll));
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::NotifyAbort()
- {
- if (FBatchScript)
- {
- FAborted = true;
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TConsoleRunner::Aborted(bool AllowCompleteAbort)
- {
- bool Result;
- if (FAborted)
- {
- Result = true;
- }
- else
- {
- Result = FConsole->PendingAbort();
- if (Result)
- {
- PrintLine(LoadStr(USER_TERMINATED));
- if (AllowCompleteAbort)
- {
- NotifyAbort();
- }
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::ScriptPrint(TScript * /*Script*/,
- const AnsiString Str)
- {
- Print(Str);
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::ScriptPrintProgress(TScript * /*Script*/,
- bool First, const AnsiString Str)
- {
- AnsiString S = Str;
- if (First && (FLastProgressLen > 0))
- {
- S = "\n" + S;
- }
- else if (S.Length() < FLastProgressLen)
- {
- S += AnsiString::StringOfChar(' ', FLastProgressLen - S.Length());
- }
- FConsole->Print(S, true);
- FLastProgressLen = Str.Length();
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::ScriptTerminalPromptUser(TTerminal * /*Terminal*/,
- AnsiString Prompt, TPromptKind Kind, AnsiString & Response, bool & Result,
- void * /*Arg*/)
- {
- AnsiString Caption = CutToChar(Prompt, '|', true);
- if (Prompt.IsEmpty())
- {
- Prompt = Caption;
- }
- if (!Prompt.IsEmpty() && (Prompt[Prompt.Length()] != ' '))
- {
- Prompt += ' ';
- }
- Print(Prompt);
- Result = Input(Response, (Kind == pkPrompt), InputTimeout());
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::ScriptShowExtendedException(
- TTerminal * /*Terminal*/, Exception * E, void * /*Arg*/)
- {
- ShowException(E);
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::ScriptTerminalQueryUser(TObject * /*Sender*/,
- const AnsiString Query, TStrings * MoreMessages, int Answers,
- const TQueryParams * Params, int & Answer, TQueryType /*QueryType*/,
- void * /*Arg*/)
- {
- AnsiString AQuery = Query;
- unsigned int Timer = 0;
- unsigned int Timeout = 0;
- int TimeoutA = 0;
- if (Params != NULL)
- {
- if (Params->Timeout > 0)
- {
- assert(Params->Timer == 0);
- Timeout = Params->Timeout;
- TimeoutA = Params->TimeoutAnswer;
- }
- if (Params->Timer > 0)
- {
- assert(Params->Timeout == 0);
- Timer = Params->Timer;
- if (Params->TimerAnswers > 0)
- {
- Answers = Params->TimerAnswers;
- }
- if (!Params->TimerMessage.IsEmpty())
- {
- AQuery = Params->TimerMessage;
- }
- }
- if (FLAGSET(Params->Params, qpFatalAbort))
- {
- AQuery = FMTLOAD(WARN_FATAL_ERROR, (AQuery));
- }
- }
- int AAnswers = Answers;
- PrintMessage(AQuery);
- if ((MoreMessages != NULL) && (MoreMessages->Count > 0))
- {
- PrintMessage(MoreMessages->Text);
- }
- static const int MaxButtonCount = 15;
- int Buttons[MaxButtonCount];
- AnsiString Captions[MaxButtonCount];
- int ButtonCount = 0;
- #define ADD_BUTTON(TYPE, CAPTION) \
- if (FLAGSET(AAnswers, qa ## TYPE)) \
- { \
- assert(ButtonCount < MaxButtonCount); \
- Captions[ButtonCount] = CAPTION; \
- Buttons[ButtonCount] = qa ## TYPE; \
- ButtonCount++; \
- AAnswers -= qa ## TYPE; \
- }
- #define ADD_BUTTON_RES(TYPE) ADD_BUTTON(TYPE, LoadResourceString(&_SMsgDlg ## TYPE));
- ADD_BUTTON_RES(Yes);
- ADD_BUTTON_RES(No);
- ADD_BUTTON_RES(OK);
- ADD_BUTTON_RES(Cancel);
- ADD_BUTTON_RES(Abort);
- ADD_BUTTON_RES(Retry);
- ADD_BUTTON_RES(Ignore);
- // to keep the same order as for GUI message box
- ADD_BUTTON(Skip, LoadStr(SKIP_BUTTON));
- ADD_BUTTON_RES(All);
- ADD_BUTTON_RES(NoToAll);
- ADD_BUTTON_RES(YesToAll);
- ADD_BUTTON_RES(Help);
- #undef ADD_BUTTON_RES
- #undef ADD_BUTTON
- USEDPARAM(AAnswers);
- assert(AAnswers == 0);
- assert(ButtonCount > 0);
- if ((Params != NULL) && (Params->Aliases != NULL))
- {
- for (int bi = 0; bi < ButtonCount; bi++)
- {
- for (unsigned int ai = 0; ai < Params->AliasesCount; ai++)
- {
- if (static_cast<int>(Params->Aliases[ai].Button) == Buttons[bi])
- {
- Captions[bi] = Params->Aliases[ai].Alias;
- break;
- }
- }
- }
- }
- AnsiString Accels;
- for (int Index = 0; Index < ButtonCount; Index++)
- {
- AnsiString & Caption = Captions[Index];
- int P = Caption.Pos('&');
- if ((P > 0) && (P < Caption.Length()))
- {
- char Accel = AnsiUpperCase(Caption)[P + 1];
- if (Accels.Pos(Accel) > 0)
- {
- Caption.Delete(P, 1);
- Accels += ' ';
- }
- else
- {
- Accels += Accel;
- }
- }
- else
- {
- Accels += ' ';
- }
- }
- assert(Accels.Length() == ButtonCount);
- int NumberAccel = 0;
- int CancelA = CancelAnswer(Answers);
- int CancelIndex;
- int AbortA = AbortAnswer(Answers);
- int AbortIndex;
- int ContinueA = ContinueAnswer(Answers);
- int ContinueIndex;
- int TimeoutIndex = 0;
- for (int Index = 0; Index < ButtonCount; Index++)
- {
- AnsiString & Caption = Captions[Index];
- if (Accels[Index + 1] == ' ')
- {
- for (int Index2 = 1; Index2 <= Caption.Length(); Index2++)
- {
- char C = AnsiUpperCase(Caption)[Index2];
- if ((C >= 'A') && (C <= 'Z') && (Accels.Pos(C) == 0))
- {
- Caption.Insert("&", Index2);
- Accels[Index + 1] = C;
- break;
- }
- }
- }
- if (Accels[Index + 1] == ' ')
- {
- for (int Index2 = 1; Index2 <= Caption.Length(); Index2++)
- {
- char C = AnsiUpperCase(Caption)[Index2];
- if ((C != ' ') && (Accels.Pos(C) == 0))
- {
- Caption.Insert("&", Index2);
- Accels[Index + 1] = C;
- break;
- }
- }
- }
- if (Accels[Index + 1] == ' ')
- {
- NumberAccel++;
- assert(NumberAccel <= 9);
- Caption = FORMAT("&%d%s", (NumberAccel, Caption));
- Accels[Index + 1] = Caption[2];
- }
- if (Buttons[Index] == CancelA)
- {
- CancelIndex = Index + 1;
- }
- if (Buttons[Index] == AbortA)
- {
- AbortIndex = Index + 1;
- }
- if (Buttons[Index] == ContinueA)
- {
- ContinueIndex = Index + 1;
- }
- if (Buttons[Index] == ContinueA)
- {
- ContinueIndex = Index + 1;
- }
- if (Buttons[Index] == TimeoutA)
- {
- TimeoutIndex = Index + 1;
- }
- }
- assert(Accels.Pos(' ') == 0);
- bool Timeouting = (Timeout > 0);
- do
- {
- Answer = 0;
- int AnswerIndex;
- bool Retry;
- do
- {
- Retry = false;
- AnsiString Output;
- for (int i = 0; i < ButtonCount; i++)
- {
- if (i > 0)
- {
- Output += ", ";
- }
- AnsiString Caption = Captions[i];
- int P = Caption.Pos('&');
- assert(P >= 0);
- Caption[P] = '(';
- Caption.Insert(")", P + 2);
- if (i + 1 == TimeoutIndex)
- {
- assert(Timeouting);
- Caption = FMTLOAD(TIMEOUT_BUTTON, (Caption, int(Timeout / 1000)));
- }
- Output += Caption;
- }
- Output += ": ";
- // note that length of string may decrease over time due to number of
- // seconds length, but supposing it decreases by one character at time
- // at most, we do not mind as the prompt is terminated with space
- Print(Output, true);
- if (!Timeouting && (FScript->Batch == TScript::BatchContinue))
- {
- AnswerIndex = ContinueIndex;
- }
- else if (!Timeouting && (FScript->Batch != TScript::BatchOff))
- {
- AnswerIndex = AbortIndex;
- }
- else if (Timeouting && (Timeout < 1000))
- {
- AnswerIndex = TimeoutIndex;
- }
- else
- {
- AnswerIndex = FConsole->Choice(Accels, CancelIndex, -1, -2,
- (Timeouting ? 1000 : Timer));
- if (AnswerIndex == -1)
- {
- NotifyAbort();
- AnswerIndex = AbortIndex;
- }
- else if (AnswerIndex == -2)
- {
- if (Timeouting)
- {
- assert(Timeout >= 1000);
- Timeout -= 1000;
- Retry = true;
- }
- else
- {
- assert((Params != NULL) && (Params->TimerEvent != NULL));
- if ((Params != NULL) && (Params->TimerEvent != NULL))
- {
- unsigned int AAnswer = 0;
- Params->TimerEvent(AAnswer);
- if (AAnswer != 0)
- {
- Answer = AAnswer;
- }
- else
- {
- Retry = true;
- }
- }
- }
- }
- }
- }
- while (Retry);
- if (Answer == 0)
- {
- assert((AnswerIndex >= 1) && (AnswerIndex <= Accels.Length()));
- AnsiString AnswerCaption = Captions[AnswerIndex - 1];
- int P = AnswerCaption.Pos("&");
- assert(P >= 0);
- AnswerCaption.Delete(P, 1);
- PrintLine(AnswerCaption);
- Answer = Buttons[AnswerIndex - 1];
- }
- else
- {
- PrintLine("");
- }
- }
- while (Answer == 0);
- if (Answer == qaAbort)
- {
- FCommandError = true;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::ScriptQueryCancel(TScript * /*Script*/, bool & Cancel)
- {
- if (Aborted())
- {
- Cancel = true;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::ScriptSynchronizeStartStop(TScript * /*Script*/,
- const AnsiString LocalDirectory, const AnsiString RemoteDirectory)
- {
- TSynchronizeParamType Params;
- Params.LocalDirectory = LocalDirectory;
- Params.RemoteDirectory = RemoteDirectory;
- Params.Params = -1; // never used
- Params.Options = soRecurse;
- FSynchronizeController.StartStop(Application, true, Params,
- FScript->CopyParam, NULL, SynchronizeControllerAbort, NULL,
- SynchronizeControllerLog);
- try
- {
- FSynchronizeAborted = false;
- while (!FSynchronizeAborted && !Aborted(false))
- {
- Application->HandleMessage();
- }
- }
- __finally
- {
- FSynchronizeController.StartStop(Application, false, Params,
- FScript->CopyParam, NULL, SynchronizeControllerAbort, NULL,
- SynchronizeControllerLog);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::SynchronizeControllerLog(
- TSynchronizeController * /*Controller*/, TSynchronizeLogEntry /*Entry*/,
- const AnsiString Message)
- {
- PrintLine(Message);
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::SynchronizeControllerAbort(TObject * /*Sender*/,
- bool /*Close*/)
- {
- FSynchronizeAborted = true;
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::SynchronizeControllerSynchronize(
- TSynchronizeController * /*Sender*/, const AnsiString LocalDirectory,
- const AnsiString RemoteDirectory, const TCopyParamType & CopyParam,
- const TSynchronizeParamType & /*Params*/, TSynchronizeChecklist ** Checklist,
- TSynchronizeOptions * /*Options*/, bool Full)
- {
- if (!Full)
- {
- FScript->Synchronize(LocalDirectory, RemoteDirectory, CopyParam, Checklist);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::SynchronizeControllerSynchronizeInvalid(
- TSynchronizeController * /*Sender*/, const AnsiString Directory, const AnsiString ErrorStr)
- {
- if (!Directory.IsEmpty())
- {
- PrintLine(FMTLOAD(WATCH_ERROR_DIRECTORY, (Directory)));
- }
- else
- {
- PrintLine(LoadStr(WATCH_ERROR_GENERAL));
- }
- if (!ErrorStr.IsEmpty())
- {
- PrintLine(ErrorStr);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::SynchronizeControllerTooManyDirectories(
- TSynchronizeController * /*Sender*/, int & MaxDirectories)
- {
- if (Aborted())
- {
- Abort();
- }
- if (MaxDirectories < GUIConfiguration->MaxWatchDirectories)
- {
- MaxDirectories = GUIConfiguration->MaxWatchDirectories;
- }
- else
- {
- MaxDirectories *= 2;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::ShowException(Exception * E)
- {
- if (!E->Message.IsEmpty() &&
- (dynamic_cast<EAbort *>(E) == NULL))
- {
- FCommandError = true;
- PrintMessage(TranslateExceptionMessage(E));
- ExtException * EE = dynamic_cast<ExtException *>(E);
- if ((EE != NULL) && (EE->MoreMessages != NULL))
- {
- PrintMessage(EE->MoreMessages->Text);
- }
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TConsoleRunner::Input(AnsiString & Str, bool Echo, unsigned int Timeout)
- {
- bool Result = FConsole->Input(Str, Echo, Timeout);
- if (Result)
- {
- while (!Str.IsEmpty() &&
- ((Str[Str.Length()] == '\n') || (Str[Str.Length()] == '\r')))
- {
- Str.SetLength(Str.Length() - 1);
- }
- }
- else
- {
- NotifyAbort();
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- int __fastcall TConsoleRunner::Run(const AnsiString Session, TStrings * ScriptCommands)
- {
- bool AnyError = false;
- try
- {
- FScript = new TManagementScript(StoredSessions);
- try
- {
- FScript->CopyParam = GUIConfiguration->DefaultCopyParam;
- FScript->SynchronizeParams = GUIConfiguration->SynchronizeParams;
- FScript->OnPrint = ScriptPrint;
- FScript->OnPrintProgress = ScriptPrintProgress;
- FScript->OnInput = ScriptInput;
- FScript->OnTerminalPromptUser = ScriptTerminalPromptUser;
- FScript->OnShowExtendedException = ScriptShowExtendedException;
- FScript->OnTerminalQueryUser = ScriptTerminalQueryUser;
- FScript->OnQueryCancel = ScriptQueryCancel;
- FScript->OnSynchronizeStartStop = ScriptSynchronizeStartStop;
- UpdateTitle();
- // everything until the first manually entered command is "batch"
- // (including opening session from command line and script file)
- FBatchScript = true;
- if (!Session.IsEmpty())
- {
- FScript->Connect(Session);
- }
- int ScriptPos = 0;
- bool Result;
- do
- {
- UpdateTitle();
- AnsiString Command;
- if ((ScriptCommands != NULL) && (ScriptPos < ScriptCommands->Count))
- {
- Result = true;
- Command = ScriptCommands->Strings[ScriptPos];
- ScriptPos++;
- }
- else
- {
- // no longer batch
- FBatchScript = false;
- Print("winscp> ");
- Result = Input(Command, true, 0);
- }
- if (Result)
- {
- FCommandError = false;
- FScript->Command(Command);
- if (FCommandError)
- {
- AnyError = true;
- if (FScript->Batch == TScript::BatchAbort)
- {
- Result = false;
- }
- }
- }
- }
- while (Result && FScript->Continue && !Aborted());
- }
- __finally
- {
- delete FScript;
- FScript = NULL;
- }
- }
- catch(Exception & E)
- {
- ShowException(&E);
- AnyError = true;
- }
- return AnyError ? RESULT_ANY_ERROR : RESULT_SUCCESS;
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleRunner::UpdateTitle()
- {
- AnsiString NewTitle;
- if (FScript->Terminal != NULL)
- {
- NewTitle = FMTLOAD(APP_CAPTION, (FScript->Terminal->SessionData->SessionName, AppName));
- }
- else
- {
- NewTitle = AppName;
- }
- FConsole->SetTitle(NewTitle);
- }
- //---------------------------------------------------------------------------
- void __fastcall LoadScriptFromFile(AnsiString FileName, TStrings * Lines)
- {
- AnsiString UTFBOM = "\xEF\xBB\xBF";
- Lines->LoadFromFile(FileName);
- if ((Lines->Count > 0) &&
- (Lines->Strings[0].SubString(1, UTFBOM.Length()) == UTFBOM))
- {
- Lines->Strings[0] = Lines->Strings[0].SubString(
- UTFBOM.Length() + 1, Lines->Strings[0].Length() - UTFBOM.Length());
- for (int Index = 0; Index < Lines->Count; Index++)
- {
- Lines->Strings[Index] = DecodeUTF(Lines->Strings[Index]);
- }
- }
- }
- //---------------------------------------------------------------------------
- int __fastcall Console(bool Help)
- {
- TProgramParams * Params = TProgramParams::Instance();
- int Result = 0;
- TConsole * Console = NULL;
- TConsoleRunner * Runner = NULL;
- TStrings * ScriptCommands = new TStringList();
- try
- {
- AnsiString ConsoleInstance;
- if (Params->FindSwitch("consoleinstance", ConsoleInstance))
- {
- Console = new TExternalConsole(ConsoleInstance);
- }
- else if (Params->FindSwitch("Console") || Help)
- {
- Console = TOwnConsole::Instance();
- }
- else
- {
- Console = new TNullConsole();
- }
- if (Help)
- {
- AnsiString Usage = LoadStr(USAGE3, 10240);
- AnsiString ExeBaseName = ChangeFileExt(ExtractFileName(Application->ExeName), "");
- Usage = StringReplace(Usage, "%APP%", ExeBaseName,
- TReplaceFlags() << rfReplaceAll << rfIgnoreCase);
- AnsiString Copyright = StringReplace(LoadStr(WINSCP_COPYRIGHT), "©", "(c)",
- TReplaceFlags() << rfReplaceAll << rfIgnoreCase);
- Usage = FORMAT(Usage, (Configuration->VersionStr, Copyright));
- Console->Print(Usage);
- Console->WaitBeforeExit();
- }
- else
- {
- Runner = new TConsoleRunner(Console);
- try
- {
- AnsiString Value;
- if (Params->FindSwitch("script", Value) && !Value.IsEmpty())
- {
- LoadScriptFromFile(Value, ScriptCommands);
- }
- Params->FindSwitch("command", ScriptCommands);
- bool Url = false;
- AnsiString Session;
- if (Params->ParamCount >= 1)
- {
- Session = Params->Param[1];
- }
- bool DefaultsOnly;
- delete StoredSessions->ParseUrl(Session, DefaultsOnly,
- puDecodeUrlChars, NULL, &Url);
- if (Url || Params->FindSwitch("Unsafe"))
- {
- // prevent any automatic action when URL is provided on
- // command-line (the check is duplicated in Execute())
- ScriptCommands->Clear();
- }
- else
- {
- AnsiString LogFile;
- if (Params->FindSwitch("Log", LogFile))
- {
- Configuration->TemporaryLogging(LogFile);
- }
- }
- Result = Runner->Run(Session,
- (ScriptCommands->Count > 0 ? ScriptCommands : NULL));
- }
- catch(Exception & E)
- {
- Runner->ShowException(&E);
- Result = RESULT_ANY_ERROR;
- }
- }
- }
- __finally
- {
- delete Runner;
- delete Console;
- delete ScriptCommands;
- }
- return Result;
- }
|