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 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812
|
/*
Description: interface to git programs
Author: Marco Costalba (C) 2005-2007
Copyright: See COPYING file that comes with this distribution
*/
#include <QApplication>
#include <QDateTime>
#include <QDir>
#include <QFile>
#include <QFontMetrics>
#include <QImageReader>
#include <QRegExp>
#include <QSet>
#include <QSettings>
#include <QTextCodec>
#include <QTextDocument>
#include <QTextStream>
#include "annotate.h"
#include "cache.h"
#include "git.h"
#include "lanes.h"
#include "myprocess.h"
using namespace QGit;
FileHistory::FileHistory(QObject* p, Git* g) : QAbstractItemModel(p), git(g) {
headerInfo << "Graph" << "Id" << "Short Log" << "Author" << "Author Date";
lns = new Lanes();
revs.reserve(QGit::MAX_DICT_SIZE);
clear(); // after _headerInfo is set
connect(git, SIGNAL(newRevsAdded(const FileHistory*, const QVector<ShaString>&)),
this, SLOT(on_newRevsAdded(const FileHistory*, const QVector<ShaString>&)));
connect(git, SIGNAL(loadCompleted(const FileHistory*, const QString&)),
this, SLOT(on_loadCompleted(const FileHistory*, const QString&)));
connect(git, SIGNAL(changeFont(const QFont&)), this, SLOT(on_changeFont(const QFont&)));
}
FileHistory::~FileHistory() {
clear();
delete lns;
}
void FileHistory::resetFileNames(SCRef fn) {
fNames.clear();
fNames.append(fn);
curFNames = fNames;
}
int FileHistory::rowCount(const QModelIndex& parent) const {
return (!parent.isValid() ? rowCnt : 0);
}
bool FileHistory::hasChildren(const QModelIndex& parent) const {
return !parent.isValid();
}
int FileHistory::row(SCRef sha) const {
const Rev* r = git->revLookup(sha, this);
return (r ? r->orderIdx : -1);
}
const QString FileHistory::sha(int row) const {
return (row < 0 || row >= rowCnt ? "" : QString(revOrder.at(row)));
}
void FileHistory::flushTail() {
if (earlyOutputCnt < 0 || earlyOutputCnt >= revOrder.count()) {
dbp("ASSERT in FileHistory::flushTail(), earlyOutputCnt is %1", earlyOutputCnt);
return;
}
int cnt = revOrder.count() - earlyOutputCnt + 1;
while (cnt > 0) {
const ShaString& sha = revOrder.last();
const Rev* c = revs[sha];
delete c;
revs.remove(sha);
revOrder.pop_back();
cnt--;
}
// reset all lanes, will be redrawn
for (int i = earlyOutputCntBase; i < revOrder.count(); i++) {
Rev* c = const_cast<Rev*>(revs[revOrder[i]]);
c->lanes.clear();
}
firstFreeLane = earlyOutputCntBase;
lns->clear();
rowCnt = revOrder.count();
reset();
}
void FileHistory::clear(bool complete) {
if (!complete) {
if (revOrder.count() > 0)
flushTail();
return;
}
git->cancelDataLoading(this);
qDeleteAll(revs);
revs.clear();
revOrder.clear();
firstFreeLane = loadTime = earlyOutputCntBase = 0;
setEarlyOutputState(false);
lns->clear();
fNames.clear();
curFNames.clear();
qDeleteAll(rowData);
rowData.clear();
if (testFlag(REL_DATE_F)) {
secs = QDateTime::currentDateTime().toTime_t();
headerInfo[4] = "Last Change";
} else {
secs = 0;
headerInfo[4] = "Author Date";
}
rowCnt = revOrder.count();
annIdValid = false;
reset();
emit headerDataChanged(Qt::Horizontal, 0, 4);
}
void FileHistory::on_newRevsAdded(const FileHistory* fh, const QVector<ShaString>& shaVec) {
if (fh != this) // signal newRevsAdded() is broadcast
return;
// do not process revisions if there are possible renamed points
// or pending renamed patch to apply
if (!renamedRevs.isEmpty() || !renamedPatches.isEmpty())
return;
// do not attempt to insert 0 rows since the inclusive range would be invalid
if (rowCnt == shaVec.count())
return;
beginInsertRows(QModelIndex(), rowCnt, shaVec.count()-1);
rowCnt = shaVec.count();
endInsertRows();
}
void FileHistory::on_loadCompleted(const FileHistory* fh, const QString&) {
if (fh != this || rowCnt >= revOrder.count())
return;
// now we can process last revision
rowCnt = revOrder.count();
reset(); // force a reset to avoid artifacts in file history graph under Windows
// adjust Id column width according to the numbers of revisions we have
if (!git->isMainHistory(this))
on_changeFont(QGit::STD_FONT);
}
void FileHistory::on_changeFont(const QFont& f) {
QString maxStr(QString::number(rowCnt).length() + 1, '8');
QFontMetrics fmRows(f);
int neededWidth = fmRows.boundingRect(maxStr).width();
QString id("Id");
QFontMetrics fmId(qApp->font());
while (fmId.boundingRect(id).width() < neededWidth)
id += ' ';
headerInfo[1] = id;
emit headerDataChanged(Qt::Horizontal, 1, 1);
}
Qt::ItemFlags FileHistory::flags(const QModelIndex&) const {
return Qt::ItemIsEnabled | Qt::ItemIsSelectable; // read only
}
QVariant FileHistory::headerData(int section, Qt::Orientation orientation, int role) const {
if (orientation == Qt::Horizontal && role == Qt::DisplayRole)
return headerInfo.at(section);
return QVariant();
}
QModelIndex FileHistory::index(int row, int column, const QModelIndex&) const {
/*
index() is called much more then data(), also by a 100X factor on
big archives, so we use just the row number as QModelIndex payload
and defer the revision lookup later, inside data().
Because row and column info are stored anyway in QModelIndex we
don't need to add any additional data.
*/
if (row < 0 || row >= rowCnt)
return QModelIndex();
return createIndex(row, column, 0);
}
QModelIndex FileHistory::parent(const QModelIndex&) const {
static const QModelIndex no_parent;
return no_parent;
}
const QString FileHistory::timeDiff(unsigned long secs) const {
uint days = secs / (3600 * 24);
uint hours = (secs - days * 3600 * 24) / 3600;
uint min = (secs - days * 3600 * 24 - hours * 3600) / 60;
uint sec = secs - days * 3600 * 24 - hours * 3600 - min * 60;
QString tmp;
if (days > 0)
tmp.append(QString::number(days) + "d ");
if (hours > 0 || !tmp.isEmpty())
tmp.append(QString::number(hours) + "h ");
if (min > 0 || !tmp.isEmpty())
tmp.append(QString::number(min) + "m ");
tmp.append(QString::number(sec) + "s");
return tmp;
}
QVariant FileHistory::data(const QModelIndex& index, int role) const {
static const QVariant no_value;
if (!index.isValid() || role != Qt::DisplayRole)
return no_value; // fast path, 90% of calls ends here!
const Rev* r = git->revLookup(revOrder.at(index.row()), this);
if (!r)
return no_value;
int col = index.column();
// calculate lanes
if (r->lanes.count() == 0)
git->setLane(r->sha(), const_cast<FileHistory*>(this));
if (col == QGit::ANN_ID_COL)
return (annIdValid ? rowCnt - index.row() : QVariant());
if (col == QGit::LOG_COL)
return r->shortLog();
if (col == QGit::AUTH_COL)
return r->author();
if (col == QGit::TIME_COL && r->sha() != QGit::ZERO_SHA_RAW) {
if (secs != 0) // secs is 0 for absolute date
return timeDiff(secs - r->authorDate().toULong());
else
return git->getLocalDate(r->authorDate());
}
return no_value;
}
// ****************************************************************************
bool Git::TreeEntry::operator<(const TreeEntry& te) const {
if (this->type == te.type)
return (this->name < te.name);
// directories are smaller then files
// to appear as first when sorted
if (this->type == "tree")
return true;
if (te.type == "tree")
return false;
return (this->name < te.name);
}
Git::Git(QObject* p) : QObject(p) {
EM_INIT(exGitStopped, "Stopping connection with git");
fileCacheAccessed = cacheNeedsUpdate = isMergeHead = false;
isStGIT = isGIT = loadingUnAppliedPatches = isTextHighlighterFound = false;
errorReportingEnabled = true; // report errors if run() fails
curDomain = NULL;
revData = NULL;
revsFiles.reserve(MAX_DICT_SIZE);
}
void Git::checkEnvironment() {
QString version;
if (run("git --version", &version)) {
version = version.section(' ', -1, -1).section('.', 0, 2);
if (version < GIT_VERSION) {
// simply send information, the 'not compatible version'
// policy should be implemented upstream
const QString cmd("Current git version is " + version +
" but is required " + GIT_VERSION + " or better");
const QString errorDesc("Your installed git is too old."
"\nPlease upgrade to avoid possible misbehaviours.");
MainExecErrorEvent* e = new MainExecErrorEvent(cmd, errorDesc);
QApplication::postEvent(parent(), e);
}
} else {
dbs("Cannot find git files");
return;
}
errorReportingEnabled = false;
isTextHighlighterFound = run("source-highlight -V", &version);
errorReportingEnabled = true;
if (isTextHighlighterFound)
dbp("Found %1", version.section('\n', 0, 0));
}
void Git::userInfo(SList info) {
/*
git looks for commit user information in following order:
- GIT_AUTHOR_NAME and GIT_AUTHOR_EMAIL environment variables
- repository config file
- global config file
- your name, hostname and domain
*/
const QString env(QProcess::systemEnvironment().join(","));
QString user(env.section("GIT_AUTHOR_NAME", 1).section(",", 0, 0).section("=", 1).trimmed());
QString email(env.section("GIT_AUTHOR_EMAIL", 1).section(",", 0, 0).section("=", 1).trimmed());
info.clear();
info << "Environment" << user << email;
errorReportingEnabled = false; // 'git config' could fail, see docs
run("git config user.name", &user);
run("git config user.email", &email);
info << "Local config" << user << email;
run("git config --global user.name", &user);
run("git config --global user.email", &email);
info << "Global config" << user << email;
errorReportingEnabled = true;
}
const QStringList Git::getGitConfigList(bool global) {
QString runOutput;
errorReportingEnabled = false; // 'git config' could fail, see docs
if (global)
run("git config --global --list", &runOutput);
else
run("git config --list", &runOutput);
errorReportingEnabled = true;
return runOutput.split('\n', QString::SkipEmptyParts);
}
bool Git::isImageFile(SCRef file) {
const QString ext(file.section('.', -1).toLower());
return QImageReader::supportedImageFormats().contains(ext.toAscii());
}
bool Git::isBinaryFile(SCRef file) {
static const char* binaryFileExtensions[] = {"bmp", "gif", "jpeg", "jpg",
"png", "svg", "tiff", "pcx", "xcf", "xpm",
"bz", "bz2", "rar", "tar", "z", "gz", "tgz", "zip", 0};
if (isImageFile(file))
return true;
const QString ext(file.section('.', -1).toLower());
int i = 0;
while (binaryFileExtensions[i] != 0)
if (ext == binaryFileExtensions[i++])
return true;
return false;
}
void Git::setThrowOnStop(bool b) {
if (b)
EM_REGISTER(exGitStopped);
else
EM_REMOVE(exGitStopped);
}
bool Git::isThrowOnStopRaised(int excpId, SCRef curContext) {
return EM_MATCH(excpId, exGitStopped, curContext);
}
void Git::setTextCodec(QTextCodec* tc) {
QTextCodec::setCodecForCStrings(tc); // works also with tc == 0 (Latin1)
QTextCodec::setCodecForLocale(tc);
QString name(tc ? tc->name() : "Latin1");
// workaround Qt issue of mime name different from
// standard http://www.iana.org/assignments/character-sets
if (name == "Big5-HKSCS")
name = "Big5";
run("git repo-config i18n.commitencoding " + name);
}
QTextCodec* Git::getTextCodec(bool* isGitArchive) {
*isGitArchive = isGIT;
if (!isGIT) // can be called also when not in an archive
return NULL;
QString runOutput;
if (!run("git repo-config --get i18n.commitencoding", &runOutput))
return NULL;
if (runOutput.isEmpty()) // git docs says default is utf-8
return QTextCodec::codecForName(QByteArray("utf8"));
return QTextCodec::codecForName(runOutput.trimmed().toLatin1());
}
const QString Git::quote(SCRef nm) {
return (QUOTE_CHAR + nm + QUOTE_CHAR);
}
const QString Git::quote(SCList sl) {
QString q(sl.join(QUOTE_CHAR + ' ' + QUOTE_CHAR));
q.prepend(QUOTE_CHAR).append(QUOTE_CHAR);
return q;
}
uint Git::checkRef(const ShaString& sha, uint mask) const {
RefMap::const_iterator it(refsShaMap.constFind(sha));
return (it != refsShaMap.constEnd() ? (*it).type & mask : 0);
}
uint Git::checkRef(SCRef sha, uint mask) const {
RefMap::const_iterator it(refsShaMap.constFind(toTempSha(sha)));
return (it != refsShaMap.constEnd() ? (*it).type & mask : 0);
}
const QStringList Git::getRefName(SCRef sha, RefType type, QString* curBranch) const {
if (!checkRef(sha, type))
return QStringList();
const Reference& rf = refsShaMap[toTempSha(sha)];
if (curBranch)
*curBranch = rf.currentBranch;
if (type == TAG)
return rf.tags;
else if (type == BRANCH)
return rf.branches;
else if (type == RMT_BRANCH)
return rf.remoteBranches;
else if (type == REF)
return rf.refs;
else if (type == APPLIED || type == UN_APPLIED)
return QStringList(rf.stgitPatch);
return QStringList();
}
const QStringList Git::getAllRefSha(uint mask) {
QStringList shas;
FOREACH (RefMap, it, refsShaMap)
if ((*it).type & mask)
shas.append(it.key());
return shas;
}
const QString Git::getRefSha(SCRef refName, RefType type, bool askGit) {
bool any = (type == ANY_REF);
FOREACH (RefMap, it, refsShaMap) {
const Reference& rf = *it;
if ((any || type == TAG) && rf.tags.contains(refName))
return it.key();
else if ((any || type == BRANCH) && rf.branches.contains(refName))
return it.key();
else if ((any || type == RMT_BRANCH) && rf.remoteBranches.contains(refName))
return it.key();
else if ((any || type == REF) && rf.refs.contains(refName))
return it.key();
else if ((any || type == APPLIED || type == UN_APPLIED) && rf.stgitPatch == refName)
return it.key();
}
if (!askGit)
return "";
// if a ref was not found perhaps is an abbreviated form
QString runOutput;
errorReportingEnabled = false;
bool ok = run("git rev-parse --revs-only " + refName, &runOutput);
errorReportingEnabled = true;
return (ok ? runOutput.trimmed() : "");
}
void Git::appendNamesWithId(QStringList& names, SCRef sha, SCList data, bool onlyLoaded) {
const Rev* r = revLookup(sha);
if (onlyLoaded && !r)
return;
if (onlyLoaded) { // prepare for later sorting
SCRef cap = QString("%1 ").arg(r->orderIdx, 6);
FOREACH_SL (it, data)
names.append(cap + *it);
} else
names += data;
}
const QStringList Git::getAllRefNames(uint mask, bool onlyLoaded) {
// returns reference names sorted by loading order if 'onlyLoaded' is set
QStringList names;
FOREACH (RefMap, it, refsShaMap) {
if (mask & TAG)
appendNamesWithId(names, it.key(), (*it).tags, onlyLoaded);
if (mask & BRANCH)
appendNamesWithId(names, it.key(), (*it).branches, onlyLoaded);
if (mask & RMT_BRANCH)
appendNamesWithId(names, it.key(), (*it).remoteBranches, onlyLoaded);
if (mask & REF)
appendNamesWithId(names, it.key(), (*it).refs, onlyLoaded);
if ((mask & (APPLIED | UN_APPLIED)) && !onlyLoaded)
names.append((*it).stgitPatch); // doesn't work with 'onlyLoaded'
}
if (onlyLoaded) {
names.sort();
QStringList::iterator itN(names.begin());
for ( ; itN != names.end(); ++itN) // strip 'idx'
(*itN) = (*itN).section(' ', -1, -1);
}
return names;
}
const QString Git::getRevInfo(SCRef sha) {
if (sha.isEmpty())
return "";
uint type = checkRef(sha);
if (type == 0)
return "";
QString refsInfo;
if (type & BRANCH) {
const QString cap(type & CUR_BRANCH ? "Head: " : "Branch: ");
refsInfo = cap + getRefName(sha, BRANCH).join(" ");
}
if (type & RMT_BRANCH)
refsInfo.append(" Remote branch: " + getRefName(sha, RMT_BRANCH).join(" "));
if (type & TAG)
refsInfo.append(" Tag: " + getRefName(sha, TAG).join(" "));
if (type & REF)
refsInfo.append(" Ref: " + getRefName(sha, REF).join(" "));
if (type & APPLIED)
refsInfo.append(" Patch: " + getRefName(sha, APPLIED).join(" "));
if (type & UN_APPLIED)
refsInfo.append(" Patch: " + getRefName(sha, UN_APPLIED).join(" "));
if (type & TAG) {
SCRef msg(getTagMsg(sha));
if (!msg.isEmpty())
refsInfo.append(" [" + msg + "]");
}
return refsInfo.trimmed();
}
const QString Git::getTagMsg(SCRef sha) {
if (!checkRef(sha, TAG)) {
dbs("ASSERT in Git::getTagMsg, tag not found");
return "";
}
Reference& rf = refsShaMap[toTempSha(sha)];
if (!rf.tagMsg.isEmpty())
return rf.tagMsg;
QRegExp pgp("-----BEGIN PGP SIGNATURE*END PGP SIGNATURE-----",
Qt::CaseSensitive, QRegExp::Wildcard);
if (!rf.tagObj.isEmpty()) {
QString ro;
if (run("git cat-file tag " + rf.tagObj, &ro))
rf.tagMsg = ro.section("\n\n", 1).remove(pgp).trimmed();
}
return rf.tagMsg;
}
bool Git::isPatchName(SCRef nm) {
if (!getRefSha(nm, UN_APPLIED, false).isEmpty())
return true;
return !getRefSha(nm, APPLIED, false).isEmpty();
}
void Git::addExtraFileInfo(QString* rowName, SCRef sha, SCRef diffToSha, bool allMergeFiles) {
const RevFile* files = getFiles(sha, diffToSha, allMergeFiles);
if (!files)
return;
int idx = findFileIndex(*files, *rowName);
if (idx == -1)
return;
QString extSt(files->extendedStatus(idx));
if (extSt.isEmpty())
return;
*rowName = extSt;
}
void Git::removeExtraFileInfo(QString* rowName) {
if (rowName->contains(" --> ")) // return destination file name
*rowName = rowName->section(" --> ", 1, 1).section(" (", 0, 0);
}
void Git::formatPatchFileHeader(QString* rowName, SCRef sha, SCRef diffToSha,
bool combined, bool allMergeFiles) {
if (combined) {
rowName->prepend("diff --combined ");
return; // TODO rename/copy still not supported in this case
}
// let's see if it's a rename/copy...
addExtraFileInfo(rowName, sha, diffToSha, allMergeFiles);
if (rowName->contains(" --> ")) { // ...it is!
SCRef destFile(rowName->section(" --> ", 1, 1).section(" (", 0, 0));
SCRef origFile(rowName->section(" --> ", 0, 0));
*rowName = "diff --git a/" + origFile + " b/" + destFile;
} else
*rowName = "diff --git a/" + *rowName + " b/" + *rowName;
}
Annotate* Git::startAnnotate(FileHistory* fh, QObject* guiObj) { // non blocking
Annotate* ann = new Annotate(this, guiObj);
if (!ann->start(fh)) // non blocking call
return NULL; // ann will delete itself when done
return ann; // caller will delete with Git::cancelAnnotate()
}
void Git::cancelAnnotate(Annotate* ann) {
if (ann)
ann->deleteWhenDone();
}
const FileAnnotation* Git::lookupAnnotation(Annotate* ann, SCRef sha) {
return (ann ? ann->lookupAnnotation(sha) : NULL);
}
void Git::cancelDataLoading(const FileHistory* fh) {
// normally called when closing file viewer
emit cancelLoading(fh); // non blocking
}
const Rev* Git::revLookup(SCRef sha, const FileHistory* fh) const {
return revLookup(toTempSha(sha), fh);
}
const Rev* Git::revLookup(const ShaString& sha, const FileHistory* fh) const {
const RevMap& r = (fh ? fh->revs : revData->revs);
return (sha.latin1() ? r.value(sha) : NULL);
}
bool Git::run(SCRef runCmd, QString* runOutput, QObject* receiver, SCRef buf) {
QByteArray ba;
bool ret = run(runOutput ? &ba : NULL, runCmd, receiver, buf);
if (runOutput)
*runOutput = ba;
return ret;
}
bool Git::run(QByteArray* runOutput, SCRef runCmd, QObject* receiver, SCRef buf) {
MyProcess p(parent(), this, workDir, errorReportingEnabled);
return p.runSync(runCmd, runOutput, receiver, buf);
}
MyProcess* Git::runAsync(SCRef runCmd, QObject* receiver, SCRef buf) {
MyProcess* p = new MyProcess(parent(), this, workDir, errorReportingEnabled);
if (!p->runAsync(runCmd, receiver, buf)) {
delete p;
p = NULL;
}
return p; // auto-deleted when done
}
MyProcess* Git::runAsScript(SCRef runCmd, QObject* receiver, SCRef buf) {
const QString scriptFile(workDir + "/qgit_script" + QGit::SCRIPT_EXT);
#ifndef Q_OS_WIN32
// without this process doesn't start under Linux
QString cmd(runCmd.startsWith("#!") ? runCmd : "#!/bin/sh\n" + runCmd);
#else
QString cmd(runCmd);
#endif
if (!writeToFile(scriptFile, cmd, true))
return NULL;
MyProcess* p = runAsync(scriptFile, receiver, buf);
if (p)
connect(p, SIGNAL(eof()), this, SLOT(on_runAsScript_eof()));
return p;
}
void Git::on_runAsScript_eof() {
QDir dir(workDir);
dir.remove("qgit_script" + QGit::SCRIPT_EXT);
}
void Git::cancelProcess(MyProcess* p) {
if (p)
p->on_cancel(); // non blocking call
}
int Git::findFileIndex(const RevFile& rf, SCRef name) {
if (name.isEmpty())
return -1;
int idx = name.lastIndexOf('/') + 1;
SCRef dr = name.left(idx);
SCRef nm = name.mid(idx);
for (uint i = 0, cnt = rf.count(); i < cnt; ++i) {
if (fileNamesVec[rf.nameAt(i)] == nm && dirNamesVec[rf.dirAt(i)] == dr)
return i;
}
return -1;
}
const QString Git::getLaneParent(SCRef fromSHA, int laneNum) {
const Rev* rs = revLookup(fromSHA);
if (!rs)
return "";
for (int idx = rs->orderIdx - 1; idx >= 0; idx--) {
const Rev* r = revLookup(revData->revOrder[idx]);
if (laneNum >= r->lanes.count())
return "";
if (!isFreeLane(r->lanes[laneNum])) {
int type = r->lanes[laneNum], parNum = 0;
while (!isMerge(type) && type != ACTIVE) {
if (isHead(type))
parNum++;
type = r->lanes[--laneNum];
}
return r->parent(parNum);
}
}
return "";
}
const QStringList Git::getChilds(SCRef parent) {
QStringList childs;
const Rev* r = revLookup(parent);
if (!r)
return childs;
for (int i = 0; i < r->childs.count(); i++)
childs.append(revData->revOrder[r->childs[i]]);
// reorder childs by loading order
QStringList::iterator itC(childs.begin());
for ( ; itC != childs.end(); ++itC) {
const Rev* r = revLookup(*itC);
(*itC).prepend(QString("%1 ").arg(r->orderIdx, 6));
}
childs.sort();
for (itC = childs.begin(); itC != childs.end(); ++itC)
(*itC) = (*itC).section(' ', -1, -1);
return childs;
}
const QString Git::getShortLog(SCRef sha) {
const Rev* r = revLookup(sha);
return (r ? r->shortLog() : "");
}
MyProcess* Git::getDiff(SCRef sha, QObject* receiver, SCRef diffToSha, bool combined) {
if (sha.isEmpty())
return NULL;
QString runCmd;
if (sha != ZERO_SHA) {
runCmd = "git diff-tree --no-color -r --patch-with-stat ";
runCmd.append(combined ? "-c " : "-C -m "); // TODO rename for combined
runCmd.append(diffToSha + " " + sha); // diffToSha could be empty
} else
runCmd = "git diff-index --no-color -r -m --patch-with-stat HEAD";
return runAsync(runCmd, receiver);
}
const QString Git::getWorkDirDiff(SCRef fileName) {
QString runCmd("git diff-index --no-color -r -z -m -p --full-index --no-commit-id HEAD"), runOutput;
if (!fileName.isEmpty())
runCmd.append(" -- " + quote(fileName));
if (!run(runCmd, &runOutput))
return "";
/* For unknown reasons file sha of index is not ZERO_SHA but
a value of unknown origin.
Replace that with ZERO_SHA so to not fool annotate
*/
int idx = runOutput.indexOf("..");
if (idx != -1)
runOutput.replace(idx + 2, 40, ZERO_SHA);
return runOutput;
}
const QString Git::getFileSha(SCRef file, SCRef revSha) {
if (revSha == ZERO_SHA) {
QStringList files, dummy;
getWorkDirFiles(files, dummy, RevFile::ANY);
if (files.contains(file))
return ZERO_SHA; // it is unknown to git
}
const QString sha(revSha == ZERO_SHA ? "HEAD" : revSha);
QString runCmd("git ls-tree -r " + sha + " " + quote(file)), runOutput;
if (!run(runCmd, &runOutput))
return "";
return runOutput.mid(12, 40); // could be empty, deleted file case
}
MyProcess* Git::getFile(SCRef fileSha, QObject* receiver, QByteArray* result, SCRef fileName) {
QString runCmd;
/*
symlinks in git are one line files with just the name of the target,
not the target content. Instead 'cat' command resolves symlinks and
returns target content. So we use 'cat' only if the file is modified
in working dir, to let annotation work for changed files, otherwise
we go with a safe 'git cat-file blob HEAD' instead.
NOTE: This fails if the modified file is a new symlink, converted
from an old plain file. In this case annotation will fail until
change is committed.
*/
if (fileSha == ZERO_SHA)
runCmd = "cat " + quote(fileName);
else {
if (fileSha.isEmpty()) // deleted
runCmd = "git diff-tree HEAD HEAD"; // fake an empty file reading
else
runCmd = "git cat-file blob " + fileSha;
}
if (!receiver) {
run(result, runCmd);
return NULL; // in case of sync call we ignore run() return value
}
return runAsync(runCmd, receiver);
}
MyProcess* Git::getHighlightedFile(SCRef fileSha, QObject* receiver, QString* result, SCRef fileName) {
if (!isTextHighlighter()) {
dbs("ASSERT in getHighlightedFile: highlighter not found");
return NULL;
}
QString ext(fileName.section('.', -1, -1, QString::SectionIncludeLeadingSep));
QString inputFile(workDir + "/qgit_hlght_input" + ext);
if (!saveFile(fileSha, fileName, inputFile))
return NULL;
QString runCmd("source-highlight --failsafe -f html -i " + quote(inputFile));
if (!receiver) {
run(runCmd, result);
on_getHighlightedFile_eof();
return NULL; // in case of sync call we ignore run() return value
}
MyProcess* p = runAsync(runCmd, receiver);
if (p)
connect(p, SIGNAL(eof()), this, SLOT(on_getHighlightedFile_eof()));
return p;
}
void Git::on_getHighlightedFile_eof() {
QDir dir(workDir);
const QStringList sl(dir.entryList(QStringList() << "qgit_hlght_input*"));
FOREACH_SL (it, sl)
dir.remove(*it);
}
bool Git::saveFile(SCRef fileSha, SCRef fileName, SCRef path) {
QByteArray fileData;
getFile(fileSha, NULL, &fileData, fileName); // sync call
if (isBinaryFile(fileName))
return writeToFile(path, fileData);
return writeToFile(path, QString(fileData));
}
bool Git::getTree(SCRef treeSha, TreeInfo& ti, bool isWorkingDir, SCRef path) {
QStringList deleted;
if (isWorkingDir) {
// retrieve unknown and deleted files under path
QStringList unknowns, dummy;
getWorkDirFiles(unknowns, dummy, RevFile::UNKNOWN);
FOREACH_SL (it, unknowns) {
// don't add files under other directories
QFileInfo f(*it);
SCRef d(f.dir().path());
if (d == path || (path.isEmpty() && d == ".")) {
TreeEntry te(f.fileName(), "", "?");
ti.append(te);
}
}
getWorkDirFiles(deleted, dummy, RevFile::DELETED);
}
// if needed fake a working directory tree starting from HEAD tree
QString runOutput, tree(treeSha);
if (treeSha == ZERO_SHA) {
// HEAD could be empty for just init'ed repositories
if (!run("git rev-parse --revs-only HEAD", &tree))
return false;
tree = tree.trimmed();
}
if (!tree.isEmpty() && !run("git ls-tree " + tree, &runOutput))
return false;
const QStringList sl(runOutput.split('\n', QString::SkipEmptyParts));
FOREACH_SL (it, sl) {
// append any not deleted file
SCRef fn((*it).section('\t', 1, 1));
SCRef fp(path.isEmpty() ? fn : path + '/' + fn);
if (deleted.empty() || (deleted.indexOf(fp) == -1)) {
TreeEntry te(fn, (*it).mid(12, 40), (*it).mid(7, 4));
ti.append(te);
}
}
qSort(ti); // list directories before files
return true;
}
void Git::getWorkDirFiles(SList files, SList dirs, RevFile::StatusFlag status) {
files.clear();
dirs.clear();
const RevFile* f = getFiles(ZERO_SHA);
if (!f)
return;
for (int i = 0; i < f->count(); i++) {
if (f->statusCmp(i, status)) {
SCRef fp(filePath(*f, i));
files.append(fp);
for (int j = 0, cnt = fp.count('/'); j < cnt; j++) {
SCRef dir(fp.section('/', 0, j));
if (dirs.indexOf(dir) == -1)
dirs.append(dir);
}
}
}
}
bool Git::isNothingToCommit() {
if (!revsFiles.contains(ZERO_SHA_RAW))
return true;
const RevFile* rf = revsFiles[ZERO_SHA_RAW];
return (rf->count() == workingDirInfo.otherFiles.count());
}
bool Git::isTreeModified(SCRef sha) {
const RevFile* f = getFiles(sha);
if (!f)
return true; // no files info, stay on the safe side
for (int i = 0; i < f->count(); ++i)
if (!f->statusCmp(i, RevFile::MODIFIED))
return true;
return false;
}
bool Git::isParentOf(SCRef par, SCRef child) {
const Rev* c = revLookup(child);
return (c && c->parentsCount() == 1 && QString(c->parent(0)) == par); // no merges
}
bool Git::isSameFiles(SCRef tree1Sha, SCRef tree2Sha) {
// early skip common case of browsing with up and down arrows, i.e.
// going from parent(child) to child(parent). In this case we can
// check RevFileMap and skip a costly 'git diff-tree' call.
if (isParentOf(tree1Sha, tree2Sha))
return !isTreeModified(tree2Sha);
if (isParentOf(tree2Sha, tree1Sha))
return !isTreeModified(tree1Sha);
const QString runCmd("git diff-tree --no-color -r " + tree1Sha + " " + tree2Sha);
QString runOutput;
if (!run(runCmd, &runOutput))
return false;
bool isChanged = (runOutput.indexOf(" A\t") != -1 || runOutput.indexOf(" D\t") != -1);
return !isChanged;
}
const QStringList Git::getDescendantBranches(SCRef sha, bool shaOnly) {
QStringList tl;
const Rev* r = revLookup(sha);
if (!r || (r->descBrnMaster == -1))
return tl;
const QVector<int>& nr = revLookup(revData->revOrder[r->descBrnMaster])->descBranches;
for (int i = 0; i < nr.count(); i++) {
const ShaString& sha = revData->revOrder[nr[i]];
if (shaOnly) {
tl.append(sha);
continue;
}
SCRef cap = " (" + sha + ") ";
RefMap::const_iterator it(refsShaMap.find(sha));
if (it == refsShaMap.constEnd())
continue;
if (!(*it).branches.empty())
tl.append((*it).branches.join(" ").append(cap));
if (!(*it).remoteBranches.empty())
tl.append((*it).remoteBranches.join(" ").append(cap));
}
return tl;
}
const QStringList Git::getNearTags(bool goDown, SCRef sha) {
QStringList tl;
const Rev* r = revLookup(sha);
if (!r)
return tl;
int nearRefsMaster = (goDown ? r->descRefsMaster : r->ancRefsMaster);
if (nearRefsMaster == -1)
return tl;
const QVector<int>& nr = goDown ? revLookup(revData->revOrder[nearRefsMaster])->descRefs :
revLookup(revData->revOrder[nearRefsMaster])->ancRefs;
for (int i = 0; i < nr.count(); i++) {
const ShaString& sha = revData->revOrder[nr[i]];
SCRef cap = " (" + sha + ")";
RefMap::const_iterator it(refsShaMap.find(sha));
if (it != refsShaMap.constEnd())
tl.append((*it).tags.join(cap).append(cap));
}
return tl;
}
const QString Git::getLastCommitMsg() {
// FIXME: Make sure the amend action is not called when there is
// nothing to amend. That is in empty repository or over StGit stack
// with nothing applied.
QString sha;
QString top;
if (run("git rev-parse --verify HEAD", &top))
sha = top.trimmed();
else {
dbs("ASSERT: getLastCommitMsg head is not valid");
return "";
}
const Rev* c = revLookup(sha);
if (!c) {
dbp("ASSERT: getLastCommitMsg sha <%1> not found", sha);
return "";
}
return c->shortLog() + "\n\n" + c->longLog().trimmed();
}
const QString Git::getNewCommitMsg() {
const Rev* c = revLookup(ZERO_SHA);
if (!c) {
dbs("ASSERT: getNewCommitMsg zero_sha not found");
return "";
}
QString status = c->longLog();
status.prepend('\n').replace(QRegExp("\\n([^#])"), "\n#\\1"); // comment all the lines
return status;
}
const QString Git::colorMatch(SCRef txt, QRegExp& regExp) {
QString text;
text = Qt::escape(txt);
if (regExp.isEmpty())
return text;
SCRef startCol(QString::fromLatin1("<b><font color=\"red\">"));
SCRef endCol(QString::fromLatin1("</font></b>"));
int pos = 0;
while ((pos = text.indexOf(regExp, pos)) != -1) {
SCRef match(regExp.cap(0));
const QString coloredText(startCol + match + endCol);
text.replace(pos, match.length(), coloredText);
pos += coloredText.length();
}
return text;
}
const QString Git::formatList(SCList sl, SCRef name, bool inOneLine) {
if (sl.isEmpty())
return QString();
QString ls = "<tr><td class='h'>" + name + "</td><td>";
const QString joinStr = inOneLine ? ", " : "</td></tr>\n" + ls;
ls += sl.join(joinStr);
ls += "</td></tr>\n";
return ls;
}
const QString Git::getDesc(SCRef sha, QRegExp& shortLogRE, QRegExp& longLogRE,
bool showHeader, FileHistory* fh) {
if (sha.isEmpty())
return "";
const Rev* c = revLookup(sha, fh);
if (!c) // sha of a not loaded revision, as
return ""; // example asked from file history
QString text;
if (c->isDiffCache)
text = Qt::convertFromPlainText(c->longLog());
else {
QTextStream ts(&text);
ts << "<html><head><style type=\"text/css\">"
"tr.head { background-color: #a0a0e0 }\n"
"td.h { font-weight: bold; }\n"
"table { background-color: #e0e0f0; }\n"
"span.h { font-weight: bold; font-size: medium; }\n"
"div.l { white-space: pre; "
"font-family: " << TYPE_WRITER_FONT.family() << ";"
"font-size: " << TYPE_WRITER_FONT.pointSize() << "pt;}\n"
"</style></head><body><div class='t'>\n"
"<table border=0 cellspacing=0 cellpadding=2>";
ts << "<tr class='head'> <th></th> <th><span class='h'>"
<< colorMatch(c->shortLog(), shortLogRE)
<< "</span></th></tr>";
if (showHeader) {
if (c->committer() != c->author())
ts << formatList(QStringList(Qt::escape(c->committer())), "Committer");
ts << formatList(QStringList(Qt::escape(c->author())), "Author");
ts << formatList(QStringList(getLocalDate(c->authorDate())), " Author date");
if (c->isUnApplied || c->isApplied) {
QStringList patches(getRefName(sha, APPLIED));
patches += getRefName(sha, UN_APPLIED);
ts << formatList(patches, "Patch");
} else {
ts << formatList(c->parents(), "Parent", false);
ts << formatList(getChilds(sha), "Child", false);
ts << formatList(getDescendantBranches(sha), "Branch", false);
ts << formatList(getNearTags(!optGoDown, sha), "Follows");
ts << formatList(getNearTags(optGoDown, sha), "Precedes");
}
}
QString longLog(c->longLog());
if (showHeader) {
longLog.prepend(QString("\n") + c->shortLog() + "\n");
}
QString log(colorMatch(longLog, longLogRE));
log.replace("\n", "\n ").prepend('\n');
ts << "</table></div><div class='l'>" << log << "</div></body></html>";
}
// highlight SHA's
//
// added to commit logs, we avoid to call git rev-parse for a possible abbreviated
// sha if there isn't a leading trailing space or an open parenthesis and,
// in that case, before the space must not be a ':' character.
// It's an ugly heuristic, but seems to work in most cases.
QRegExp reSHA("..[0-9a-f]{21,40}|[^:][\\s(][0-9a-f]{6,20}", Qt::CaseInsensitive);
reSHA.setMinimal(false);
int pos = 0;
while ((pos = text.indexOf(reSHA, pos)) != -1) {
SCRef ref = reSHA.cap(0).mid(2);
const Rev* r = (ref.length() == 40 ? revLookup(ref) : revLookup(getRefSha(ref)));
if (r) {
QString slog(r->shortLog());
if (slog.isEmpty()) // very rare but possible
slog = r->sha();
if (slog.length() > 60)
slog = slog.left(57).trimmed().append("...");
slog = Qt::escape(slog);
const QString link("<a href=\"" + r->sha() + "\">" + slog + "</a>");
text.replace(pos + 2, ref.length(), link);
pos += link.length();
} else
pos += reSHA.cap(0).length();
}
return text;
}
const RevFile* Git::insertNewFiles(SCRef sha, SCRef data) {
/* we use an independent FileNamesLoader to avoid data
* corruption if we are loading file names in background
*/
FileNamesLoader fl;
RevFile* rf = new RevFile();
parseDiffFormat(*rf, data, fl);
flushFileNames(fl);
revsFiles.insert(toPersistentSha(sha, revsFilesShaBackupBuf), rf);
return rf;
}
bool Git::runDiffTreeWithRenameDetection(SCRef runCmd, QString* runOutput) {
/* Under some cases git could warn out:
"too many files, skipping inexact rename detection"
So if this occurs fallback on NO rename detection.
*/
QString cmd(runCmd); // runCmd must be without -C option
cmd.replace("git diff-tree", "git diff-tree -C");
errorReportingEnabled = false;
bool renameDetectionOk = run(cmd, runOutput);
errorReportingEnabled = true;
if (!renameDetectionOk) // retry without rename detection
return run(runCmd, runOutput);
return true;
}
const RevFile* Git::getAllMergeFiles(const Rev* r) {
SCRef mySha(ALL_MERGE_FILES + r->sha());
if (revsFiles.contains(toTempSha(mySha)))
return revsFiles[toTempSha(mySha)];
EM_PROCESS_EVENTS; // 'git diff-tree' could be slow
QString runCmd("git diff-tree --no-color -r -m " + r->sha()), runOutput;
if (!runDiffTreeWithRenameDetection(runCmd, &runOutput))
return NULL;
return insertNewFiles(mySha, runOutput);
}
const RevFile* Git::getFiles(SCRef sha, SCRef diffToSha, bool allFiles, SCRef path) {
const Rev* r = revLookup(sha);
if (!r)
return NULL;
if (r->parentsCount() == 0) // skip initial rev
return NULL;
if (r->parentsCount() > 1 && diffToSha.isEmpty() && allFiles)
return getAllMergeFiles(r);
if (!diffToSha.isEmpty() && (sha != ZERO_SHA)) {
QString runCmd("git diff-tree --no-color -r -m ");
runCmd.append(diffToSha + " " + sha);
if (!path.isEmpty())
runCmd.append(" " + path);
EM_PROCESS_EVENTS; // 'git diff-tree' could be slow
QString runOutput;
if (!runDiffTreeWithRenameDetection(runCmd, &runOutput))
return NULL;
// we insert a dummy revision file object. It will be
// overwritten at each request but we don't care.
return insertNewFiles(CUSTOM_SHA, runOutput);
}
if (revsFiles.contains(r->sha()))
return revsFiles[r->sha()]; // ZERO_SHA search arrives here
if (sha == ZERO_SHA) {
dbs("ASSERT in Git::getFiles, ZERO_SHA not found");
return NULL;
}
EM_PROCESS_EVENTS; // 'git diff-tree' could be slow
QString runCmd("git diff-tree --no-color -r -c " + sha), runOutput;
if (!runDiffTreeWithRenameDetection(runCmd, &runOutput))
return NULL;
if (revsFiles.contains(r->sha())) // has been created in the mean time?
return revsFiles[r->sha()];
cacheNeedsUpdate = true;
return insertNewFiles(sha, runOutput);
}
bool Git::startFileHistory(SCRef sha, SCRef startingFileName, FileHistory* fh) {
QStringList args(getDescendantBranches(sha, true));
if (args.isEmpty())
args << "HEAD";
QString newestFileName = getNewestFileName(args, startingFileName);
fh->resetFileNames(newestFileName);
args.clear(); // load history from all the branches
args << getAllRefSha(BRANCH | RMT_BRANCH);
args << "--" << newestFileName;
return startRevList(args, fh);
}
const QString Git::getNewestFileName(SCList branches, SCRef fileName) {
QString curFileName(fileName), runOutput, args;
while (true) {
args = branches.join(" ") + " -- " + curFileName;
if (!run("git ls-tree " + args, &runOutput))
break;
if (!runOutput.isEmpty())
break;
QString msg("Retrieving file renames, now at '" + curFileName + "'...");
QApplication::postEvent(parent(), new MessageEvent(msg));
EM_PROCESS_EVENTS_NO_INPUT;
if (!run("git rev-list -n1 " + args, &runOutput))
break;
if (runOutput.isEmpty()) // try harder
if (!run("git rev-list --full-history -n1 " + args, &runOutput))
break;
if (runOutput.isEmpty())
break;
SCRef sha = runOutput.trimmed();
QStringList newCur;
if (!populateRenamedPatches(sha, QStringList(curFileName), NULL, &newCur, true))
break;
curFileName = newCur.first();
}
return curFileName;
}
void Git::getFileFilter(SCRef path, ShaSet& shaSet) const {
shaSet.clear();
QRegExp rx(path, Qt::CaseInsensitive, QRegExp::Wildcard);
FOREACH (ShaVect, it, revData->revOrder) {
if (!revsFiles.contains(*it))
continue;
// case insensitive, wildcard search
const RevFile* rf = revsFiles[*it];
for (int i = 0; i < rf->count(); ++i)
if (filePath(*rf, i).contains(rx)) {
shaSet.insert(*it);
break;
}
}
}
bool Git::getPatchFilter(SCRef exp, bool isRegExp, ShaSet& shaSet) {
shaSet.clear();
QString buf;
FOREACH (ShaVect, it, revData->revOrder)
if (*it != ZERO_SHA_RAW)
buf.append(*it).append('\n');
if (buf.isEmpty())
return true;
EM_PROCESS_EVENTS; // 'git diff-tree' could be slow
QString runCmd("git diff-tree --no-color -r -s --stdin "), runOutput;
if (isRegExp)
runCmd.append("--pickaxe-regex ");
runCmd.append(quote("-S" + exp));
if (!run(runCmd, &runOutput, NULL, buf))
return false;
const QStringList sl(runOutput.split('\n', QString::SkipEmptyParts));
FOREACH_SL (it, sl)
shaSet.insert(*it);
return true;
}
bool Git::resetCommits(int parentDepth) {
QString runCmd("git reset --soft HEAD~");
runCmd.append(QString::number(parentDepth));
return run(runCmd);
}
bool Git::applyPatchFile(SCRef patchPath, bool fold, bool isDragDrop) {
if (isStGIT) {
if (fold) {
bool ok = run("stg fold " + quote(patchPath)); // merge in working dir
if (ok)
ok = run("stg refresh"); // update top patch
return ok;
} else
return run("stg import --mail " + quote(patchPath));
}
QString runCmd("git am --utf8 --3way ");
QSettings settings;
const QString APOpt(settings.value(AM_P_OPT_KEY).toString());
if (!APOpt.isEmpty())
runCmd.append(APOpt.trimmed() + " ");
if (isDragDrop)
runCmd.append("--keep ");
if (testFlag(SIGN_PATCH_F))
runCmd.append("--signoff ");
return run(runCmd + quote(patchPath));
}
bool Git::formatPatch(SCList shaList, SCRef dirPath, SCRef remoteDir) {
bool remote = !remoteDir.isEmpty();
QSettings settings;
const QString FPOpt(settings.value(FMT_P_OPT_KEY).toString());
QString runCmd("git format-patch --no-color");
if (testFlag(NUMBERS_F) && !remote)
runCmd.append(" -n");
if (remote)
runCmd.append(" --keep-subject");
runCmd.append(" -o " + dirPath);
if (!FPOpt.isEmpty())
runCmd.append(" " + FPOpt.trimmed());
const QString tmp(workDir);
if (remote)
workDir = remoteDir; // run() uses workDir value
// shaList is ordered by newest to oldest
runCmd.append(" " + shaList.last());
runCmd.append(QString::fromLatin1("^..") + shaList.first());
bool ret = run(runCmd);
workDir = tmp;
return ret;
}
const QStringList Git::getOtherFiles(SCList selFiles, bool onlyInIndex) {
const RevFile* files = getFiles(ZERO_SHA); // files != NULL
QStringList notSelFiles;
for (int i = 0; i < files->count(); ++i) {
SCRef fp = filePath(*files, i);
if (selFiles.indexOf(fp) == -1) { // not selected...
if (!onlyInIndex || files->statusCmp(i, RevFile::IN_INDEX))
notSelFiles.append(fp);
}
}
return notSelFiles;
}
bool Git::updateIndex(SCList selFiles) {
const RevFile* files = getFiles(ZERO_SHA); // files != NULL
QStringList toAdd, toRemove;
FOREACH_SL (it, selFiles) {
int idx = findFileIndex(*files, *it);
if (files->statusCmp(idx, RevFile::DELETED))
toRemove << *it;
else
toAdd << *it;
}
if (!toRemove.isEmpty() && !run("git rm --cached --ignore-unmatch -- " + quote(toRemove)))
return false;
if (!toAdd.isEmpty() && !run("git add -- " + quote(toAdd)))
return false;
return true;
}
bool Git::commitFiles(SCList selFiles, SCRef msg, bool amend) {
const QString msgFile(gitDir + "/qgit_cmt_msg.txt");
if (!writeToFile(msgFile, msg)) // early skip
return false;
// add user selectable commit options
QSettings settings;
const QString CMArgs(settings.value(CMT_ARGS_KEY).toString());
QString cmtOptions;
if (!CMArgs.isEmpty())
cmtOptions.append(" " + CMArgs);
if (testFlag(SIGN_CMT_F))
cmtOptions.append(" -s");
if (testFlag(VERIFY_CMT_F))
cmtOptions.append(" -v");
if (amend)
cmtOptions.append(" --amend");
bool ret = false;
// get not selected files but updated in index to restore at the end
const QStringList notSel(getOtherFiles(selFiles, optOnlyInIndex));
// call git reset to remove not selected files from index
if (!notSel.empty() && !run("git reset -- " + quote(notSel)))
goto fail;
// update index with selected files
if (!updateIndex(selFiles))
goto fail;
// now we can finally commit..
if (!run("git commit" + cmtOptions + " -F " + quote(msgFile)))
goto fail;
// restore not selected files that were already in index
if (!notSel.empty() && !updateIndex(notSel))
goto fail;
ret = true;
fail:
QDir dir(workDir);
dir.remove(msgFile);
return ret;
}
bool Git::mkPatchFromWorkDir(SCRef msg, SCRef patchFile, SCList files) {
/* unfortunately 'git diff' sees only files already
* known to git or already in index, so update index first
* to be sure also unknown files are correctly found
*/
if (!updateIndex(files))
return false;
QString runOutput;
if (!run("git diff -C HEAD -- " + quote(files), &runOutput))
return false;
const QString patch("Subject: " + msg + "\n---\n" + runOutput);
return writeToFile(patchFile, patch);
}
bool Git::stgCommit(SCList selFiles, SCRef msg, SCRef patchName, bool fold) {
/* Here the deal is to use 'stg import' and 'stg fold' to add a new
* patch or refresh the current one respectively. Unfortunately refresh
* does not work with partial selection of files and also does not take
* patch message from a file that is needed to avoid artifacts with '\n'
* and friends.
*
* So steps are:
*
* - Create a patch file with the changes you want to import/fold in StGit
* - Stash working dir files because import/fold wants a clean directory
* - Import/fold the patch
* - Unstash and merge working dir modified files
* - Restore index with not selected files
*/
/* Step 1: Create a patch file with the changes you want to import/fold */
bool ret = false;
const QString patchFile(gitDir + "/qgit_tmp_patch.txt");
// in case we don't have files to restore we can shortcut various commands
bool partialSelection = !getOtherFiles(selFiles, !optOnlyInIndex).isEmpty();
// get not selected files but updated in index to restore at the end
QStringList notSel;
if (partialSelection) // otherwise notSel is for sure empty
notSel = getOtherFiles(selFiles, optOnlyInIndex);
// create a patch with diffs between working dir and HEAD
if (!mkPatchFromWorkDir(msg, patchFile, selFiles))
goto fail;
/* Step 2: Stash working dir modified files */
if (partialSelection) {
errorReportingEnabled = false;
run("git stash"); // unfortunately 'git stash' is noisy on stderr
errorReportingEnabled = true;
}
/* Step 3: Call stg import/fold */
// setup a clean state
if (!run("stg status --reset"))
goto fail_and_unstash;
if (fold) {
// update patch message before to fold, note that
// command 'stg edit' requires stg version 0.14 or later
if (!msg.isEmpty() && !run("stg edit --message " + quote(msg.trimmed())))
goto fail_and_unstash;
if (!run("stg fold " + quote(patchFile)))
goto fail_and_unstash;
if (!run("stg refresh")) // refresh needed after fold
goto fail_and_unstash;
} else if (!run("stg import --mail --name " + quote(patchName) + " " + quote(patchFile)))
goto fail_and_unstash;
if (partialSelection) {
/* Step 4: Unstash and merge working dir modified files */
errorReportingEnabled = false;
run("git stash pop"); // unfortunately 'git stash' is noisy on stderr
errorReportingEnabled = true;
/* Step 5: restore not selected files that were already in index */
if (!notSel.empty() && !updateIndex(notSel))
goto fail;
}
ret = true;
goto exit;
fail_and_unstash:
if (partialSelection) {
run("git reset");
errorReportingEnabled = false;
run("git stash pop");
errorReportingEnabled = true;
}
fail:
exit:
QDir dir(workDir);
dir.remove(patchFile);
return ret;
}
bool Git::makeBranch(SCRef sha, SCRef branchName) {
return run("git branch " + branchName + " " + sha);
}
bool Git::makeTag(SCRef sha, SCRef tagName, SCRef msg) {
if (msg.isEmpty())
return run("git tag " + tagName + " " + sha);
return run("git tag -m \"" + msg + "\" " + tagName + " " + sha);
}
bool Git::deleteTag(SCRef sha) {
const QStringList tags(getRefName(sha, TAG));
if (!tags.empty())
return run("git tag -d " + tags.first()); // only one
return false;
}
bool Git::stgPush(SCRef sha) {
const QStringList patch(getRefName(sha, UN_APPLIED));
if (patch.count() != 1) {
dbp("ASSERT in Git::stgPush, found %1 patches instead of 1", patch.count());
return false;
}
return run("stg push " + quote(patch.first()));
}
bool Git::stgPop(SCRef sha) {
const QStringList patch(getRefName(sha, APPLIED));
if (patch.count() != 1) {
dbp("ASSERT in Git::stgPop, found %1 patches instead of 1", patch.count());
return false;
}
return run("stg pop " + quote(patch));
}
|