UnixDirView.cpp 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include <Common.h>
  5. #include "UnixDirView.h"
  6. #include "UnixDriveView.h"
  7. #include <FileCtrl.hpp>
  8. #ifndef DESIGN_ONLY
  9. #include <CoreMain.h>
  10. #include <Terminal.h>
  11. #include <WinConfiguration.h>
  12. #include <VCLCommon.h>
  13. #endif
  14. #pragma package(smart_init)
  15. #ifndef DESIGN_ONLY
  16. #define ITEMFILE ((TRemoteFile *)(Item->Data))
  17. // noop, previously this tested that the file was in terminal's file listing,
  18. // but that cannot be safely checked now the terminal is used in multithreaded
  19. // environment
  20. #define ASSERT_VALID_ITEM
  21. #endif
  22. //---------------------------------------------------------------------------
  23. static inline void ValidCtrCheck(TUnixDirView *)
  24. {
  25. new TUnixDirView(NULL);
  26. }
  27. //---------------------------------------------------------------------------
  28. namespace Unixdirview
  29. {
  30. void __fastcall PACKAGE Register()
  31. {
  32. TComponentClass classes[1] = {__classid(TUnixDirView)};
  33. RegisterComponents(L"Scp", classes, 0);
  34. }
  35. }
  36. //---------------------------------------------------------------------------
  37. #define HOMEDIRECTORY L""
  38. //---------------------------------------------------------------------------
  39. __fastcall TUnixDirView::TUnixDirView(TComponent* Owner)
  40. : TCustomUnixDirView(Owner)
  41. {
  42. #ifndef DESIGN_ONLY
  43. FTerminal = NULL;
  44. #endif
  45. FCaseSensitive = true;
  46. DDAllowMove = false;
  47. FShowInaccesibleDirectories = true;
  48. FFullLoad = false;
  49. FDriveView = NULL;
  50. FInvalidNameChars = L"/";
  51. }
  52. //---------------------------------------------------------------------------
  53. __fastcall TUnixDirView::~TUnixDirView()
  54. {
  55. #ifndef DESIGN_ONLY
  56. Terminal = NULL;
  57. #endif
  58. }
  59. //---------------------------------------------------------------------------
  60. void __fastcall TUnixDirView::DisplayContextMenu(const TPoint &Where)
  61. {
  62. bool Handled = false;
  63. if (OnContextPopup)
  64. {
  65. OnContextPopup(this, ScreenToClient(Where), Handled);
  66. }
  67. if (!Handled)
  68. {
  69. if (PopupMenu && !PopupMenu->AutoPopup)
  70. {
  71. PopupMenu->Popup(Where.x, Where.y);
  72. }
  73. }
  74. }
  75. //---------------------------------------------------------------------------
  76. void __fastcall TUnixDirView::DisplayPropertiesMenu()
  77. {
  78. if (OnDisplayProperties) OnDisplayProperties(this);
  79. }
  80. //---------------------------------------------------------------------------
  81. void __fastcall TUnixDirView::ExecuteFile(TListItem * Item)
  82. {
  83. #ifndef DESIGN_ONLY
  84. ASSERT_VALID_ITEM;
  85. if (ITEMFILE->IsDirectory ||
  86. !Terminal->ResolvingSymlinks)
  87. {
  88. PathChanging(true);
  89. ChangeDirectory(ITEMFILE->FileName);
  90. }
  91. else
  92. {
  93. if (ItemFocused != Item) ItemFocused = Item;
  94. DisplayPropertiesMenu();
  95. }
  96. #else
  97. DebugUsedParam(Item);
  98. #endif
  99. }
  100. //---------------------------------------------------------------------------
  101. void __fastcall TUnixDirView::ExecuteParentDirectory()
  102. {
  103. PathChanging(true);
  104. #ifndef DESIGN_ONLY
  105. ChangeDirectory(PARENTDIRECTORY);
  106. #endif
  107. }
  108. //---------------------------------------------------------------------------
  109. void __fastcall TUnixDirView::ExecuteHomeDirectory()
  110. {
  111. #ifndef DESIGN_ONLY
  112. // don't select any directory
  113. PathChanging(false);
  114. UnicodeString APath = Terminal->SessionData->RemoteDirectory;
  115. if (WinConfiguration->DefaultDirIsHome && !APath.IsEmpty() &&
  116. !Terminal->SessionData->UpdateDirectories)
  117. {
  118. if (APath[1] != L'/')
  119. {
  120. Terminal->BeginTransaction();
  121. try
  122. {
  123. ChangeDirectory(HOMEDIRECTORY);
  124. ChangeDirectory(APath);
  125. }
  126. __finally
  127. {
  128. Terminal->EndTransaction();
  129. }
  130. }
  131. else
  132. {
  133. ChangeDirectory(APath);
  134. }
  135. }
  136. else
  137. {
  138. ChangeDirectory(HOMEDIRECTORY);
  139. }
  140. #endif
  141. }
  142. //---------------------------------------------------------------------------
  143. void __fastcall TUnixDirView::ReloadDirectory()
  144. {
  145. #ifndef DESIGN_ONLY
  146. FLastPath = L"";
  147. DoAnimation(true);
  148. Terminal->ReloadDirectory();
  149. #endif
  150. }
  151. //---------------------------------------------------------------------------
  152. void __fastcall TUnixDirView::ExecuteRootDirectory()
  153. {
  154. #ifndef DESIGN_ONLY
  155. // We set LastPath to top directory, so it will be selected
  156. // after entering root directory
  157. // DISABLED: see PathChanged(): back moves to top directory, not to current
  158. PathChanging(false);
  159. ChangeDirectory(ROOTDIRECTORY);
  160. #endif
  161. }
  162. //---------------------------------------------------------------------------
  163. bool __fastcall TUnixDirView::ItemIsDirectory(TListItem * Item)
  164. {
  165. #ifndef DESIGN_ONLY
  166. ASSERT_VALID_ITEM;
  167. return ITEMFILE->IsDirectory;
  168. #else
  169. DebugUsedParam(Item);
  170. return false;
  171. #endif
  172. }
  173. //---------------------------------------------------------------------------
  174. bool __fastcall TUnixDirView::ItemIsFile(TListItem * Item)
  175. {
  176. #ifndef DESIGN_ONLY
  177. ASSERT_VALID_ITEM;
  178. return !(ITEMFILE->IsParentDirectory);
  179. #else
  180. DebugUsedParam(Item);
  181. return false;
  182. #endif
  183. }
  184. //---------------------------------------------------------------------------
  185. bool __fastcall TUnixDirView::ItemIsParentDirectory(TListItem * Item)
  186. {
  187. #ifndef DESIGN_ONLY
  188. ASSERT_VALID_ITEM;
  189. return ITEMFILE->IsParentDirectory;
  190. #else
  191. DebugUsedParam(Item);
  192. return false;
  193. #endif
  194. }
  195. //---------------------------------------------------------------------------
  196. UnicodeString __fastcall TUnixDirView::ItemFileName(TListItem * Item)
  197. {
  198. #ifndef DESIGN_ONLY
  199. ASSERT_VALID_ITEM;
  200. return ITEMFILE->FileName;
  201. #else
  202. DebugUsedParam(Item);
  203. return UnicodeString();
  204. #endif
  205. }
  206. //---------------------------------------------------------------------------
  207. __int64 __fastcall TUnixDirView::ItemFileSize(TListItem * Item)
  208. {
  209. #ifndef DESIGN_ONLY
  210. ASSERT_VALID_ITEM;
  211. return ITEMFILE->Size;
  212. #else
  213. DebugUsedParam(Item);
  214. return 0;
  215. #endif
  216. }
  217. //---------------------------------------------------------------------------
  218. UnicodeString __fastcall TUnixDirView::ItemFullFileName(TListItem * Item)
  219. {
  220. #ifndef DESIGN_ONLY
  221. ASSERT_VALID_ITEM;
  222. return ITEMFILE->FullFileName;
  223. #else
  224. DebugUsedParam(Item);
  225. return UnicodeString();
  226. #endif
  227. }
  228. //---------------------------------------------------------------------------
  229. int __fastcall TUnixDirView::ItemImageIndex(TListItem * Item, bool /*Cache*/)
  230. {
  231. #ifndef DESIGN_ONLY
  232. ASSERT_VALID_ITEM;
  233. // TCustomDirView::ItemImageIndex is used for icon caching
  234. // so we don't need it here. But it's implemented anyway.
  235. return ITEMFILE->IconIndex;
  236. #else
  237. DebugUsedParam(Item);
  238. return 0;
  239. #endif
  240. }
  241. //---------------------------------------------------------------------------
  242. bool __fastcall TUnixDirView::ItemMatchesFilter(TListItem * Item,
  243. const TFileFilter &Filter)
  244. {
  245. #ifndef DESIGN_ONLY
  246. ASSERT_VALID_ITEM;
  247. TRemoteFile *File = ITEMFILE;
  248. int Attr = File->Attr;
  249. return
  250. ((Attr & Filter.IncludeAttr) == Filter.IncludeAttr) &&
  251. ((Attr & Filter.ExcludeAttr) == 0) &&
  252. ((Filter.FileSizeFrom == 0) || (File->Size >= Filter.FileSizeFrom)) &&
  253. ((Filter.FileSizeTo == 0) || (File->Size <= Filter.FileSizeTo)) &&
  254. ((!(int)Filter.ModificationFrom) || (File->Modification >= Filter.ModificationFrom)) &&
  255. ((!(int)Filter.ModificationTo) || (File->Modification <= Filter.ModificationTo)) &&
  256. ((Filter.Masks.IsEmpty()) ||
  257. FileNameMatchesMasks(File->FileName, File->IsDirectory, File->Size, File->Modification, Filter.Masks, false) ||
  258. (File->IsDirectory && Filter.Directories &&
  259. FileNameMatchesMasks(File->FileName, false, File->Size, File->Modification, Filter.Masks, false)));
  260. #else
  261. DebugUsedParam(Item);
  262. DebugUsedParam(Filter);
  263. return false;
  264. #endif
  265. }
  266. //---------------------------------------------------------------------------
  267. Word __fastcall TUnixDirView::ItemOverlayIndexes(TListItem * Item)
  268. {
  269. #ifndef DESIGN_ONLY
  270. ASSERT_VALID_ITEM;
  271. Word Result = TCustomDirView::ItemOverlayIndexes(Item);
  272. if (ITEMFILE->IsParentDirectory)
  273. {
  274. Result |= oiDirUp;
  275. }
  276. if (ITEMFILE->IsSymLink)
  277. {
  278. Result |= ITEMFILE->BrokenLink ? oiBrokenLink : oiLink;
  279. }
  280. return Result;
  281. #else
  282. DebugUsedParam(Item);
  283. return 0;
  284. #endif
  285. }
  286. //---------------------------------------------------------------------------
  287. void __fastcall TUnixDirView::LoadFiles()
  288. {
  289. #ifndef DESIGN_ONLY
  290. DebugAssert(Terminal);
  291. if (DirOK)
  292. {
  293. // it's enough if we reach this point, we don't require that loading files into
  294. // list succeeded. FDirLoadedAfterChangeDir == false tells only that
  295. // loding file list from server failed, not loading into listview
  296. FDirLoadedAfterChangeDir = true;
  297. FFilesSize = 0;
  298. FHasParentDir = false;
  299. int VisibleFiles = 0;
  300. FHiddenCount = 0;
  301. FFilteredCount = 0;
  302. for (int Index = 0; Index < Terminal->Files->Count; Index++)
  303. {
  304. TRemoteFile *File = Terminal->Files->Files[Index];
  305. DebugAssert(File);
  306. if ((!ShowHiddenFiles && File->IsHidden) ||
  307. (!ShowInaccesibleDirectories && File->IsInaccesibleDirectory))
  308. {
  309. FHiddenCount++;
  310. }
  311. else if (!Mask.IsEmpty() &&
  312. !File->IsParentDirectory && !File->IsThisDirectory &&
  313. !FileNameMatchesMasks(File->FileName, File->IsDirectory, File->Size, File->Modification, Mask, true))
  314. {
  315. FFilteredCount++;
  316. }
  317. else
  318. {
  319. VisibleFiles++;
  320. FFilesSize += File->Size;
  321. if (File->IsParentDirectory) FHasParentDir = true;
  322. TListItem * Item = new TListItem(Items);
  323. Item->Data = File;
  324. // Need to add before assigning to .Caption and .OverlayIndex,
  325. // as the setters these call back to owning view.
  326. // Assignment is redundant
  327. Item = Items->AddItem(Item);
  328. Item->Caption = File->FileName;
  329. if (FFullLoad)
  330. {
  331. // this is out of date
  332. // (missing columns and does not update then file properties are loaded)
  333. Item->ImageIndex = File->IconIndex;
  334. Item->SubItems->Add(!File->IsDirectory ? FormatPanelBytes(File->Size, FormatSizeBytes) : UnicodeString());
  335. Item->SubItems->Add(File->UserModificationStr);
  336. Item->SubItems->Add(File->RightsStr);
  337. Item->SubItems->Add(File->Owner.DisplayText);
  338. Item->SubItems->Add(File->Group.DisplayText);
  339. Item->SubItems->Add(File->Extension);
  340. }
  341. }
  342. }
  343. if (OwnerData)
  344. {
  345. Items->Count = VisibleFiles;
  346. }
  347. }
  348. #endif
  349. }
  350. //---------------------------------------------------------------------------
  351. void __fastcall TUnixDirView::GetDisplayInfo(TListItem * Item, tagLVITEMW &DispInfo)
  352. {
  353. if (!FFullLoad)
  354. {
  355. #ifndef DESIGN_ONLY
  356. TRemoteFile * File = ITEMFILE;
  357. if (DispInfo.mask & LVIF_TEXT)
  358. {
  359. UnicodeString Value;
  360. switch (DispInfo.iSubItem) {
  361. case uvName: Value = File->FileName; break;
  362. case uvSize:
  363. // expanded from ?: to avoid memory leaks
  364. if (!File->IsDirectory)
  365. {
  366. Value = FormatPanelBytes(File->Size, FormatSizeBytes);
  367. }
  368. break;
  369. case uvChanged: Value = File->UserModificationStr; break;
  370. case uvRights: Value = File->RightsStr; break;
  371. case uvOwner: Value = File->Owner.DisplayText; break;
  372. case uvGroup: Value = File->Group.DisplayText; break;
  373. case uvExt: Value = File->Extension; break;
  374. case uvLinkTarget: Value = File->LinkTo; break;
  375. case uvType: Value = File->TypeName; break;
  376. default: DebugFail();
  377. }
  378. StrPLCopy(DispInfo.pszText, Value, DispInfo.cchTextMax);
  379. }
  380. if (DispInfo.iSubItem == 0 && DispInfo.mask & LVIF_IMAGE)
  381. {
  382. DispInfo.iImage = File->IconIndex;
  383. DispInfo.mask |= LVIF_DI_SETITEM;
  384. }
  385. #else
  386. DebugUsedParam(Item);
  387. DebugUsedParam(DispInfo);
  388. #endif
  389. }
  390. }
  391. //---------------------------------------------------------------------------
  392. bool __fastcall TUnixDirView::PasteFromClipBoard(UnicodeString TargetPath)
  393. {
  394. DragDropFilesEx->FileList->Clear();
  395. bool Result = false;
  396. if (CanPasteFromClipBoard() &&
  397. DragDropFilesEx->GetFromClipboard())
  398. {
  399. if (TargetPath.IsEmpty())
  400. {
  401. TargetPath = PathName;
  402. }
  403. PerformItemDragDropOperation(NULL, DROPEFFECT_COPY);
  404. if (OnDDExecuted != NULL)
  405. {
  406. OnDDExecuted(this, DROPEFFECT_COPY);
  407. }
  408. Result = true;
  409. }
  410. return Result;
  411. }
  412. //---------------------------------------------------------------------------
  413. void __fastcall TUnixDirView::PerformItemDragDropOperation(TListItem * Item,
  414. int Effect)
  415. {
  416. #ifndef DESIGN_ONLY
  417. if (OnDDFileOperation)
  418. {
  419. // Could be empty if the source application does not provide any files;
  420. // or if the IDataObject fails GetData, like Visual Studio Code 0.8.0.
  421. if (DragDropFilesEx->FileList->Count > 0)
  422. {
  423. UnicodeString SourceDirectory;
  424. UnicodeString TargetDirectory;
  425. SourceDirectory = ExtractFilePath(DragDropFilesEx->FileList->Items[0]->Name);
  426. if (Item)
  427. {
  428. DebugAssert(ITEMFILE->IsDirectory && (Terminal->Files->IndexOf(ITEMFILE) >= 0));
  429. TargetDirectory = ITEMFILE->FullFileName;
  430. }
  431. else
  432. {
  433. TargetDirectory = Path;
  434. }
  435. bool DoFileOperation = true;
  436. OnDDFileOperation(this, Effect, SourceDirectory, TargetDirectory,
  437. DoFileOperation);
  438. }
  439. }
  440. #else
  441. DebugUsedParam(Item);
  442. DebugUsedParam(Effect);
  443. #endif
  444. }
  445. //---------------------------------------------------------------------------
  446. void __fastcall TUnixDirView::SetItemImageIndex(TListItem * /* Item */, int /* Index */)
  447. {
  448. // TCustomDirView::SetItemImageIndex is used for icon caching
  449. // so we don't need it here.
  450. }
  451. //---------------------------------------------------------------------------
  452. void __fastcall TUnixDirView::DDMenuDone(TObject* /* Sender */, HMENU /* AMenu */)
  453. {
  454. // TODO: Why I need to duplicate this method? (see TCustomDirView::DDMenuDone)
  455. }
  456. //---------------------------------------------------------------------------
  457. void __fastcall TUnixDirView::SetDriveView(TCustomUnixDriveView * Value)
  458. {
  459. if (Value != FDriveView)
  460. {
  461. if (FDriveView != NULL)
  462. {
  463. FDriveView->Terminal = NULL;
  464. }
  465. FDriveView = Value;
  466. if (FDriveView != NULL)
  467. {
  468. FDriveView->Terminal = Terminal;
  469. }
  470. }
  471. }
  472. //---------------------------------------------------------------------------
  473. #ifndef DESIGN_ONLY
  474. void __fastcall TUnixDirView::SetTerminal(TTerminal *value)
  475. {
  476. if (FTerminal != value)
  477. {
  478. if (FTerminal)
  479. {
  480. DebugAssert(FTerminal->OnReadDirectory == DoReadDirectory);
  481. FTerminal->OnReadDirectory = NULL;
  482. DebugAssert(FTerminal->OnStartReadDirectory == DoStartReadDirectory);
  483. FTerminal->OnStartReadDirectory = NULL;
  484. DebugAssert(FTerminal->OnChangeDirectory == DoChangeDirectory);
  485. FTerminal->OnChangeDirectory = NULL;
  486. if (!value || !value->Files->Loaded)
  487. {
  488. ClearItems();
  489. }
  490. }
  491. FTerminal = value;
  492. PathChanging(false);
  493. if (FDriveView != NULL)
  494. {
  495. FDriveView->Terminal = FTerminal;
  496. }
  497. if (FTerminal)
  498. {
  499. FTerminal->OnReadDirectory = DoReadDirectory;
  500. FTerminal->OnStartReadDirectory = DoStartReadDirectory;
  501. FTerminal->OnChangeDirectory = DoChangeDirectory;
  502. FTerminal->Files->IncludeParentDirectory = AddParentDir;
  503. if (FTerminal->Files->Loaded)
  504. {
  505. DoChangeDirectory(FTerminal);
  506. DoStartReadDirectory(FTerminal); // just for style and the assertions
  507. DoReadDirectoryImpl(FTerminal, false);
  508. }
  509. }
  510. UpdatePathLabel();
  511. }
  512. }
  513. #endif
  514. //---------------------------------------------------------------------------
  515. void __fastcall TUnixDirView::DoStartReadDirectory(TObject * /*Sender*/)
  516. {
  517. DebugAssert(!FLoading);
  518. FLoading = true;
  519. }
  520. //---------------------------------------------------------------------------
  521. void __fastcall TUnixDirView::DoReadDirectory(TObject * Sender, bool ReloadOnly)
  522. {
  523. DoReadDirectoryImpl(Sender, ReloadOnly);
  524. if (FOnRead != NULL)
  525. {
  526. FOnRead(this);
  527. }
  528. }
  529. //---------------------------------------------------------------------------
  530. void __fastcall TUnixDirView::DoReadDirectoryImpl(TObject * /*Sender*/, bool ReloadOnly)
  531. {
  532. DebugAssert(FLoading);
  533. FLoading = false;
  534. #ifndef DESIGN_ONLY
  535. if (Terminal->Active)
  536. {
  537. CancelEdit();
  538. if (ReloadOnly)
  539. {
  540. Reload(false);
  541. }
  542. else
  543. {
  544. Load(true);
  545. PathChanged();
  546. }
  547. if ((FDriveView != NULL) && FDriveView->Visible)
  548. {
  549. FDriveView->LoadDirectory();
  550. }
  551. }
  552. else
  553. {
  554. // Make sure file list is cleared, to remove all references to invalid
  555. // file objects. LoadFiles check for disconnected terminal, so no reloading
  556. // actually occures.
  557. Load(true);
  558. }
  559. #else
  560. DebugUsedParam(ReloadOnly);
  561. #endif
  562. }
  563. //---------------------------------------------------------------------------
  564. void __fastcall TUnixDirView::DoChangeDirectory(TObject * /*Sender*/)
  565. {
  566. #ifndef DESIGN_ONLY
  567. // Reload(false);
  568. #endif
  569. }
  570. //---------------------------------------------------------------------------
  571. bool __fastcall TUnixDirView::GetDirOK()
  572. {
  573. #ifndef DESIGN_ONLY
  574. return (Active && Terminal->Files->Loaded);
  575. #else
  576. return false;
  577. #endif
  578. }
  579. //---------------------------------------------------------------------------
  580. UnicodeString __fastcall TUnixDirView::GetPathName()
  581. {
  582. #ifndef DESIGN_ONLY
  583. if (DirOK) return Terminal->CurrentDirectory;
  584. else
  585. #endif
  586. return L"";
  587. }
  588. //---------------------------------------------------------------------------
  589. UnicodeString __fastcall TUnixDirView::GetPath()
  590. {
  591. #ifndef DESIGN_ONLY
  592. if (DirOK) return UnixIncludeTrailingBackslash(Terminal->CurrentDirectory);
  593. else
  594. #endif
  595. return L"";
  596. }
  597. //---------------------------------------------------------------------------
  598. void __fastcall TUnixDirView::SetPath(UnicodeString Value)
  599. {
  600. #ifndef DESIGN_ONLY
  601. Value = UnixExcludeTrailingBackslash(Value);
  602. if (Active && (Terminal->CurrentDirectory != Value))
  603. {
  604. PathChanging(true);
  605. Terminal->CurrentDirectory = Value;
  606. }
  607. #endif
  608. }
  609. //---------------------------------------------------------------------------
  610. #ifndef DESIGN_ONLY
  611. #define COMPARE_NUMBER(Num1, Num2) ( Num1 < Num2 ? -1 : ( Num1 > Num2 ? 1 : 0) )
  612. //---------------------------------------------------------------------------
  613. int __stdcall CompareFile(TListItem * Item1, TListItem * Item2, TUnixDirView * DirView)
  614. {
  615. DebugAssert((Item1 != NULL) && (Item2 != NULL));
  616. TRemoteFile * File1 = DebugNotNull((TRemoteFile *)(Item1->Data));
  617. TRemoteFile * File2 = DebugNotNull((TRemoteFile *)(Item2->Data));
  618. int Result;
  619. if (File1->IsParentDirectory && !File2->IsParentDirectory)
  620. {
  621. Result = -1;
  622. }
  623. else if (!File1->IsParentDirectory && File2->IsParentDirectory)
  624. {
  625. Result = 1;
  626. }
  627. else if (File1->IsDirectory && !File2->IsDirectory)
  628. {
  629. Result = -1;
  630. }
  631. else if (!File1->IsDirectory && File2->IsDirectory)
  632. {
  633. Result = 1;
  634. }
  635. else
  636. {
  637. Result = 0;
  638. switch (DirView->SortColumn)
  639. {
  640. case uvName:
  641. // fallback
  642. break;
  643. case uvSize:
  644. Result = COMPARE_NUMBER(File1->Size, File2->Size);
  645. break;
  646. case uvChanged:
  647. Result = COMPARE_NUMBER(File1->Modification, File2->Modification);
  648. break;
  649. case uvRights:
  650. Result = AnsiCompareText(File1->RightsStr, File2->RightsStr);
  651. break;
  652. case uvOwner:
  653. Result = File1->Owner.Compare(File2->Owner);
  654. break;
  655. case uvGroup:
  656. Result = File1->Group.Compare(File2->Group);
  657. break;
  658. case uvExt:
  659. // Duplicated in uvType branch
  660. if (!File1->IsDirectory)
  661. {
  662. Result = CompareLogicalText(File1->Extension, File2->Extension);
  663. }
  664. else
  665. {
  666. // fallback
  667. }
  668. break;
  669. case uvLinkTarget:
  670. Result = CompareLogicalText(File1->LinkTo, File2->LinkTo);
  671. break;
  672. case uvType:
  673. Result = CompareLogicalText(File1->TypeName, File2->TypeName);
  674. // fallback to uvExt
  675. if ((Result == 0) && !File1->IsDirectory)
  676. {
  677. Result = CompareLogicalText(File1->Extension, File2->Extension);
  678. }
  679. break;
  680. default:
  681. DebugFail();
  682. }
  683. if (Result == 0)
  684. {
  685. Result = CompareLogicalText(File1->FileName, File2->FileName);
  686. }
  687. if (!DirView->UnixColProperties->SortAscending)
  688. {
  689. Result = -Result;
  690. }
  691. }
  692. return Result;
  693. }
  694. //---------------------------------------------------------------------------
  695. #undef COMPARE_NUMBER
  696. #endif
  697. //---------------------------------------------------------------------------
  698. void __fastcall TUnixDirView::SortItems()
  699. {
  700. #ifndef DESIGN_ONLY
  701. DebugAssert(Terminal);
  702. if (HandleAllocated())
  703. {
  704. CustomSortItems(CompareFile);
  705. }
  706. #endif
  707. }
  708. //---------------------------------------------------------------------------
  709. bool __fastcall TUnixDirView::GetActive()
  710. {
  711. #ifndef DESIGN_ONLY
  712. return ((Terminal != NULL) && Terminal->Active);
  713. #else
  714. return false;
  715. #endif
  716. }
  717. //---------------------------------------------------------------------------
  718. void __fastcall TUnixDirView::DDDragDetect(int grfKeyState,
  719. const TPoint &DetectStart, const TPoint &Point, TDragDetectStatus DragStatus)
  720. {
  721. if ((DragStatus == ddsDrag) && (!Loading) && (MarkedCount > 0))
  722. {
  723. TCustomUnixDirView::DDDragDetect(grfKeyState, DetectStart, Point, DragStatus);
  724. }
  725. }
  726. //---------------------------------------------------------------------------
  727. void __fastcall TUnixDirView::SetAddParentDir(bool Value)
  728. {
  729. if (Value != AddParentDir)
  730. {
  731. #ifndef DESIGN_ONLY
  732. if (Terminal) Terminal->Files->IncludeParentDirectory = Value;
  733. #endif
  734. TCustomUnixDirView::SetAddParentDir(Value);
  735. }
  736. }
  737. //---------------------------------------------------------------------------
  738. bool __fastcall TUnixDirView::TargetHasDropHandler(TListItem * /* Item */, int /* Effect */)
  739. {
  740. return false;
  741. }
  742. //---------------------------------------------------------------------------
  743. void __fastcall TUnixDirView::DDChooseEffect(int grfKeyState, int &dwEffect)
  744. {
  745. if ((grfKeyState & (MK_CONTROL | MK_SHIFT)) == 0)
  746. {
  747. dwEffect = DROPEFFECT_Copy;
  748. }
  749. TCustomDirView::DDChooseEffect(grfKeyState, dwEffect);
  750. }
  751. //---------------------------------------------------------------------------
  752. void __fastcall TUnixDirView::SetDDAllowMove(bool value)
  753. {
  754. if (DDAllowMove != value)
  755. {
  756. DebugAssert(DragDropFilesEx);
  757. FDDAllowMove = value;
  758. DragDropFilesEx->SourceEffects = DragSourceEffects;
  759. }
  760. }
  761. //---------------------------------------------------------------------------
  762. TDropEffectSet __fastcall TUnixDirView::GetDragSourceEffects()
  763. {
  764. TDropEffectSet Result;
  765. Result << deCopy;
  766. if (DDAllowMove) Result << deMove;
  767. return Result;
  768. }
  769. //---------------------------------------------------------------------------
  770. void __fastcall TUnixDirView::ChangeDirectory(UnicodeString Path)
  771. {
  772. UnicodeString LastFile = L"";
  773. if (ItemFocused) LastFile = ItemFileName(ItemFocused);
  774. ClearItems();
  775. DoAnimation(true);
  776. #ifndef DESIGN_ONLY
  777. try
  778. {
  779. FDirLoadedAfterChangeDir = false;
  780. if (Path == HOMEDIRECTORY)
  781. {
  782. Terminal->HomeDirectory();
  783. }
  784. else
  785. // this works even with LockInHome
  786. if (Path == ROOTDIRECTORY)
  787. {
  788. Terminal->CurrentDirectory = ROOTDIRECTORY;
  789. }
  790. else
  791. {
  792. Terminal->ChangeDirectory(Path);
  793. }
  794. }
  795. __finally
  796. {
  797. // changing directory failed, so we load again old directory
  798. if (!FDirLoadedAfterChangeDir)
  799. {
  800. FSelectFile = LastFile;
  801. Reload(false);
  802. };
  803. }
  804. #endif
  805. }
  806. //---------------------------------------------------------------------------
  807. bool __fastcall TUnixDirView::CanEdit(TListItem* Item)
  808. {
  809. #ifndef DESIGN_ONLY
  810. DebugAssert(Terminal);
  811. return TCustomUnixDirView::CanEdit(Item) && Terminal->IsCapable[fcRename];
  812. #else
  813. DebugUsedParam(Item);
  814. return false;
  815. #endif
  816. }
  817. //---------------------------------------------------------------------------
  818. void __fastcall TUnixDirView::InternalEdit(const tagLVITEMW & HItem)
  819. {
  820. #ifndef DESIGN_ONLY
  821. TListItem *Item = GetItemFromHItem(HItem);
  822. ASSERT_VALID_ITEM;
  823. LoadEnabled = true;
  824. if (ITEMFILE->FileName != HItem.pszText)
  825. {
  826. FSelectFile = HItem.pszText;
  827. Terminal->RenameFile(ITEMFILE, HItem.pszText, true);
  828. }
  829. #else
  830. DebugUsedParam(HItem);
  831. #endif
  832. }
  833. //---------------------------------------------------------------------------
  834. int __fastcall TUnixDirView::HiddenCount()
  835. {
  836. return FHiddenCount;
  837. }
  838. //---------------------------------------------------------------------------
  839. int __fastcall TUnixDirView::FilteredCount()
  840. {
  841. return FFilteredCount;
  842. }
  843. //---------------------------------------------------------------------------
  844. void __fastcall TUnixDirView::CreateDirectory(UnicodeString DirName)
  845. {
  846. CreateDirectoryEx(DirName, NULL);
  847. }
  848. //---------------------------------------------------------------------------
  849. void __fastcall TUnixDirView::CreateDirectoryEx(UnicodeString DirName, const TRemoteProperties * Properties)
  850. {
  851. #ifndef DESIGN_ONLY
  852. DebugAssert(Terminal);
  853. // if file would be created in current directory, select it after reload
  854. if (UnixExtractFileName(DirName) == DirName)
  855. {
  856. FSelectFile = DirName;
  857. }
  858. Terminal->CreateDirectory(DirName, Properties);
  859. #else
  860. DebugUsedParam(Properties);
  861. #endif
  862. }
  863. //---------------------------------------------------------------------------
  864. bool __fastcall TUnixDirView::GetIsRoot()
  865. {
  866. #ifndef DESIGN_ONLY
  867. return (PathName == ROOTDIRECTORY);
  868. #else
  869. return false;
  870. #endif
  871. }
  872. //---------------------------------------------------------------------------
  873. TColor __fastcall TUnixDirView::ItemColor(TListItem * Item)
  874. {
  875. DebugAssert(Item);
  876. #ifndef DESIGN_ONLY
  877. if (DimmHiddenFiles && !Item->Selected && ITEMFILE->IsHidden)
  878. {
  879. return clGrayText;
  880. }
  881. else
  882. #else
  883. DebugUsedParam(Item);
  884. #endif
  885. {
  886. return (TColor)clDefaultItemColor;
  887. }
  888. }
  889. //---------------------------------------------------------------------------
  890. TDateTime __fastcall TUnixDirView::ItemFileTime(TListItem * Item,
  891. TDateTimePrecision & Precision)
  892. {
  893. DebugAssert(Item);
  894. #ifndef DESIGN_ONLY
  895. switch (ITEMFILE->ModificationFmt)
  896. {
  897. case mfNone:
  898. Precision = tpNone;
  899. break;
  900. case mfMDHM:
  901. Precision = tpMinute;
  902. break;
  903. case mfMDY:
  904. Precision = tpDay;
  905. break;
  906. case mfFull:
  907. default:
  908. Precision = tpSecond;
  909. break;
  910. }
  911. return ITEMFILE->Modification;
  912. #else
  913. DebugUsedParam(Item);
  914. Precision = tpSecond;
  915. return Now();
  916. #endif
  917. }
  918. //---------------------------------------------------------------------------
  919. void __fastcall TUnixDirView::SetShowInaccesibleDirectories(bool value)
  920. {
  921. if (FShowInaccesibleDirectories != value)
  922. {
  923. FShowInaccesibleDirectories = value;
  924. if (DirOK) Reload(false);
  925. }
  926. }
  927. //---------------------------------------------------------------------------
  928. void __fastcall TUnixDirView::AddToDragFileList(TFileList * FileList,
  929. TListItem * Item)
  930. {
  931. UnicodeString FileName = ItemFullFileName(Item);
  932. #ifndef DESIGN_ONLY
  933. if (OnDDDragFileName != NULL)
  934. {
  935. OnDDDragFileName(this, ITEMFILE, FileName);
  936. }
  937. #endif
  938. FileList->AddItem(NULL, FileName);
  939. }
  940. //---------------------------------------------------------------------------
  941. void __fastcall TUnixDirView::UpdatePathLabelCaption()
  942. {
  943. if (Terminal != NULL)
  944. {
  945. TCustomDirView::UpdatePathLabelCaption();
  946. }
  947. else
  948. {
  949. PathLabel->Caption = UnicodeString();
  950. PathLabel->Mask = UnicodeString();
  951. }
  952. }