//--------------------------------------------------------------------- #include #pragma hdrstop #include #include #include #include "WinInterface.h" #include "FileSystemInfo.h" #include "TextsCore.h" #include "TextsWin.h" #include "GUITools.h" #include //--------------------------------------------------------------------- #pragma link "HistoryComboBox" #ifndef NO_RESOURCES #pragma resource "*.dfm" #endif //--------------------------------------------------------------------- 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(HostKeyFingerprintEdit); 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(HostKeyFingerprintEdit, 0, FSessionInfo.HostKeyFingerprint); 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 == HostKeyFingerprintEdit) { EnableControl(HostKeyGroup, !Value.IsEmpty()); HostKeyGroup->Visible = !Value.IsEmpty(); HostKeyFingerprintEdit->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(Control); assert(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()) { if (FLastFeededControl != Control) { if (FLastFeededControl != NULL) { FClipboard += UnicodeString::StringOfChar(L'-', 60) + L"\r\n"; } FLastFeededControl = Control; } if (dynamic_cast(Control) == NULL) { TGroupBox * Group = dynamic_cast(Control->Parent); assert(Group != NULL); if ((Value.Length() >= 2) && (Value.SubString(Value.Length() - 1, 2) == L"\r\n")) { Value.SetLength(Value.Length() - 2); } FClipboard += FORMAT(L"%s\r\n%s\r\n", (Group->Caption, Value)); } else { assert(dynamic_cast(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(GetPopupComponent(Sender)); assert(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() { assert(FOnGetSpaceAvailable != NULL); assert(!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; } } //---------------------------------------------------------------------------