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
|
/*
* Copyright (C) 1999-2002 Bernd Gehrmann <bernd@mail.berlios.de>
* Copyright (c) 2003-2008 André Wöbbeking <Woebbeking@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "updateview.h"
#include <set>
#include <KLocalizedString>
#include <QHeaderView>
#include <kconfiggroup.h>
#include <qapplication.h>
#include <qfileinfo.h>
#include <qstack.h>
#include "cervisiasettings.h"
#include "updateview_items.h"
#include "updateview_visitors.h"
using Cervisia::Entry;
using Cervisia::EntryStatus;
UpdateView::UpdateView(KConfig &partConfig, QWidget *parent)
: QTreeWidget(parent)
, m_partConfig(partConfig)
, m_unfoldingTree(false)
{
setAllColumnsShowFocus(true);
setUniformRowHeights(true);
setRootIsDecorated(false);
header()->setSortIndicatorShown(true);
setSortingEnabled(true);
setSelectionMode(QAbstractItemView::ExtendedSelection);
setHeaderLabels(QStringList() << i18n("File Name") << i18n("Status") << i18n("Revision") << i18n("Tag/Date") << i18n("Timestamp"));
header()->resizeSection(0, 280);
header()->resizeSection(1, 90);
header()->resizeSection(2, 70);
header()->resizeSection(3, 90);
header()->resizeSection(4, 120);
setFilter(NoFilter);
connect(this, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this, SLOT(itemExecuted(QTreeWidgetItem *, int)));
connect(this, SIGNAL(itemExpanded(QTreeWidgetItem *)), this, SLOT(itemExpandedSlot(QTreeWidgetItem *)));
KConfigGroup cg(&m_partConfig, "UpdateView");
QByteArray state = cg.readEntry<QByteArray>("Columns", QByteArray());
header()->restoreState(state);
}
UpdateView::~UpdateView()
{
KConfigGroup cg(&m_partConfig, "UpdateView");
cg.writeEntry("Columns", header()->saveState());
}
void UpdateView::setFilter(Filter filter)
{
filt = filter;
if (auto item = static_cast<UpdateDirItem *>(topLevelItem(0))) {
ApplyFilterVisitor applyFilterVisitor(filter);
item->accept(applyFilterVisitor);
}
}
UpdateView::Filter UpdateView::filter() const
{
return filt;
}
// returns true iff exactly one UpdateFileItem is selected
bool UpdateView::hasSingleSelection() const
{
const QList<QTreeWidgetItem *> &listSelectedItems(selectedItems());
return (listSelectedItems.count() == 1) && isFileItem(listSelectedItems.first());
}
void UpdateView::getSingleSelection(QString *filename, QString *revision) const
{
const QList<QTreeWidgetItem *> &listSelectedItems(selectedItems());
QString tmpFileName;
QString tmpRevision;
if ((listSelectedItems.count() == 1) && isFileItem(listSelectedItems.first())) {
auto fileItem(static_cast<UpdateFileItem *>(listSelectedItems.first()));
tmpFileName = fileItem->filePath();
tmpRevision = fileItem->entry().m_revision;
}
*filename = tmpFileName;
if (revision)
*revision = tmpRevision;
}
QStringList UpdateView::multipleSelection() const
{
QStringList res;
const QList<QTreeWidgetItem *> &listSelectedItems(selectedItems());
foreach (QTreeWidgetItem *item, listSelectedItems) {
if (!item->isHidden())
res.append(static_cast<UpdateItem *>(item)->filePath());
}
return res;
}
QStringList UpdateView::fileSelection() const
{
QStringList res;
const QList<QTreeWidgetItem *> &listSelectedItems(selectedItems());
foreach (QTreeWidgetItem *item, listSelectedItems) {
if (isFileItem(item) && !item->isHidden())
res.append(static_cast<UpdateFileItem *>(item)->filePath());
}
return res;
}
const QColor &UpdateView::conflictColor() const
{
return m_conflictColor;
}
const QColor &UpdateView::localChangeColor() const
{
return m_localChangeColor;
}
const QColor &UpdateView::remoteChangeColor() const
{
return m_remoteChangeColor;
}
const QColor &UpdateView::notInCvsColor() const
{
return m_notInCvsColor;
}
bool UpdateView::isUnfoldingTree() const
{
return m_unfoldingTree;
}
// updates internal data
void UpdateView::replaceItem(QTreeWidgetItem *oldItem, QTreeWidgetItem *newItem)
{
const int index(relevantSelection.indexOf(oldItem));
if (index >= 0)
relevantSelection.replace(index, newItem);
}
void UpdateView::unfoldSelectedFolders()
{
QApplication::setOverrideCursor(Qt::WaitCursor);
int previousDepth = 0;
bool isUnfolded = false;
QStringList selection = multipleSelection();
// setup name of selected folder
QString selectedItem = selection.first();
if (selectedItem.contains('/'))
selectedItem.remove(0, selectedItem.lastIndexOf('/') + 1);
// avoid flicker
const bool _updatesEnabled = updatesEnabled();
setUpdatesEnabled(false);
QTreeWidgetItemIterator it(this);
while (QTreeWidgetItem *item = (*it)) {
if (isDirItem(item)) {
auto dirItem = static_cast<UpdateDirItem *>(item);
// below selected folder?
if (previousDepth && dirItem->depth() > previousDepth) {
// if this dir wasn't scanned already scan it recursive
// (this is only a hack to reduce the processEvents() calls,
// setOpen() would scan the dir too)
if (dirItem->wasScanned() == false) {
const bool recursive = true;
dirItem->maybeScanDir(recursive);
// scanning can take some time so keep the gui alive
qApp->processEvents();
}
dirItem->setOpen(!isUnfolded);
}
// selected folder?
else if (selectedItem == dirItem->entry().m_name) {
previousDepth = dirItem->depth();
isUnfolded = dirItem->isExpanded();
// if this dir wasn't scanned already scan it recursive
// (this is only a hack to reduce the processEvents() calls,
// setOpen() would scan the dir too)
if (dirItem->wasScanned() == false) {
const bool recursive = true;
dirItem->maybeScanDir(recursive);
// scanning can take some time so keep the gui alive
qApp->processEvents();
}
dirItem->setOpen(!isUnfolded);
}
// back to the level of the selected folder or above?
else if (previousDepth && dirItem->depth() >= previousDepth) {
previousDepth = 0;
}
}
++it;
}
// maybe some UpdateDirItem was opened the first time so check the whole tree
setFilter(filter());
setUpdatesEnabled(_updatesEnabled);
viewport()->update();
QApplication::restoreOverrideCursor();
}
void UpdateView::unfoldTree()
{
QApplication::setOverrideCursor(Qt::WaitCursor);
m_unfoldingTree = true;
const bool _updatesEnabled = updatesEnabled();
setUpdatesEnabled(false);
QTreeWidgetItemIterator it(this);
while (QTreeWidgetItem *item = (*it)) {
if (isDirItem(item)) {
auto dirItem(static_cast<UpdateDirItem *>(item));
// if this dir wasn't scanned already scan it recursive
// (this is only a hack to reduce the processEvents() calls,
// setOpen() would scan the dir too)
if (dirItem->wasScanned() == false) {
const bool recursive(true);
dirItem->maybeScanDir(recursive);
// scanning can take some time so keep the gui alive
qApp->processEvents();
}
dirItem->setOpen(true);
}
++it;
}
// maybe some UpdateDirItem was opened the first time so check the whole tree
setFilter(filter());
setUpdatesEnabled(_updatesEnabled);
viewport()->update();
m_unfoldingTree = false;
QApplication::restoreOverrideCursor();
}
void UpdateView::foldTree()
{
QTreeWidgetItemIterator it(this);
while (QTreeWidgetItem *item = (*it)) {
// don't close the top level directory
if (isDirItem(item) && item->parent())
item->setExpanded(false);
++it;
}
}
/**
* Clear the tree view and insert the directory dirname
* into it as the new root item
*/
void UpdateView::openDirectory(const QString &dirName)
{
clear();
// do this each time as the configuration could be changed
updateColors();
Entry entry;
entry.m_name = dirName;
entry.m_type = Entry::Dir;
auto item = new UpdateDirItem(this, entry);
item->setExpanded(true);
setCurrentItem(item);
item->setSelected(true);
}
/**
* Start a job. We want to be able to change the status field
* correctly afterwards, so we have to remember the current
* selection (which the user may change during the update).
* In the recursive case, we collect all relevant directories.
* Furthermore, we have to change the items to undefined state.
*/
void UpdateView::prepareJob(bool recursive, Action action)
{
act = action;
// Scan recursively all entries - there's no way around this here
if (recursive)
static_cast<UpdateDirItem *>(topLevelItem(0))->maybeScanDir(true);
rememberSelection(recursive);
if (act != Add)
markUpdated(false, false);
}
/**
* Finishes a job. What we do depends a bit on
* whether the command was successful or not.
*/
void UpdateView::finishJob(bool normalExit, int exitStatus)
{
// cvs exitStatus == 1 only means that there're conflicts
// ... which is not correct (e.g. server not reachable also returns 1)
const bool success(normalExit && (exitStatus == 0));
if (act != Add)
markUpdated(true, success);
syncSelection();
// maybe some new items were created or
// visibility of items changed so check the whole tree
setFilter(filter());
}
/**
* Marking non-selected items in a directory updated (as a consequence
* of not appearing in 'cvs update' output) is done in two steps: In the
* first, they are marked as 'indefinite', so that their status on the screen
* isn't misrepresented. In the second step, they are either set
* to 'UpToDate' (success=true) or 'Unknown'.
*/
void UpdateView::markUpdated(bool laststage, bool success)
{
foreach (QTreeWidgetItem *it, relevantSelection) {
if (isDirItem(it)) {
for (int i = 0; i < it->childCount(); i++) {
QTreeWidgetItem *item = it->child(i);
if (isFileItem(item)) {
auto fileItem = static_cast<UpdateFileItem *>(item);
fileItem->markUpdated(laststage, success);
}
}
} else {
auto fileItem = static_cast<UpdateFileItem *>(it);
fileItem->markUpdated(laststage, success);
}
}
}
/**
* Remember the selection, see prepareJob()
*/
void UpdateView::rememberSelection(bool recursive)
{
std::set<QTreeWidgetItem *> setItems;
for (QTreeWidgetItemIterator it(this); *it; ++it) {
QTreeWidgetItem *item(*it);
// if this item is selected and if it was not inserted already
// and if we work recursive and if it is a dir item then insert
// all sub dirs
// DON'T CHANGE TESTING ORDER
if (item->isSelected() && setItems.insert(item).second && recursive && isDirItem(item)) {
QStack<QTreeWidgetItem *> s;
int childNum = 0;
QTreeWidgetItem *startItem = item;
QTreeWidgetItem *childItem = startItem->child(childNum);
while (childItem) {
// if this item is a dir item and if it was not
// inserted already then insert all sub dirs
// DON'T CHANGE TESTING ORDER
if (isDirItem(childItem) && setItems.insert(childItem).second) {
if (QTreeWidgetItem *childChildItem = childItem->child(0))
s.push(childChildItem);
}
if (++childNum < startItem->childCount())
childItem = startItem->child(childNum);
else {
if (s.isEmpty())
break;
else {
childItem = s.pop();
startItem = childItem->parent();
childNum = 0;
}
}
}
}
}
// Copy the set to the list
relevantSelection.clear();
std::set<QTreeWidgetItem *>::const_iterator const itItemEnd = setItems.end();
for (auto itItem = setItems.begin(); itItem != itItemEnd; ++itItem)
relevantSelection.append(*itItem);
#if 0
qDebug() << "Relevant:";
foreach (QTreeWidgetItem * item, relevantSelection)
qDebug() << " " << item->text(0);
qDebug() << "End";
#endif
}
/**
* Use the remembered selection to resynchronize
* with the actual directory and Entries content.
*/
void UpdateView::syncSelection()
{
// compute all directories which are selected or contain a selected file
// (in recursive mode this includes all sub directories)
std::set<UpdateDirItem *> setDirItems;
foreach (QTreeWidgetItem *item, relevantSelection) {
UpdateDirItem *dirItem(0);
if (isDirItem(item))
dirItem = static_cast<UpdateDirItem *>(item);
else if (QTreeWidgetItem *parentItem = item->parent())
dirItem = static_cast<UpdateDirItem *>(parentItem);
if (dirItem)
setDirItems.insert(dirItem);
}
QApplication::setOverrideCursor(Qt::WaitCursor);
std::set<UpdateDirItem *>::const_iterator const itDirItemEnd = setDirItems.end();
for (auto itDirItem = setDirItems.begin(); itDirItem != itDirItemEnd; ++itDirItem) {
UpdateDirItem *dirItem = *itDirItem;
dirItem->syncWithDirectory();
dirItem->syncWithEntries();
qApp->processEvents();
}
QApplication::restoreOverrideCursor();
}
/**
* Get the colors from the configuration each time the list view items
* are created.
*/
void UpdateView::updateColors()
{
KConfigGroup cs(&m_partConfig, "Colors");
m_conflictColor = cs.readEntry("Conflict", QColor(255, 130, 130));
m_localChangeColor = cs.readEntry("LocalChange", QColor(130, 130, 255));
m_remoteChangeColor = cs.readEntry("RemoteChange", QColor(70, 210, 70));
m_notInCvsColor = CervisiaSettings::notInCvsColor();
}
/**
* Process one line from the output of 'cvs update'. If parseAsStatus
* is true, it is assumed that the output is from a command
* 'cvs update -n', i.e. cvs actually changes no files.
*/
void UpdateView::processUpdateLine(QString str)
{
if (str.length() > 2 && str[1] == ' ') {
EntryStatus status(Cervisia::Unknown);
switch (str[0].toLatin1()) {
case 'C':
status = Cervisia::Conflict;
break;
case 'A':
status = Cervisia::LocallyAdded;
break;
case 'R':
status = Cervisia::LocallyRemoved;
break;
case 'M':
status = Cervisia::LocallyModified;
break;
case 'U':
status = (act == UpdateNoAct) ? Cervisia::NeedsUpdate : Cervisia::Updated;
break;
case 'P':
status = (act == UpdateNoAct) ? Cervisia::NeedsPatch : Cervisia::Patched;
break;
case '?':
status = Cervisia::NotInCVS;
break;
default:
return;
}
updateItem(str.mid(2), status, false);
}
const QString removedFileStart(QLatin1String("cvs server: "));
const QString removedFileEnd(QLatin1String(" is no longer in the repository"));
if (str.startsWith(removedFileStart) && str.endsWith(removedFileEnd)) { }
#if 0
else if (str.left(21) == "cvs server: Updating " ||
str.left(21) == "cvs update: Updating ")
updateItem(str.right(str.length()-21), Unknown, true);
#endif
}
void UpdateView::updateItem(const QString &filePath, EntryStatus status, bool isdir)
{
if (isdir && filePath == QLatin1String("."))
return;
const QFileInfo fileInfo(filePath);
auto rootItem = static_cast<UpdateDirItem *>(topLevelItem(0));
UpdateDirItem *dirItem = findOrCreateDirItem(fileInfo.path(), rootItem);
dirItem->updateChildItem(fileInfo.fileName(), status, isdir);
}
void UpdateView::itemExecuted(QTreeWidgetItem *item, int)
{
if (isFileItem(item))
Q_EMIT fileOpened(static_cast<UpdateFileItem *>(item)->filePath());
}
void UpdateView::itemExpandedSlot(QTreeWidgetItem *item)
{
static_cast<UpdateItem *>(item)->setOpen(true);
}
// Local Variables:
// c-basic-offset: 4
// End:
|