1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
|
// *****************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: https://www.gnu.org/licenses/gpl-3.0 *
// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved *
// *****************************************************************************
//#include <set>
#include "tree_grid.h"
#include <wx/settings.h>
//#include <wx/menu.h>
#include <zen/i18n.h>
#include <zen/utf.h>
#include <zen/stl_tools.h>
#include <zen/format_unit.h>
#include <wx+/rtl.h>
#include <wx+/dc.h>
#include <wx+/context_menu.h>
#include <wx+/image_resources.h>
//#include <wx+/image_tools.h>
#include "../icon_buffer.h"
using namespace zen;
using namespace fff;
namespace
{
//let's NOT create wxWidgets objects statically:
const int PERCENTAGE_BAR_WIDTH_DIP = 60;
const int TREE_GRID_GAP_SIZE_DIP = 4;
inline wxColor getColorPercentBorder () { return {198, 198, 198}; }
inline wxColor getColorPercentBackground() { return {0xf8, 0xf8, 0xf8}; }
Zstring getFolderPairName(const FolderPair& folder)
{
if (folder.hasEquivalentItemNames())
return folder.getItemName<SelectSide::left>();
else
return folder.getItemName<SelectSide::left >() + Zstr(" | ") +
folder.getItemName<SelectSide::right>();
}
}
TreeView::TreeView(FolderComparison& folderCmp, const SortInfo& si) : folderCmp_(folderCmp), currentSort_(si)
{
//remove truly empty folder pairs as early as this: we want to distinguish single/multiple folder pair cases by looking at "folderCmp"
std::erase_if(folderCmp_, [](const SharedRef<BaseFolderPair>& baseObj)
{
return AFS::isNullPath(baseObj.ref().getAbstractPath<SelectSide::left >()) &&
AFS::isNullPath(baseObj.ref().getAbstractPath<SelectSide::right>());
});
}
inline
void TreeView::compressNode(Container& cont) //remove single-element sub-trees -> gain clarity + usability (call *after* inclusion check!!!)
{
if (cont.subDirs.empty()) //single files node
cont.firstFileId = nullptr;
#if 0 //let's not go overboard: empty folders should not be condensed => used for file exclusion filter; user expects to see them
if (cont.firstFileId == nullptr && //single dir node...
cont.subDirs.size() == 1 && //
cont.subDirs[0].firstFileId == nullptr && //...that is empty
cont.subDirs[0].subDirs.empty()) //
cont.subDirs.clear();
#endif
}
template <class Function> //(const FileSystemObject&) -> bool
void TreeView::extractVisibleSubtree(ContainerObject& conObj, //in
TreeView::Container& cont, //out
Function pred)
{
auto getBytes = [](const FilePair& file) //MSVC screws up miserably if we put this lambda into std::for_each
{
#if 0 //give accumulated bytes the semantics of a sync preview?
switch (getEffectiveSyncDir(file.getSyncOperation()))
{
//*INDENT-OFF*
case SyncDirection::none: break;
case SyncDirection::left: return file.getFileSize<SelectSide::right>();
case SyncDirection::right: return file.getFileSize<SelectSide::left>();
//*INDENT-ON*
}
#endif
//prefer file-browser semantics over sync preview (=> always show useful numbers, even for SyncDirection::none)
//discussion: https://freefilesync.org/forum/viewtopic.php?t=1595
return std::max(file.isEmpty<SelectSide::left >() ? 0 : file.getFileSize<SelectSide::left>(),
file.isEmpty<SelectSide::right>() ? 0 : file.getFileSize<SelectSide::right>());
};
cont.firstFileId = nullptr;
for (FilePair& file : conObj.refSubFiles())
if (pred(file))
{
cont.bytesNet += getBytes(file);
++cont.itemCountNet;
if (!cont.firstFileId)
cont.firstFileId = file.getId();
}
for (SymlinkPair& symlink : conObj.refSubLinks())
if (pred(symlink))
{
++cont.itemCountNet;
if (!cont.firstFileId)
cont.firstFileId = symlink.getId();
}
cont.bytesGross += cont.bytesNet;
cont.itemCountGross += cont.itemCountNet;
cont.subDirs.reserve(conObj.refSubFolders().size()); //avoid expensive reallocations!
for (FolderPair& folder : conObj.refSubFolders())
{
const bool included = pred(folder);
cont.subDirs.emplace_back(); //
auto& subDirCont = cont.subDirs.back();
TreeView::extractVisibleSubtree(folder, subDirCont, pred);
if (included)
++subDirCont.itemCountGross;
cont.bytesGross += subDirCont.bytesGross;
cont.itemCountGross += subDirCont.itemCountGross;
if (!included && !subDirCont.firstFileId && subDirCont.subDirs.empty())
cont.subDirs.pop_back();
else
{
subDirCont.objId = folder.getId();
compressNode(subDirCont);
}
}
}
namespace
{
//generate "nice" percentage numbers which precisely add up to 100
void calcPercentage(std::vector<std::pair<uint64_t, int*>>& workList)
{
uint64_t bytesTotal = 0;
for (const auto& [bytes, percentOut] : workList)
bytesTotal += bytes;
if (bytesTotal == 0U) //this case doesn't work with the error minimizing algorithm below
{
for (auto& [bytes, percentOut] : workList)
*percentOut = 0;
return;
}
int remainingPercent = 100;
for (auto& [bytes, percentOut] : workList)
{
*percentOut = static_cast<int>(bytes * 100U / bytesTotal); //round down
remainingPercent -= *percentOut;
}
assert(remainingPercent >= 0);
assert(remainingPercent < std::ssize(workList));
//distribute remaining percent so that overall error is minimized as much as possible:
remainingPercent = std::min(remainingPercent, static_cast<int>(workList.size()));
if (remainingPercent > 0)
{
std::nth_element(workList.begin(), workList.begin() + remainingPercent - 1, workList.end(),
[bytesTotal](const std::pair<uint64_t, int*>& lhs, const std::pair<uint64_t, int*>& rhs)
{
return lhs.first * 100U % bytesTotal > rhs.first * 100U % bytesTotal;
});
std::for_each(workList.begin(), workList.begin() + remainingPercent, [&](std::pair<uint64_t, int*>& pair) { ++*pair.second; });
}
}
}
template <bool ascending>
struct TreeView::LessShortName
{
bool operator()(const TreeLine& lhs, const TreeLine& rhs) const
{
//files last (irrespective of sort direction)
if (lhs.type == NodeType::files)
return false;
else if (rhs.type == NodeType::files)
return true;
if (lhs.type != rhs.type) //
return lhs.type < rhs.type; //shouldn't happen! root nodes not mixed with files or directories
switch (lhs.type)
{
case NodeType::root:
return makeSortDirection(LessNaturalSort() /*even on Linux*/,
std::bool_constant<ascending>())(utfTo<Zstring>(static_cast<const RootNodeImpl*>(lhs.node)->displayName),
utfTo<Zstring>(static_cast<const RootNodeImpl*>(rhs.node)->displayName));
case NodeType::folder:
{
const auto* folderL = dynamic_cast<const FolderPair*>(FileSystemObject::retrieve(static_cast<const DirNodeImpl*>(lhs.node)->objId));
const auto* folderR = dynamic_cast<const FolderPair*>(FileSystemObject::retrieve(static_cast<const DirNodeImpl*>(rhs.node)->objId));
if (!folderL) //might be pathologic, but it's covered
return false;
else if (!folderR)
return true;
return makeSortDirection(LessNaturalSort(), std::bool_constant<ascending>())(getFolderPairName(*folderL), getFolderPairName(*folderR));
}
case NodeType::files:
break;
}
assert(false);
return false; //:= all equal
}
};
template <bool ascending>
void TreeView::sortSingleLevel(std::vector<TreeLine>& items, ColumnTypeOverview columnType)
{
auto getBytes = [](const TreeLine& line) -> uint64_t
{
switch (line.type)
{
case NodeType::root:
case NodeType::folder:
return line.node->bytesGross;
case NodeType::files:
return line.node->bytesNet;
}
assert(false);
return 0U;
};
auto getCount = [](const TreeLine& line) -> int
{
switch (line.type)
{
case NodeType::root:
case NodeType::folder:
return line.node->itemCountGross;
case NodeType::files:
return line.node->itemCountNet;
}
assert(false);
return 0;
};
const auto lessBytes = [&](const TreeLine& lhs, const TreeLine& rhs) { return getBytes(lhs) < getBytes(rhs); };
const auto lessCount = [&](const TreeLine& lhs, const TreeLine& rhs) { return getCount(lhs) < getCount(rhs); };
switch (columnType)
{
case ColumnTypeOverview::folder:
std::sort(items.begin(), items.end(), LessShortName<ascending>());
break;
case ColumnTypeOverview::itemCount:
std::sort(items.begin(), items.end(), makeSortDirection(lessCount, std::bool_constant<ascending>()));
break;
case ColumnTypeOverview::bytes:
std::sort(items.begin(), items.end(), makeSortDirection(lessBytes, std::bool_constant<ascending>()));
break;
}
}
void TreeView::getChildren(const Container& cont, unsigned int level, std::vector<TreeLine>& output)
{
output.clear();
output.reserve(cont.subDirs.size() + 1); //keep pointers in "workList" valid
std::vector<std::pair<uint64_t, int*>> workList;
for (const DirNodeImpl& subDir : cont.subDirs)
{
output.push_back({level, 0, &subDir, NodeType::folder});
workList.emplace_back(subDir.bytesGross, &output.back().percent);
}
if (cont.firstFileId)
{
output.push_back({level, 0, &cont, NodeType::files});
workList.emplace_back(cont.bytesNet, &output.back().percent);
}
calcPercentage(workList);
if (currentSort_.ascending)
sortSingleLevel<true>(output, currentSort_.sortCol);
else
sortSingleLevel<false>(output, currentSort_.sortCol);
}
void TreeView::applySubView(std::vector<RootNodeImpl>&& newView)
{
//preserve current node expansion status
auto getHierAlias = [](const TreeView::TreeLine& tl) -> const ContainerObject*
{
switch (tl.type)
{
case NodeType::root:
return static_cast<const RootNodeImpl*>(tl.node)->baseFolder.get();
case NodeType::folder:
if (auto folder = dynamic_cast<const FolderPair*>(FileSystemObject::retrieve(static_cast<const DirNodeImpl*>(tl.node)->objId)))
return folder;
break;
case NodeType::files:
break; //none!!!
}
return nullptr;
};
std::unordered_set<const ContainerObject*> expandedNodes;
if (!flatTree_.empty())
{
auto it = flatTree_.begin();
for (auto itNext = flatTree_.begin() + 1; itNext != flatTree_.end(); ++itNext, ++it)
if (it->level < itNext->level)
if (auto conObj = getHierAlias(*it))
expandedNodes.insert(conObj);
}
//update view on full data
folderCmpView_.swap(newView); //newView may be an alias for folderCmpView! see sorting!
//set default flat tree
flatTree_.clear();
if (folderCmp_.size() == 1) //single folder pair case (empty pairs were already removed!) do NOT use folderCmpView for this check!
{
if (!folderCmpView_.empty()) //possibly empty!
getChildren(folderCmpView_[0], 0, flatTree_); //do not show root
}
else
{
//following is almost identical with TreeView::getChildren(): however we *cannot* reuse code here;
//this were only possible if we replaced "std::vector<RootNodeImpl>" with "Container"!
flatTree_.reserve(folderCmpView_.size()); //keep pointers in "workList" valid
std::vector<std::pair<uint64_t, int*>> workList;
for (const RootNodeImpl& root : folderCmpView_)
{
flatTree_.push_back({0, 0, &root, NodeType::root});
workList.emplace_back(root.bytesGross, &flatTree_.back().percent);
}
calcPercentage(workList);
if (currentSort_.ascending)
sortSingleLevel<true>(flatTree_, currentSort_.sortCol);
else
sortSingleLevel<false>(flatTree_, currentSort_.sortCol);
}
//restore node expansion status
for (size_t row = 0; row < flatTree_.size(); ++row) //flatTree size changes during loop!
{
const TreeLine& line = flatTree_[row];
if (auto conObj = getHierAlias(line))
if (expandedNodes.contains(conObj))
{
std::vector<TreeLine> newLines;
getChildren(*line.node, line.level + 1, newLines);
flatTree_.insert(flatTree_.begin() + row + 1, newLines.begin(), newLines.end());
}
}
}
template <class Predicate>
void TreeView::updateView(Predicate pred)
{
//update view on full data
std::vector<RootNodeImpl> newView;
newView.reserve(folderCmp_.size()); //avoid expensive reallocations!
for (SharedRef<BaseFolderPair>& baseObj : folderCmp_)
{
newView.emplace_back();
RootNodeImpl& root = newView.back();
this->extractVisibleSubtree(baseObj.ref(), root, pred); //"this->" is bogus for a static method, but GCC screws this one up
//warning: the following lines are almost 1:1 copy from extractVisibleSubtree:
//however we *cannot* reuse code here; this were only possible if we replaced "std::vector<RootNodeImpl>" with "Container"!
if (!root.firstFileId && root.subDirs.empty())
newView.pop_back();
else
{
root.baseFolder = baseObj.ptr();
root.displayName = getShortDisplayNameForFolderPair(baseObj.ref().getAbstractPath<SelectSide::left >(),
baseObj.ref().getAbstractPath<SelectSide::right>());
this->compressNode(root); //"this->" required by two-pass lookup as enforced by GCC 4.7
}
}
lastViewFilterPred_ = pred;
applySubView(std::move(newView));
}
void TreeView::setSortDirection(ColumnTypeOverview colType, bool ascending) //apply permanently!
{
currentSort_ = SortInfo{colType, ascending};
//reapply current view
applySubView(std::move(folderCmpView_));
}
TreeView::NodeStatus TreeView::getStatus(size_t row) const
{
if (row < flatTree_.size())
{
if (row + 1 < flatTree_.size() && flatTree_[row + 1].level > flatTree_[row].level)
return TreeView::STATUS_EXPANDED;
//it's either reduced or empty
switch (flatTree_[row].type)
{
case NodeType::root:
case NodeType::folder:
return flatTree_[row].node->firstFileId || !flatTree_[row].node->subDirs.empty() ? TreeView::STATUS_REDUCED : TreeView::STATUS_EMPTY;
case NodeType::files:
return TreeView::STATUS_EMPTY;
}
}
return TreeView::STATUS_EMPTY;
}
void TreeView::expandNode(size_t row)
{
if (getStatus(row) != TreeView::STATUS_REDUCED)
{
assert(false);
return;
}
if (row < flatTree_.size())
{
std::vector<TreeLine> newLines;
switch (flatTree_[row].type)
{
case NodeType::root:
case NodeType::folder:
getChildren(*flatTree_[row].node, flatTree_[row].level + 1, newLines);
break;
case NodeType::files:
break;
}
flatTree_.insert(flatTree_.begin() + row + 1, newLines.begin(), newLines.end());
}
}
void TreeView::reduceNode(size_t row)
{
if (row < flatTree_.size())
{
const unsigned int parentLevel = flatTree_[row].level;
bool done = false;
flatTree_.erase(std::remove_if(flatTree_.begin() + row + 1, flatTree_.end(),
[&](const TreeLine& line) -> bool
{
if (done)
return false;
if (line.level > parentLevel)
return true;
else
{
done = true;
return false;
}
}), flatTree_.end());
}
}
ptrdiff_t TreeView::getParent(size_t row) const
{
if (row < flatTree_.size())
{
const auto level = flatTree_[row].level;
while (row-- > 0)
if (flatTree_[row].level < level)
return row;
}
return -1;
}
void TreeView::applyDifferenceFilter(bool showExcluded,
bool leftOnlyFilesActive,
bool rightOnlyFilesActive,
bool leftNewerFilesActive,
bool rightNewerFilesActive,
bool differentFilesActive,
bool equalFilesActive,
bool conflictFilesActive)
{
updateView([showExcluded, //make sure the predicate can be stored safely!
leftOnlyFilesActive,
rightOnlyFilesActive,
leftNewerFilesActive,
rightNewerFilesActive,
differentFilesActive,
equalFilesActive,
conflictFilesActive](const FileSystemObject& fsObj) -> bool
{
if (!fsObj.isActive() && !showExcluded)
return false;
switch (fsObj.getCategory())
{
case FILE_LEFT_ONLY:
return leftOnlyFilesActive;
case FILE_RIGHT_ONLY:
return rightOnlyFilesActive;
case FILE_LEFT_NEWER:
return leftNewerFilesActive;
case FILE_RIGHT_NEWER:
return rightNewerFilesActive;
case FILE_DIFFERENT_CONTENT:
return differentFilesActive;
case FILE_EQUAL:
return equalFilesActive;
case FILE_RENAMED:
case FILE_CONFLICT:
case FILE_TIME_INVALID:
return conflictFilesActive;
}
assert(false);
return true;
});
}
void TreeView::applyActionFilter(bool showExcluded,
bool syncCreateLeftActive,
bool syncCreateRightActive,
bool syncDeleteLeftActive,
bool syncDeleteRightActive,
bool syncDirOverwLeftActive,
bool syncDirOverwRightActive,
bool syncDirNoneActive,
bool syncEqualActive,
bool conflictFilesActive)
{
updateView([showExcluded, //make sure the predicate can be stored safely!
syncCreateLeftActive,
syncCreateRightActive,
syncDeleteLeftActive,
syncDeleteRightActive,
syncDirOverwLeftActive,
syncDirOverwRightActive,
syncDirNoneActive,
syncEqualActive,
conflictFilesActive](const FileSystemObject& fsObj) -> bool
{
if (!fsObj.isActive() && !showExcluded)
return false;
switch (fsObj.getSyncOperation())
{
case SO_CREATE_LEFT:
return syncCreateLeftActive;
case SO_CREATE_RIGHT:
return syncCreateRightActive;
case SO_DELETE_LEFT:
return syncDeleteLeftActive;
case SO_DELETE_RIGHT:
return syncDeleteRightActive;
case SO_OVERWRITE_RIGHT:
case SO_RENAME_RIGHT:
case SO_MOVE_RIGHT_FROM:
case SO_MOVE_RIGHT_TO:
return syncDirOverwRightActive;
case SO_OVERWRITE_LEFT:
case SO_RENAME_LEFT:
case SO_MOVE_LEFT_FROM:
case SO_MOVE_LEFT_TO:
return syncDirOverwLeftActive;
case SO_DO_NOTHING:
return syncDirNoneActive;
case SO_EQUAL:
return syncEqualActive;
case SO_UNRESOLVED_CONFLICT:
return conflictFilesActive;
}
assert(false);
return true;
});
}
std::unique_ptr<TreeView::Node> TreeView::getLine(size_t row) const
{
if (row < flatTree_.size())
{
const auto level = flatTree_[row].level;
const int percent = flatTree_[row].percent;
switch (flatTree_[row].type)
{
case NodeType::root:
{
const auto& root = *static_cast<const TreeView::RootNodeImpl*>(flatTree_[row].node);
return std::make_unique<TreeView::RootNode>(percent, root.bytesGross, root.itemCountGross, getStatus(row), *root.baseFolder, root.displayName);
}
break;
case NodeType::folder:
{
const auto* dir = static_cast<const TreeView::DirNodeImpl*>(flatTree_[row].node);
if (auto folder = dynamic_cast<FolderPair*>(FileSystemObject::retrieve(dir->objId)))
return std::make_unique<TreeView::DirNode>(percent, dir->bytesGross, dir->itemCountGross, level, getStatus(row), *folder);
}
break;
case NodeType::files:
{
const auto* parentDir = flatTree_[row].node;
if (FileSystemObject* firstFile = FileSystemObject::retrieve(parentDir->firstFileId))
{
std::vector<FileSystemObject*> filesAndLinks;
ContainerObject& parent = firstFile->parent();
//lazy evaluation: recheck "lastViewFilterPred" again rather than buffer and bloat "lastViewFilterPred"
for (FileSystemObject& fsObj : parent.refSubFiles())
if (lastViewFilterPred_(fsObj))
filesAndLinks.push_back(&fsObj);
for (FileSystemObject& fsObj : parent.refSubLinks())
if (lastViewFilterPred_(fsObj))
filesAndLinks.push_back(&fsObj);
return std::make_unique<TreeView::FilesNode>(percent, parentDir->bytesNet, parentDir->itemCountNet, level, filesAndLinks);
}
}
break;
}
}
return nullptr;
}
//##########################################################################################################
namespace
{
wxColor getColorForLevel(size_t level)
{
switch (level % 12)
{
//*INDENT-OFF*
case 0: return {0xcc, 0xcc, 0xff};
case 1: return {0xcc, 0xff, 0xcc};
case 2: return {0xff, 0xff, 0x99};
case 3: return {0xdd, 0xdd, 0xdd};
case 4: return {0xff, 0xcc, 0xff};
case 5: return {0x99, 0xff, 0xcc};
case 6: return {0xcc, 0xcc, 0x99};
case 7: return {0xff, 0xcc, 0xcc};
case 8: return {0xcc, 0xff, 0x99};
case 9: return {0xff, 0xff, 0xcc};
case 10: return {0xcc, 0xff, 0xff};
case 11: return {0xff, 0xcc, 0x99};
//*INDENT-ON*
}
assert(false);
return *wxBLACK;
}
class GridDataTree : private wxEvtHandler, public GridData
{
public:
GridDataTree(Grid& grid) :
widthNodeIcon_(screenToWxsize(IconBuffer::getPixSize(IconBuffer::IconSize::small))),
widthLevelStep_(widthNodeIcon_),
widthNodeStatus_(screenToWxsize(loadImage("node_expanded").GetWidth())),
rootIcon_(loadImage("root_folder", wxsizeToScreen(widthNodeIcon_))),
grid_(grid)
{
grid.Bind(wxEVT_KEY_DOWN, [this](wxKeyEvent& event) { onKeyDown(event); });
grid.Bind(EVENT_GRID_MOUSE_LEFT_DOWN, [this](GridClickEvent& event) { onMouseLeft (event); });
grid.Bind(EVENT_GRID_MOUSE_LEFT_DOUBLE, [this](GridClickEvent& event) { onMouseLeftDouble(event); });
grid.Bind(EVENT_GRID_COL_LABEL_MOUSE_RIGHT, [this](GridLabelClickEvent& event) { onGridLabelContext (event); });
grid.Bind(EVENT_GRID_COL_LABEL_MOUSE_LEFT, [this](GridLabelClickEvent& event) { onGridLabelLeftClick(event); });
}
void setData(FolderComparison& folderCmp)
{
const TreeView::SortInfo sortCfg = treeDataView_.ref().getSortConfig(); //preserve!
treeDataView_ = makeSharedRef<TreeView>(); //clear old data view first! avoid memory peaks!
treeDataView_ = makeSharedRef<TreeView>(folderCmp, sortCfg);
}
const TreeView& getDataView() const { return treeDataView_.ref(); }
/**/ TreeView& getDataView() { return treeDataView_.ref(); }
void setShowPercentage(bool value) { showPercentBar_ = value; grid_.Refresh(); }
bool getShowPercentage() const { return showPercentBar_; }
private:
size_t getRowCount() const override { return getDataView().rowsTotal(); }
std::wstring getToolTip(size_t row, ColumnType colType, HoverArea rowHover) override
{
switch (static_cast<ColumnTypeOverview>(colType))
{
case ColumnTypeOverview::folder:
if (std::unique_ptr<TreeView::Node> node = getDataView().getLine(row))
if (const TreeView::RootNode* root = dynamic_cast<const TreeView::RootNode*>(node.get()))
{
const std::wstring& dirLeft = AFS::getDisplayPath(root->baseFolder.getAbstractPath<SelectSide::left >());
const std::wstring& dirRight = AFS::getDisplayPath(root->baseFolder.getAbstractPath<SelectSide::right>());
if (dirLeft.empty())
return dirRight;
else if (dirRight.empty())
return dirLeft;
return dirLeft + /*L' ' + EM_DASH + */ L'\n' + dirRight;
}
break;
case ColumnTypeOverview::itemCount:
case ColumnTypeOverview::bytes:
break;
}
return std::wstring();
}
std::wstring getValue(size_t row, ColumnType colType) const override
{
if (std::unique_ptr<TreeView::Node> node = getDataView().getLine(row))
switch (static_cast<ColumnTypeOverview>(colType))
{
case ColumnTypeOverview::folder:
if (const TreeView::RootNode* root = dynamic_cast<const TreeView::RootNode*>(node.get()))
return root->displayName;
else if (const TreeView::DirNode* dir = dynamic_cast<const TreeView::DirNode*>(node.get()))
return utfTo<std::wstring>(getFolderPairName(dir->folder));
else if (dynamic_cast<const TreeView::FilesNode*>(node.get()))
return _("Files");
break;
case ColumnTypeOverview::itemCount:
return formatNumber(node->itemCount_);
case ColumnTypeOverview::bytes:
return formatFilesizeShort(node->bytes_);
}
return std::wstring();
}
void renderColumnLabel(wxDC& dc, const wxRect& rect, ColumnType colType, bool enabled, bool highlighted) override
{
const auto colTypeTree = static_cast<ColumnTypeOverview>(colType);
const wxRect rectInner = drawColumnLabelBackground(dc, rect, highlighted);
wxRect rectRemain = rectInner;
rectRemain.x += getColumnGapLeft();
rectRemain.width -= getColumnGapLeft();
drawColumnLabelText(dc, rectRemain, getColumnLabel(colType), enabled);
if (const auto [sortCol, ascending] = getDataView().getSortConfig();
colTypeTree == sortCol)
{
const wxImage sortMarker = loadImage(ascending ? "sort_ascending" : "sort_descending");
drawBitmapRtlNoMirror(dc, enabled ? sortMarker : sortMarker.ConvertToDisabled(), rectInner, wxALIGN_CENTER_HORIZONTAL);
}
}
void renderRowBackgound(wxDC& dc, const wxRect& rect, size_t row, bool enabled, bool selected, HoverArea rowHover) override
{
if (!enabled || !selected)
; //clearArea(dc, rect, wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); -> already the default
else
GridData::renderRowBackgound(dc, rect, row, true /*enabled*/, true /*selected*/, rowHover);
}
enum class HoverAreaTree
{
node,
item,
};
void renderCell(wxDC& dc, const wxRect& rect, size_t row, ColumnType colType, bool enabled, bool selected, HoverArea rowHover) override
{
wxDCTextColourChanger textColor(dc);
if (enabled && selected) //accessibility: always set *both* foreground AND background colors!
textColor.Set(*wxBLACK);
//wxRect rectTmp= drawCellBorder(dc, rect);
wxRect rectTmp = rect;
// Partitioning:
// ________________________________________________________________________________
// | space | gap | percentage bar | 2 x gap | node status | gap |icon | gap | rest |
// --------------------------------------------------------------------------------
// -> synchronize renderCell() <-> getBestSize() <-> getMouseHover()
if (static_cast<ColumnTypeOverview>(colType) == ColumnTypeOverview::folder)
{
if (std::unique_ptr<TreeView::Node> node = getDataView().getLine(row))
{
auto drawIcon = [&](wxImage icon, const wxRect& rectIcon, bool drawActive)
{
if (!drawActive)
icon = icon.ConvertToGreyscale(1.0 / 3, 1.0 / 3, 1.0 / 3); //treat all channels equally!
if (!enabled)
icon = icon.ConvertToDisabled();
drawBitmapRtlNoMirror(dc, icon, rectIcon, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
};
//consume space
rectTmp.x += static_cast<int>(node->level_) * widthLevelStep_;
rectTmp.width -= static_cast<int>(node->level_) * widthLevelStep_;
rectTmp.x += gapSize_;
rectTmp.width -= gapSize_;
if (rectTmp.width > 0)
{
//percentage bar
if (showPercentBar_)
{
wxRect areaPerc(rectTmp.x, rectTmp.y + dipToWxsize(2), percentageBarWidth_, rectTmp.height - dipToWxsize(4));
//clear background
drawFilledRectangle(dc, areaPerc, getColorPercentBackground(), getColorPercentBorder(), dipToWxsize(1));
areaPerc.Deflate(dipToWxsize(1));
//inner area
wxRect areaPercTmp = areaPerc;
areaPercTmp.width = numeric::intDivRound(areaPercTmp.width * node->percent_, 100);
clearArea(dc, areaPercTmp, getColorForLevel(node->level_));
wxDCTextColourChanger textColorPercent(dc, *wxBLACK); //accessibility: always set both foreground AND background colors!
drawCellText(dc, areaPerc, numberTo<std::wstring>(node->percent_) + L"%", wxALIGN_CENTER);
rectTmp.x += percentageBarWidth_ + 2 * gapSize_;
rectTmp.width -= percentageBarWidth_ + 2 * gapSize_;
}
if (rectTmp.width > 0)
{
//node status
const bool drawMouseHover = static_cast<HoverAreaTree>(rowHover) == HoverAreaTree::node;
switch (node->status_)
{
case TreeView::STATUS_EXPANDED:
drawIcon(loadImage(drawMouseHover ? "node_expanded_hover" : "node_expanded"), rectTmp, true /*drawActive*/);
break;
case TreeView::STATUS_REDUCED:
drawIcon(loadImage(drawMouseHover ? "node_reduced_hover" : "node_reduced"), rectTmp, true /*drawActive*/);
break;
case TreeView::STATUS_EMPTY:
break;
}
rectTmp.x += widthNodeStatus_ + gapSize_;
rectTmp.width -= widthNodeStatus_ + gapSize_;
if (rectTmp.width > 0)
{
wxImage nodeIcon;
bool isActive = true;
//icon
if (dynamic_cast<const TreeView::RootNode*>(node.get()))
nodeIcon = rootIcon_;
else if (auto dir = dynamic_cast<const TreeView::DirNode*>(node.get()))
{
nodeIcon = dirIcon_;
isActive = dir->folder.isActive();
}
else if (dynamic_cast<const TreeView::FilesNode*>(node.get()))
nodeIcon = fileIcon_;
drawIcon(nodeIcon, rectTmp, isActive);
if (static_cast<HoverAreaTree>(rowHover) == HoverAreaTree::item)
drawRectangleBorder(dc, rectTmp, *wxBLUE, dipToWxsize(1));
rectTmp.x += widthNodeIcon_ + gapSize_;
rectTmp.width -= widthNodeIcon_ + gapSize_;
if (rectTmp.width > 0)
{
if (!isActive)
textColor.Set(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT));
drawCellText(dc, rectTmp, getValue(row, colType), wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
}
}
}
}
}
}
else
{
int alignment = wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL;
//have file size and item count right-justified (but don't change for RTL languages)
if ((static_cast<ColumnTypeOverview>(colType) == ColumnTypeOverview::bytes ||
static_cast<ColumnTypeOverview>(colType) == ColumnTypeOverview::itemCount) && grid_.GetLayoutDirection() != wxLayout_RightToLeft)
{
rectTmp.width -= 2 * gapSize_;
alignment = wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL;
}
else //left-justified
{
rectTmp.x += 2 * gapSize_;
rectTmp.width -= 2 * gapSize_;
}
drawCellText(dc, rectTmp, getValue(row, colType), alignment);
}
}
int getBestSize(wxDC& dc, size_t row, ColumnType colType) override
{
// -> synchronize renderCell() <-> getBestSize() <-> getMouseHover()
if (static_cast<ColumnTypeOverview>(colType) == ColumnTypeOverview::folder)
{
if (std::unique_ptr<TreeView::Node> node = getDataView().getLine(row))
return node->level_ * widthLevelStep_ + gapSize_ + (showPercentBar_ ? percentageBarWidth_ + 2 * gapSize_ : 0) + widthNodeStatus_ + gapSize_
+ widthNodeIcon_ + gapSize_ + dc.GetTextExtent(getValue(row, colType)).GetWidth() +
gapSize_; //additional gap from right
else
return 0;
}
else
return 2 * gapSize_ + dc.GetTextExtent(getValue(row, colType)).GetWidth() +
2 * gapSize_; //include gap from right!
}
HoverArea getMouseHover(wxDC& dc, size_t row, ColumnType colType, int cellRelativePosX, int cellWidth) override
{
if (static_cast<ColumnTypeOverview>(colType) == ColumnTypeOverview::folder)
if (std::unique_ptr<TreeView::Node> node = getDataView().getLine(row))
{
const int nodeStatusXFirst = static_cast<int>(node->level_) * widthLevelStep_ + gapSize_ + (showPercentBar_ ? percentageBarWidth_ + 2 * gapSize_ : 0);
const int nodeStatusXLast = nodeStatusXFirst + widthNodeStatus_;
// -> synchronize renderCell() <-> getBestSize() <-> getMouseHover()
const int tolerance = dipToWxsize(5);
if (nodeStatusXFirst - tolerance <= cellRelativePosX && cellRelativePosX < nodeStatusXLast + tolerance)
return static_cast<HoverArea>(HoverAreaTree::node);
}
return static_cast<HoverArea>(HoverAreaTree::item);
}
std::wstring getColumnLabel(ColumnType colType) const override
{
switch (static_cast<ColumnTypeOverview>(colType))
{
case ColumnTypeOverview::folder:
return _("Folder");
case ColumnTypeOverview::itemCount:
return _("Items");
case ColumnTypeOverview::bytes:
return _("Size");
}
return std::wstring();
}
void onMouseLeft(GridClickEvent& event)
{
switch (static_cast<HoverAreaTree>(event.hoverArea_))
{
case HoverAreaTree::node:
switch (getDataView().getStatus(event.row_))
{
case TreeView::STATUS_EXPANDED:
return reduceNode(event.row_);
case TreeView::STATUS_REDUCED:
return expandNode(event.row_);
case TreeView::STATUS_EMPTY:
break;
}
break;
case HoverAreaTree::item:
break;
}
event.Skip();
}
void onMouseLeftDouble(GridClickEvent& event)
{
switch (getDataView().getStatus(event.row_))
{
case TreeView::STATUS_EXPANDED:
return reduceNode(event.row_);
case TreeView::STATUS_REDUCED:
return expandNode(event.row_);
case TreeView::STATUS_EMPTY:
break;
}
event.Skip();
}
void onKeyDown(wxKeyEvent& event)
{
int keyCode = event.GetKeyCode();
if (grid_.GetLayoutDirection() == wxLayout_RightToLeft)
{
if (keyCode == WXK_LEFT || keyCode == WXK_NUMPAD_LEFT)
keyCode = WXK_RIGHT;
else if (keyCode == WXK_RIGHT || keyCode == WXK_NUMPAD_RIGHT)
keyCode = WXK_LEFT;
}
const size_t rowCount = grid_.getRowCount();
if (rowCount == 0) return;
const size_t row = grid_.getGridCursor();
if (event.ShiftDown())
;
else if (event.ControlDown())
;
else
switch (keyCode)
{
case WXK_LEFT:
case WXK_NUMPAD_LEFT:
case WXK_NUMPAD_SUBTRACT: //https://docs.microsoft.com/en-us/previous-versions/windows/desktop/dnacc/guidelines-for-keyboard-user-interface-design#windows-shortcut-keys
switch (getDataView().getStatus(row))
{
case TreeView::STATUS_EXPANDED:
return reduceNode(row);
case TreeView::STATUS_REDUCED:
case TreeView::STATUS_EMPTY:
const int parentRow = getDataView().getParent(row);
if (parentRow >= 0)
grid_.setGridCursor(parentRow, GridEventPolicy::allow);
break;
}
return; //swallow event
case WXK_RIGHT:
case WXK_NUMPAD_RIGHT:
case WXK_NUMPAD_ADD:
switch (getDataView().getStatus(row))
{
case TreeView::STATUS_EXPANDED:
grid_.setGridCursor(std::min(rowCount - 1, row + 1), GridEventPolicy::allow);
break;
case TreeView::STATUS_REDUCED:
return expandNode(row);
case TreeView::STATUS_EMPTY:
break;
}
return; //swallow event
}
event.Skip();
}
void onGridLabelContext(GridLabelClickEvent& event)
{
ContextMenu menu;
//--------------------------------------------------------------------------------------------------------
menu.addCheckBox(_("Percentage"), [this] { setShowPercentage(!getShowPercentage()); }, getShowPercentage());
//--------------------------------------------------------------------------------------------------------
auto toggleColumn = [&](ColumnType ct)
{
auto colAttr = grid_.getColumnConfig();
Grid::ColAttributes* caFolderName = nullptr;
Grid::ColAttributes* caToggle = nullptr;
for (Grid::ColAttributes& ca : colAttr)
if (ca.type == static_cast<ColumnType>(ColumnTypeOverview::folder))
caFolderName = &ca;
else if (ca.type == ct)
caToggle = &ca;
assert(caFolderName && caFolderName->stretch > 0 && caFolderName->visible);
assert(caToggle && caToggle->stretch == 0);
if (caFolderName && caToggle)
{
caToggle->visible = !caToggle->visible;
//take width of newly visible column from stretched folder name column
caFolderName->offset -= caToggle->visible ? caToggle->offset : -caToggle->offset;
grid_.setColumnConfig(colAttr);
}
};
for (const Grid::ColAttributes& ca : grid_.getColumnConfig())
{
menu.addCheckBox(getColumnLabel(ca.type), [ct = ca.type, toggleColumn] { toggleColumn(ct); },
ca.visible, ca.type != static_cast<ColumnType>(ColumnTypeOverview::folder)); //do not allow user to hide file name column!
}
//--------------------------------------------------------------------------------------------------------
menu.addSeparator();
auto setDefaultColumns = [&]
{
setShowPercentage(overviewPanelShowPercentageDefault);
grid_.setColumnConfig(convertColAttributes(getOverviewDefaultColAttribs(), getOverviewDefaultColAttribs()));
};
menu.addItem(_("&Default"), setDefaultColumns, loadImage("reset_sicon")); //'&' -> reuse text from "default" buttons elsewhere
//--------------------------------------------------------------------------------------------------------
menu.popup(grid_, {event.mousePos_.x, grid_.getColumnLabelHeight()});
//event.Skip();
}
void onGridLabelLeftClick(GridLabelClickEvent& event)
{
const auto colTypeTree = static_cast<ColumnTypeOverview>(event.colType_);
bool sortAscending = getDefaultSortDirection(colTypeTree);
const auto [sortCol, ascending] = getDataView().getSortConfig();
if (sortCol == colTypeTree)
sortAscending = !ascending;
getDataView().setSortDirection(colTypeTree, sortAscending);
grid_.Refresh(); //just in case, but setSortDirection() should not change grid size
grid_.clearSelection(GridEventPolicy::allow);
}
void expandNode(size_t row)
{
getDataView().expandNode(row);
grid_.Refresh(); //implicitly clears selection (changed row count after expand)
grid_.setGridCursor(row, GridEventPolicy::allow);
//grid_.autoSizeColumns(); -> doesn't look as good as expected
}
void reduceNode(size_t row)
{
getDataView().reduceNode(row);
grid_.Refresh();
grid_.setGridCursor(row, GridEventPolicy::allow);
}
SharedRef<TreeView> treeDataView_ = makeSharedRef<TreeView>();
const int gapSize_ = dipToWxsize(TREE_GRID_GAP_SIZE_DIP);
const int percentageBarWidth_ = dipToWxsize(PERCENTAGE_BAR_WIDTH_DIP);
const wxImage fileIcon_ = IconBuffer::genericFileIcon(IconBuffer::IconSize::small);
const wxImage dirIcon_ = IconBuffer::genericDirIcon (IconBuffer::IconSize::small);
const int widthNodeIcon_;
const int widthLevelStep_;
const int widthNodeStatus_;
const wxImage rootIcon_;
Grid& grid_;
bool showPercentBar_ = true;
};
}
void treegrid::init(Grid& grid)
{
grid.setDataProvider(std::make_shared<GridDataTree>(grid));
grid.showRowLabel(false);
const int rowHeight = std::max(screenToWxsize(IconBuffer::getPixSize(IconBuffer::IconSize::small)) + dipToWxsize(2), //1 extra pixel on top/bottom; dearly needed on OS X!
grid.getMainWin().GetCharHeight()); //seems to already include 3 margin pixels on top/bottom (consider percentage area)
grid.setRowHeight(rowHeight);
}
void treegrid::setData(zen::Grid& grid, FolderComparison& folderCmp)
{
if (auto* prov = dynamic_cast<GridDataTree*>(grid.getDataProvider()))
return prov->setData(folderCmp);
throw std::runtime_error(std::string(__FILE__) + '[' + numberTo<std::string>(__LINE__) + "] treegrid was not initialized.");
}
TreeView& treegrid::getDataView(Grid& grid)
{
if (auto* prov = dynamic_cast<GridDataTree*>(grid.getDataProvider()))
return prov->getDataView();
throw std::runtime_error(std::string(__FILE__) + '[' + numberTo<std::string>(__LINE__) + "] treegrid was not initialized.");
}
void treegrid::setShowPercentage(Grid& grid, bool value)
{
if (auto* prov = dynamic_cast<GridDataTree*>(grid.getDataProvider()))
prov->setShowPercentage(value);
else
assert(false);
}
bool treegrid::getShowPercentage(const Grid& grid)
{
if (auto* prov = dynamic_cast<const GridDataTree*>(grid.getDataProvider()))
return prov->getShowPercentage();
assert(false);
return true;
}
|