| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427 | //---------------------------------------------------------------------#include <vcl.h>#pragma hdrstop#include <Common.h>#include <Terminal.h>#include <VCLCommon.h>#include "WinInterface.h"#include "FileSystemInfo.h"#include "TextsCore.h"#include "TextsWin.h"#include "GUITools.h"#include <BaseUtils.hpp>#include <StrUtils.hpp>//---------------------------------------------------------------------#pragma link "HistoryComboBox"#pragma resource "*.dfm"//---------------------------------------------------------------------void __fastcall DoFileSystemInfoDialog(  const TSessionInfo & SessionInfo, const TFileSystemInfo & FileSystemInfo,  UnicodeString SpaceAvailablePath, TGetSpaceAvailable OnGetSpaceAvailable){  TFileSystemInfoDialog * Dialog = new TFileSystemInfoDialog(Application,    OnGetSpaceAvailable);  try  {    Dialog->Execute(SessionInfo, FileSystemInfo, SpaceAvailablePath);  }  __finally  {    delete Dialog;  }}//---------------------------------------------------------------------__fastcall TFileSystemInfoDialog::TFileSystemInfoDialog(TComponent * AOwner,  TGetSpaceAvailable OnGetSpaceAvailable)  : TForm(AOwner){  UseSystemSettings(this);  FOnGetSpaceAvailable = OnGetSpaceAvailable;  FSpaceAvailableLoaded = false;  FLastListItem = 0;  CertificateGroup->Top = HostKeyGroup->Top;  ReadOnlyControl(HostKeyAlgorithmEdit);  ReadOnlyControl(HostKeyFingerprintSHA256Edit);  ReadOnlyControl(HostKeyFingerprintMD5Edit);  ReadOnlyControl(CertificateFingerprintEdit);  ReadOnlyControl(InfoMemo);}//---------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::Execute(const TSessionInfo & SessionInfo,  const TFileSystemInfo & FileSystemInfo, UnicodeString SpaceAvailablePath){  FSessionInfo = SessionInfo;  FFileSystemInfo = FileSystemInfo;  SpaceAvailablePathEdit->Text = SpaceAvailablePath;  UpdateControls();  ShowModal();}//---------------------------------------------------------------------UnicodeString __fastcall TFileSystemInfoDialog::CapabilityStr(TFSCapability Capability){  return BooleanToStr(FFileSystemInfo.IsCapable[Capability]);}//---------------------------------------------------------------------UnicodeString __fastcall TFileSystemInfoDialog::CapabilityStr(TFSCapability Capability1,  TFSCapability Capability2){  return FORMAT(L"%s/%s", (CapabilityStr(Capability1), CapabilityStr(Capability2)));}//---------------------------------------------------------------------UnicodeString __fastcall TFileSystemInfoDialog::SpaceStr(__int64 Bytes){  UnicodeString Result;  if (Bytes == 0)  {    Result = LoadStr(FSINFO_BYTES_UNKNOWN);  }  else  {    Result = FormatBytes(Bytes);    UnicodeString SizeUnorderedStr = FormatBytes(Bytes, fbNone);    if (Result != SizeUnorderedStr)    {      Result = FORMAT(L"%s (%s)", (Result, SizeUnorderedStr));    }  }  return Result;}//---------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::Feed(TFeedFileSystemData AddItem){  AddItem(ServerView, FSINFO_REMOTE_SYSTEM, FFileSystemInfo.RemoteSystem);  AddItem(ServerView, FSINFO_FS_PROTOCOL, FFileSystemInfo.ProtocolName);  AddItem(ServerView, FSINFO_CRYPTOGRAPHIC_PROTOCOL, FSessionInfo.SecurityProtocolName);  AddItem(ServerView, FSINFO_SSH_IMPLEMENTATION, FSessionInfo.SshImplementation);  UnicodeString Str = FSessionInfo.CSCipher;  if (FSessionInfo.CSCipher != FSessionInfo.SCCipher)  {    Str += FORMAT(L"/%s", (FSessionInfo.SCCipher));  }  AddItem(ServerView, FSINFO_CIPHER, Str);  Str = DefaultStr(FSessionInfo.CSCompression, LoadStr(NO_STR));  if (FSessionInfo.CSCompression != FSessionInfo.SCCompression)  {    Str += FORMAT(L"/%s", (DefaultStr(FSessionInfo.SCCompression, LoadStr(NO_STR))));  }  AddItem(ServerView, FSINFO_COMPRESSION, Str);  AddItem(HostKeyFingerprintSHA256Edit, 0, FSessionInfo.HostKeyFingerprintSHA256);  AddItem(HostKeyFingerprintMD5Edit, 0, FSessionInfo.HostKeyFingerprintMD5);  AddItem(CertificateFingerprintEdit, 0, FSessionInfo.CertificateFingerprint);  AddItem(ProtocolView, FSINFO_MODE_CHANGING, CapabilityStr(fcModeChanging));  AddItem(ProtocolView, FSINFO_OWNER_GROUP_CHANGING, CapabilityStr(fcGroupChanging));  UnicodeString AnyCommand;  if (!FFileSystemInfo.IsCapable[fcShellAnyCommand] &&      FFileSystemInfo.IsCapable[fcAnyCommand])  {    AnyCommand = LoadStr(FSINFO_PROTOCOL_ANY_COMMAND);  }  else  {    AnyCommand = CapabilityStr(fcAnyCommand);  }  AddItem(ProtocolView, FSINFO_ANY_COMMAND, AnyCommand);  AddItem(ProtocolView, FSINFO_SYMBOLIC_HARD_LINK, CapabilityStr(fcSymbolicLink, fcHardLink));  AddItem(ProtocolView, FSINFO_USER_GROUP_LISTING, CapabilityStr(fcUserGroupListing));  AddItem(ProtocolView, FSINFO_REMOTE_COPY, CapabilityStr(fcRemoteCopy));  AddItem(ProtocolView, FSINFO_CHECKING_SPACE_AVAILABLE, CapabilityStr(fcCheckingSpaceAvailable));  AddItem(ProtocolView, FSINFO_CALCULATING_CHECKSUM, CapabilityStr(fcCalculatingChecksum));  AddItem(ProtocolView, FSINFO_NATIVE_TEXT_MODE, CapabilityStr(fcNativeTextMode));  AddItem(InfoMemo, 0, FFileSystemInfo.AdditionalInfo);  AddItem(SpaceAvailableView, FSINFO_BYTES_ON_DEVICE, SpaceStr(FSpaceAvailable.BytesOnDevice));  AddItem(SpaceAvailableView, FSINFO_UNUSED_BYTES_ON_DEVICE, SpaceStr(FSpaceAvailable.UnusedBytesOnDevice));  AddItem(SpaceAvailableView, FSINFO_BYTES_AVAILABLE_TO_USER, SpaceStr(FSpaceAvailable.BytesAvailableToUser));  AddItem(SpaceAvailableView, FSINFO_UNUSED_BYTES_AVAILABLE_TO_USER, SpaceStr(FSpaceAvailable.UnusedBytesAvailableToUser));  AddItem(SpaceAvailableView, FSINFO_BYTES_PER_ALLOCATION_UNIT, SpaceStr(FSpaceAvailable.BytesPerAllocationUnit));}//---------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::ControlsAddItem(TControl * Control,  int Label, UnicodeString Value){  if (FLastFeededControl != Control)  {    // TODO, we should clear excess list view items here, but it    // actually should not happen as of now    FLastFeededControl = Control;    FLastListItem = 0;  }  if ((Control == HostKeyFingerprintSHA256Edit) || (Control == HostKeyFingerprintMD5Edit))  {    EnableControl(HostKeyGroup, !Value.IsEmpty());    HostKeyGroup->Visible = !Value.IsEmpty();    UnicodeString Alg1 = CutToChar(Value, L' ', true);    UnicodeString Alg2 = CutToChar(Value, L' ', true);    HostKeyAlgorithmEdit->Text = FORMAT(L"%s %s", (Alg1, Alg2));    DebugNotNull(dynamic_cast<TEdit *>(Control))->Text = Value;  }  else if (Control == CertificateFingerprintEdit)  {    EnableControl(CertificateGroup, !Value.IsEmpty());    CertificateGroup->Visible = !Value.IsEmpty();    CertificateFingerprintEdit->Text = Value;  }  else if (Control == InfoMemo)  {    EnableControl(InfoGroup, !Value.IsEmpty());    InfoGroup->Visible = !Value.IsEmpty();    InfoMemo->Lines->Text = Value;  }  else  {    TListView * ListView = dynamic_cast<TListView *>(Control);    DebugAssert(ListView != NULL);    if (!Value.IsEmpty())    {      TListItem * Item;      if (ListView->Items->Count > FLastListItem)      {        Item = ListView->Items->Item[FLastListItem];      }      else      {        Item = ListView->Items->Add();      }      FLastListItem++;      Item->Caption = LoadStr(Label);      if (Item->SubItems->Count > 0)      {        Item->SubItems->Strings[0] = Value;      }      else      {        Item->SubItems->Add(Value);      }    }  }}//---------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::FeedControls(){  FLastFeededControl = NULL;  Feed(ControlsAddItem);  AutoSizeListColumnsWidth(ServerView, 1);  AutoSizeListColumnsWidth(ProtocolView, 1);  AutoSizeListColumnsWidth(SpaceAvailableView, 1);}//---------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::UpdateControls(){  EnableControl(SpaceAvailableSheet, SpaceAvailableSupported());  EnableControl(SpaceAvailableButton, SpaceAvailableSheet->Enabled &&    !SpaceAvailablePathEdit->Text.IsEmpty());}//---------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::HelpButtonClick(TObject * /*Sender*/){  FormHelp(this);}//---------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::ClipboardAddItem(TControl * Control,  int Label, UnicodeString Value){  if (Control->Enabled && !Value.IsEmpty())  {    TGroupBox * Group = dynamic_cast<TGroupBox *>(Control->Parent);    TControl * ControlGroup = (Group != NULL) ? Group : Control;    if (FLastFeededControl != ControlGroup)    {      if (FLastFeededControl != NULL)      {        FClipboard += UnicodeString::StringOfChar(L'-', 60) + L"\r\n";      }      if (Group != NULL)      {        FClipboard += FORMAT(L"%s\r\n", (Group->Caption));      }      FLastFeededControl = ControlGroup;    }    if (dynamic_cast<TListView *>(Control) == NULL)    {      for (int Index = 0; Index < Control->Parent->ControlCount; Index++)      {        TLabel * Label = dynamic_cast<TLabel *>(Control->Parent->Controls[Index]);        if ((Label != NULL) && (Label->FocusControl == Control))        {          UnicodeString S = RemoveSuffix(StripHotkey(Label->Caption), L":");          FClipboard += FORMAT(L"%s = ", (S));        }      }      Value = RemoveSuffix(Value, L"\r\n");      FClipboard += FORMAT(L"%s\r\n", (Value));    }    else    {      DebugAssert(dynamic_cast<TListView *>(Control) != NULL);      FClipboard += FORMAT(L"%s = %s\r\n", (LoadStr(Label), Value));    }  }}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::ClipboardButtonClick(  TObject * /*Sender*/){  TInstantOperationVisualizer Visualizer;  NeedSpaceAvailable();  FLastFeededControl = NULL;  FClipboard = L"";  Feed(ClipboardAddItem);  CopyToClipboard(FClipboard);}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::CopyClick(TObject * Sender){  TInstantOperationVisualizer Visualizer;  TListView * ListView = dynamic_cast<TListView *>(GetPopupComponent(Sender));  DebugAssert(ListView != NULL);  UnicodeString Text;  for (int Index = 0; Index < ListView->Items->Count; Index++)  {    TListItem * Item = ListView->Items->Item[Index];    if (Item->Selected)    {      Text += FORMAT(L"%s = %s\r\n", (Item->Caption, Item->SubItems->Strings[0]));    }  }  CopyToClipboard(Text);}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::FormShow(TObject * /*Sender*/){  InstallPathWordBreakProc(SpaceAvailablePathEdit);  PageControl->ActivePage = ProtocolSheet;  FeedControls();}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::SpaceAvailableButtonClick(  TObject * /*Sender*/){  CheckSpaceAvailable();}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::CheckSpaceAvailable(){  DebugAssert(FOnGetSpaceAvailable != NULL);  DebugAssert(!SpaceAvailablePathEdit->Text.IsEmpty());  FSpaceAvailableLoaded = true;  bool DoClose = false;  try  {    FOnGetSpaceAvailable(SpaceAvailablePathEdit->Text, FSpaceAvailable, DoClose);  }  __finally  {    FeedControls();    if (DoClose)    {      Close();    }  }}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::NeedSpaceAvailable(){  if (!FSpaceAvailableLoaded && SpaceAvailableSupported())  {    CheckSpaceAvailable();  }}//---------------------------------------------------------------------------bool __fastcall TFileSystemInfoDialog::SpaceAvailableSupported(){  return (FOnGetSpaceAvailable != NULL);}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::PageControlChange(TObject * /*Sender*/){  if (PageControl->ActivePage == SpaceAvailableSheet)  {    NeedSpaceAvailable();  }}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::ControlChange(TObject * /*Sender*/){  UpdateControls();}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::SpaceAvailablePathEditEnter(  TObject * /*Sender*/){  SpaceAvailableButton->Default = true;  CloseButton->Default = false;}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::SpaceAvailablePathEditExit(  TObject * /*Sender*/){  SpaceAvailableButton->Default = false;  CloseButton->Default = true;}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::ControlContextPopup(  TObject * Sender, TPoint & MousePos, bool & Handled){  MenuPopup(Sender, MousePos, Handled);}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::CertificateViewButtonClick(  TObject * /*Sender*/){  MessageDialog(FSessionInfo.Certificate, qtInformation, qaOK);}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::SpaceAvailableViewCustomDrawItem(  TCustomListView * Sender, TListItem * Item, TCustomDrawState /*State*/, bool & /*DefaultDraw*/){  if ((Item->SubItems->Count >= 1) && (Item->SubItems->Strings[0] == LoadStr(FSINFO_BYTES_UNKNOWN)))  {    Sender->Canvas->Font->Color = clGrayText;  }}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::EditCopyActionExecute(TObject * /*Sender*/){  TEdit * Edit = HostKeyFingerprintSHA256Edit->Focused() ? HostKeyFingerprintSHA256Edit : HostKeyFingerprintMD5Edit;  if ((Edit->SelLength == 0) || (Edit->SelLength == Edit->Text.Length()))  {    CopyToClipboard(FORMAT(L"%s %s", (HostKeyAlgorithmEdit->Text, Edit->Text)));  }  else  {    Edit->CopyToClipboard();  }}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::HostKeyFingerprintSHA256EditContextPopup(  TObject * Sender, TPoint & MousePos, bool & Handled){  MenuPopup(Sender, MousePos, Handled);}//---------------------------------------------------------------------------void __fastcall TFileSystemInfoDialog::EditCopyActionUpdate(TObject * /*Sender*/){  // When noting is selected, we copy whole key, including algorithm, see EditCopyActionExecute  EditCopyAction->Enabled = true;}//---------------------------------------------------------------------------
 |