| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- //---------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include <Common.h>
- #include <TextsWin.h>
- #include <Interface.h>
- #include <CoreMain.h>
- #include <VCLCommon.h>
- #include <CustomWinConfiguration.h>
- #include "Console.h"
- #include <Tools.h>
- #include <PasTools.hpp>
- //---------------------------------------------------------------------
- #pragma link "HistoryComboBox"
- #pragma link "PathLabel"
- #pragma link "PngImageList"
- #ifndef NO_RESOURCES
- #pragma resource "*.dfm"
- #endif
- //---------------------------------------------------------------------
- void __fastcall DoConsoleDialog(TTerminal * Terminal, const UnicodeString Command,
- const TStrings * Log)
- {
- TConsoleDialog * Dialog = new TConsoleDialog(Application);
- try
- {
- Dialog->Terminal = Terminal;
- Dialog->Execute(Command, Log);
- }
- __finally
- {
- delete Dialog;
- }
- }
- //---------------------------------------------------------------------
- __fastcall TConsoleDialog::TConsoleDialog(TComponent* AOwner)
- : TForm(AOwner)
- {
- FTerminal = NULL;
- FClearExceptionOnFail = false;
- FOldChangeDirectory = NULL;
- FPrevTerminalClose = NULL;;
- FLastTerminal = NULL;
- FDirectoryChanged = false;
- OutputMemo->Color = clBlack;
- OutputMemo->Font->Color = (TColor)0x00BBBBBB;
- FixComboBoxResizeBug(CommandEdit);
- UseSystemSettings(this);
- OutputMemo->Font->Name = CustomWinConfiguration->DefaultFixedWidthFontName;
- OutputMemo->Font->Size = CustomWinConfiguration->DefaultFixedWidthFontSize;
- }
- //---------------------------------------------------------------------
- __fastcall TConsoleDialog::~TConsoleDialog()
- {
- Terminal = NULL;
- }
- //---------------------------------------------------------------------
- void __fastcall TConsoleDialog::SetTerminal(TTerminal * value)
- {
- if (FTerminal != value)
- {
- if (FTerminal)
- {
- if (FClearExceptionOnFail)
- {
- FTerminal->ExceptionOnFail = false;
- FClearExceptionOnFail = false;
- }
- assert(FTerminal->OnClose == TerminalClose);
- FTerminal->OnClose = FPrevTerminalClose;
- assert(FTerminal->OnChangeDirectory == DoChangeDirectory);
- FTerminal->OnChangeDirectory = FOldChangeDirectory;
- FOldChangeDirectory = NULL;
- if (FDirectoryChanged)
- {
- FDirectoryChanged = false;
- if (FTerminal->Active)
- {
- // directory would be read from EndTransaction anyway,
- // but with reload only flag set, what prevents
- // recording path in history, what we want if the path was
- // changed by "cd" command in console
- FTerminal->ReadDirectory(false);
- }
- }
- FTerminal->EndTransaction();
- }
- FTerminal = value;
- if (FTerminal)
- {
- OutputMemo->Clear();
- FOldChangeDirectory = FTerminal->OnChangeDirectory;
- FTerminal->OnChangeDirectory = DoChangeDirectory;
- // avoid reloading directory after each change of current directory from console
- FTerminal->BeginTransaction();
- FLastTerminal = FTerminal;
- FPrevTerminalClose = FTerminal->OnClose;
- // used instead of previous TTerminalManager::OnChangeTerminal
- FTerminal->OnClose = TerminalClose;
- }
- UpdateControls();
- }
- }
- //---------------------------------------------------------------------
- void __fastcall TConsoleDialog::DoChangeDirectory(TObject * Sender)
- {
- if (FOldChangeDirectory) FOldChangeDirectory(Sender);
- UpdateControls();
- }
- //---------------------------------------------------------------------
- void __fastcall TConsoleDialog::UpdateControls()
- {
- DirectoryLabel->Caption = (FTerminal ? FTerminal->CurrentDirectory : UnicodeString());
- EnableControl(ExecuteButton,
- (FTerminal != NULL) ? FTerminal->AllowedAnyCommand(CommandEdit->Text) : false);
- }
- //---------------------------------------------------------------------
- bool __fastcall TConsoleDialog::Execute(const UnicodeString Command,
- const TStrings * Log)
- {
- try
- {
- CommandEdit->Items = CustomWinConfiguration->History[L"Commands"];
- if (Log != NULL)
- {
- OutputMemo->Lines->BeginUpdate();
- try
- {
- TStrings * ALog = const_cast<TStrings *>(Log);
- for (int i = 0; i < ALog->Count; i++)
- {
- AddLine(ALog->Strings[i], cotOutput);
- }
- }
- __finally
- {
- OutputMemo->Lines->EndUpdate();
- }
- }
- if (!Command.IsEmpty())
- {
- CommandEdit->Text = Command;
- DoExecuteCommand();
- }
- UpdateControls();
- ShowModal();
- TConsoleWinConfiguration ConsoleWin = CustomWinConfiguration->ConsoleWin;
- if ((FAutoBounds.Width() != Width) ||
- (FAutoBounds.Height() != Height))
- {
- ConsoleWin.WindowSize = StoreFormSize(this);
- }
- CustomWinConfiguration->ConsoleWin = ConsoleWin;
- }
- __finally
- {
- if (FTerminal)
- {
- CommandEdit->SaveToHistory();
- CustomWinConfiguration->History[L"Commands"] = CommandEdit->Items;
- }
- }
- return true;
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::TerminalClose(TObject * Sender)
- {
- Close();
- Terminal = NULL;
- if (FPrevTerminalClose)
- {
- FPrevTerminalClose(Sender);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::ExecuteButtonClick(TObject * /*Sender*/)
- {
- // When pressing "Enter" key, focus is not lst and
- // the command is not saved (as oppisute to clicking the button by mouse)
- CommandEdit->SaveToHistory();
- ExecuteCommand();
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::DoExecuteCommand()
- {
- CommandEdit->SelectAll();
- FTerminal->ExceptionOnFail = true;
- FClearExceptionOnFail = true;
- UnicodeString CurrentDirectory = FTerminal->CurrentDirectory;
- try
- {
- UnicodeString Command = CommandEdit->Text;
- OutputMemo->Lines->Add(FORMAT(L"%s$ %s", (CurrentDirectory, Command)));
- Configuration->Usage->Inc(L"RemoteCommandExecutions");
- FTerminal->AnyCommand(Command, AddLine);
- }
- __finally
- {
- if (FTerminal)
- {
- FTerminal->ExceptionOnFail = false;
- assert(FClearExceptionOnFail);
- FClearExceptionOnFail = false;
- if (FTerminal->Active)
- {
- FTerminal->ReadCurrentDirectory();
- }
- }
- }
- if (CurrentDirectory != FTerminal->CurrentDirectory)
- {
- FDirectoryChanged = true;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::ExecuteCommand()
- {
- try
- {
- DoExecuteCommand();
- }
- catch(Exception & E)
- {
- assert(FLastTerminal != NULL);
- FLastTerminal->ShowExtendedException(&E);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::CommandEditChange(TObject * /*Sender*/)
- {
- UpdateControls();
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::AddLine(const UnicodeString & Line, TCaptureOutputType OutputType)
- {
- if ((OutputType == cotOutput) || (OutputType == cotError))
- {
- OutputMemo->Lines->Add(Line);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::CreateParams(TCreateParams & Params)
- {
- TForm::CreateParams(Params);
- // we no longer exclude WS_SYSMENU, was there any reason for that, apart from
- // hidding the window icon?
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::HelpButtonClick(TObject * /*Sender*/)
- {
- FormHelp(this);
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::DoAdjustWindow()
- {
- HGDIOBJ OldFont;
- HDC DC;
- TTextMetric TM;
- TRect Rect;
- DC = GetDC(OutputMemo->Handle);
- OldFont = SelectObject(DC, OutputMemo->Font->Handle);
- try
- {
- GetTextMetrics(DC, &TM);
- OutputMemo->Perform(EM_GETRECT, 0, ((int)&Rect));
- }
- __finally
- {
- SelectObject(DC, OldFont);
- ReleaseDC(OutputMemo->Handle, DC);
- }
- int Rows = OutputMemo->Lines->Count;
- int Columns = 0;
- for (int Index = 0; Index < Rows; Index++)
- {
- int Len = OutputMemo->Lines->Strings[Index].Length();
- if (Columns < Len)
- {
- Columns = Len;
- }
- }
- // 10 is surplus to cover any borders, etc.
- int RequiredWidth = (TM.tmAveCharWidth * Columns) + ScaleByTextHeight(this, 10);
- // there is always one line more
- int RequiredHeight = (TM.tmHeight + TM.tmExternalLeading) * (Rows + 1) + ScaleByTextHeight(this, 10);
- int CurrentWidth = (Rect.Right - Rect.Left);
- int CurrentHeight = (Rect.Bottom - Rect.Top);
- ResizeForm(this,
- Width + (RequiredWidth - CurrentWidth),
- Height + (RequiredHeight - CurrentHeight));
- FAutoBounds = BoundsRect;
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::ActionListExecute(TBasicAction * Action,
- bool & Handled)
- {
- if (Action == AdjustWindow)
- {
- DoAdjustWindow();
- Handled = true;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::ActionListUpdate(TBasicAction * Action,
- bool & Handled)
- {
- if (Action == AdjustWindow)
- {
- Handled = true;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::FormShow(TObject * /*Sender*/)
- {
- UpdateFormPosition(this, poOwnerFormCenter);
- RestoreFormSize(CustomWinConfiguration->ConsoleWin.WindowSize, this);
- FAutoBounds = BoundsRect;
- }
- //---------------------------------------------------------------------------
- void __fastcall TConsoleDialog::OutputMemoContextPopup(TObject * Sender,
- TPoint & MousePos, bool & Handled)
- {
- MenuPopup(Sender, MousePos, Handled);
- }
- //---------------------------------------------------------------------------
|