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
|
/*
Author: Marco Costalba (C) 2005-2007
Copyright: See COPYING file that comes with this distribution
*/
#ifndef COMMON_H
#define COMMON_H
#include <QColor>
#include <QEvent>
#include <QFont>
#include <QHash>
#include <QLatin1String>
#include <QVariant>
#include <QVector>
/*
QVariant does not support size_t type used in Qt containers, this is
a problem on 64bit systems where size_t != uint and when using debug
macros on size_t variables, as example dbg(vector.count()), a compile
error occurs.
Workaround this using a function template and a specialization.
Function _valueOf() is used by debug macros
*/
template<typename T> inline const QString _valueOf(const T& x) { return QVariant(x).toString(); }
template<> inline const QString _valueOf(const QStringList& x) { return x.join(" "); }
inline const QString& _valueOf(const QString& x) { return x; }
inline const QString _valueOf(size_t x) { return QString::number((uint)x); }
// some debug macros
#define dbg(x) qDebug(#x " is <%s>", _valueOf(x).toLatin1().constData())
#define dbs(x) qDebug(_valueOf(x).toLatin1().constData())
#define dbp(s, x) qDebug(QString(s).arg(_valueOf(x)).toLatin1().constData())
#define db1 qDebug("Mark Nr. 1")
#define db2 qDebug("Mark Nr. 2")
#define db3 qDebug("Mark Nr. 3")
#define db4 qDebug("Mark Nr. 4")
#define dbStart dbs("Starting timer..."); QTime _t; _t.start()
#define dbRestart dbp("Elapsed time is %1 ms", _t.restart())
// some syntactic sugar
#define FOREACH(type, i, c) for (type::const_iterator i((c).constBegin()), \
_e##i##_((c).constEnd()); i != _e##i##_; ++i)
#define FOREACH_SL(i, c) FOREACH(QStringList, i, c)
class QDataStream;
class QProcess;
class QSplitter;
class QWidget;
class ShaString;
// type shortcuts
typedef const QString& SCRef;
typedef QStringList& SList;
typedef const QStringList& SCList;
typedef QVector<QString> StrVect;
typedef QVector<ShaString> ShaVect;
typedef QSet<QString> ShaSet;
uint qHash(const ShaString&); // optimized custom hash for sha strings
namespace QGit {
// minimum git version required
extern const QString GIT_VERSION;
// key bindings
enum KeyType {
KEY_UP,
KEY_DOWN,
SHIFT_KEY_UP,
SHIFT_KEY_DOWN,
KEY_LEFT,
KEY_RIGHT,
CTRL_PLUS,
CTRL_MINUS,
KEY_U,
KEY_D,
KEY_DELETE,
KEY_B,
KEY_BCKSPC,
KEY_SPACE,
KEY_R,
KEY_P,
KEY_F
};
// tab pages
enum TabType {
TAB_REV,
TAB_PATCH,
TAB_FILE
};
// graph elements
enum LaneType {
EMPTY,
ACTIVE,
NOT_ACTIVE,
MERGE_FORK,
MERGE_FORK_R,
MERGE_FORK_L,
JOIN,
JOIN_R,
JOIN_L,
HEAD,
HEAD_R,
HEAD_L,
TAIL,
TAIL_R,
TAIL_L,
CROSS,
CROSS_EMPTY,
INITIAL,
BRANCH,
UNAPPLIED,
APPLIED,
BOUNDARY,
BOUNDARY_C, // corresponds to MERGE_FORK
BOUNDARY_R, // corresponds to MERGE_FORK_R
BOUNDARY_L, // corresponds to MERGE_FORK_L
LANE_TYPES_NUM
};
const int COLORS_NUM = 8;
// graph helpers
inline bool isHead(int x) { return (x == HEAD || x == HEAD_R || x == HEAD_L); }
inline bool isTail(int x) { return (x == TAIL || x == TAIL_R || x == TAIL_L); }
inline bool isJoin(int x) { return (x == JOIN || x == JOIN_R || x == JOIN_L); }
inline bool isFreeLane(int x) { return (x == NOT_ACTIVE || x == CROSS || isJoin(x)); }
inline bool isBoundary(int x) { return (x == BOUNDARY || x == BOUNDARY_C ||
x == BOUNDARY_R || x == BOUNDARY_L); }
inline bool isMerge(int x) { return (x == MERGE_FORK || x == MERGE_FORK_R ||
x == MERGE_FORK_L || isBoundary(x)); }
inline bool isActive(int x) { return (x == ACTIVE || x == INITIAL || x == BRANCH ||
isMerge(x)); }
// custom events
enum EventType {
ERROR_EV = 65432,
POPUP_LIST_EV = 65433,
POPUP_FILE_EV = 65434,
POPUP_TREE_EV = 65435,
MSG_EV = 65436,
ANN_PRG_EV = 65437,
UPD_DM_EV = 65438,
UPD_DM_MST_EV = 65439
};
// list views columns
enum ColumnType {
GRAPH_COL = 0,
ANN_ID_COL = 1,
LOG_COL = 2,
AUTH_COL = 3,
TIME_COL = 4,
COMMIT_COL = 97, // dummy col used for sha searching
LOG_MSG_COL = 98, // dummy col used for log messages searching
SHA_MAP_COL = 99 // dummy col used when filter output is a set of matching sha
};
inline bool isInfoCol(int x) { return (x == TIME_COL || x == LOG_COL || x == AUTH_COL); }
// default list view widths
const int DEF_GRAPH_COL_WIDTH = 80;
const int DEF_LOG_COL_WIDTH = 500;
const int DEF_AUTH_COL_WIDTH = 230;
const int DEF_TIME_COL_WIDTH = 160;
// colors
extern const QColor BROWN;
extern const QColor ORANGE;
extern const QColor DARK_ORANGE;
extern const QColor LIGHT_ORANGE;
extern const QColor LIGHT_BLUE;
extern const QColor PURPLE;
extern const QColor DARK_GREEN;
// initialized at startup according to system wide settings
extern QColor ODD_LINE_COL;
extern QColor EVEN_LINE_COL;
extern QFont STD_FONT;
extern QFont TYPE_WRITER_FONT;
extern QString GIT_DIR;
// patches drag and drop
extern const QString PATCHES_DIR;
extern const QString PATCHES_NAME;
// git index parameters
extern const QByteArray ZERO_SHA_BA;
extern const ShaString ZERO_SHA_RAW;
extern const QString ZERO_SHA;
extern const QString CUSTOM_SHA;
extern const QString ALL_MERGE_FILES;
// settings keys
extern const QString ORG_KEY;
extern const QString APP_KEY;
extern const QString GIT_DIR_KEY;
extern const QString PATCH_DIR_KEY;
extern const QString FMT_P_OPT_KEY;
extern const QString AM_P_OPT_KEY;
extern const QString STD_FNT_KEY;
extern const QString TYPWRT_FNT_KEY;
extern const QString FLAGS_KEY;
extern const QString CON_GEOM_KEY;
extern const QString CMT_GEOM_KEY;
extern const QString MAIN_GEOM_KEY;
extern const QString REV_GEOM_KEY;
extern const QString CMT_TEMPL_KEY;
extern const QString CMT_ARGS_KEY;
extern const QString RANGE_FROM_KEY;
extern const QString RANGE_TO_KEY;
extern const QString RANGE_OPT_KEY;
extern const QString EX_KEY;
extern const QString EX_PER_DIR_KEY;
extern const QString EXT_DIFF_KEY;
extern const QString REC_REP_KEY;
extern const QString ACT_LIST_KEY;
extern const QString ACT_GEOM_KEY;
extern const QString ACT_GROUP_KEY;
extern const QString ACT_TEXT_KEY;
extern const QString ACT_FLAGS_KEY;
// settings default values
extern const QString CMT_TEMPL_DEF;
extern const QString EX_DEF;
extern const QString EX_PER_DIR_DEF;
extern const QString EXT_DIFF_DEF;
// settings booleans
enum FlagType {
MSG_ON_NEW_F = 1 << 0,
ACT_REFRESH_F = 1 << 1,
NUMBERS_F = 1 << 2,
LOG_DIFF_TAB_F = 1 << 3,
ACT_CMD_LINE_F = 1 << 4,
DIFF_INDEX_F = 1 << 5,
SIGN_PATCH_F = 1 << 6,
SIGN_CMT_F = 1 << 7,
VERIFY_CMT_F = 1 << 8,
SMART_LBL_F = 1 << 9,
REL_DATE_F = 1 << 10,
ALL_BRANCHES_F = 1 << 11,
WHOLE_HISTORY_F = 1 << 12,
RANGE_SELECT_F = 1 << 13,
REOPEN_REPO_F = 1 << 14,
USE_CMT_MSG_F = 1 << 15
};
const int FLAGS_DEF = USE_CMT_MSG_F | RANGE_SELECT_F | SMART_LBL_F | VERIFY_CMT_F | SIGN_PATCH_F | LOG_DIFF_TAB_F | MSG_ON_NEW_F;
// ShaString helpers
const ShaString toTempSha(const QString&); // use as argument only, see definition
const ShaString toPersistentSha(const QString&, QVector<QByteArray>&);
// settings helpers
uint flags(SCRef flagsVariable);
bool testFlag(uint f, SCRef fv = FLAGS_KEY);
void setFlag(uint f, bool b, SCRef fv = FLAGS_KEY);
// tree view icons helpers
void initMimePix();
void freeMimePix();
const QPixmap* mimePix(SCRef fileName);
// geometry settings helers
typedef QVector<QSplitter*> splitVect;
void saveGeometrySetting(SCRef name, QWidget* w = NULL, splitVect* svPtr = NULL);
void restoreGeometrySetting(SCRef name, QWidget* w = NULL, splitVect* svPtr = NULL);
// misc helpers
bool stripPartialParaghraps(const QByteArray& src, QString* dst, QString* prev);
bool writeToFile(SCRef fileName, SCRef data, bool setExecutable = false);
bool writeToFile(SCRef fileName, const QByteArray& data, bool setExecutable = false);
bool readFromFile(SCRef fileName, QString& data);
bool startProcess(QProcess* proc, SCList args, SCRef buf = "", bool* winShell = NULL);
// cache file
const uint C_MAGIC = 0xA0B0C0D0;
const int C_VERSION = 15;
extern const QString BAK_EXT;
extern const QString C_DAT_FILE;
// misc
const int MAX_DICT_SIZE = 100003; // must be a prime number see QDict docs
const int MAX_MENU_ENTRIES = 20;
const int MAX_RECENT_REPOS = 7;
extern const QString QUOTE_CHAR;
extern const QString SCRIPT_EXT;
}
class ShaString : public QLatin1String {
public:
inline ShaString() : QLatin1String(NULL) {}
inline ShaString(const ShaString& sha) : QLatin1String(sha.latin1()) {}
inline explicit ShaString(const char* sha) : QLatin1String(sha) {}
inline bool operator!=(const ShaString& o) const { return !operator==(o); }
inline bool operator==(const ShaString& o) const {
return (latin1() == o.latin1()) || !qstrcmp(latin1(), o.latin1());
}
};
class Rev {
// prevent implicit C++ compiler defaults
Rev();
Rev(const Rev&);
Rev& operator=(const Rev&);
public:
Rev(const QByteArray& b, uint s, int idx, int* next, bool withDiff)
: orderIdx(idx), ba(b), start(s) {
indexed = isDiffCache = isApplied = isUnApplied = false;
descRefsMaster = ancRefsMaster = descBrnMaster = -1;
*next = indexData(true, withDiff);
}
bool isBoundary() const { return (ba.at(shaStart - 1) == '-'); }
uint parentsCount() const { return parentsCnt; }
const ShaString parent(int idx) const;
const QStringList parents() const;
const ShaString sha() const { return ShaString(ba.constData() + shaStart); }
const QString committer() const { setup(); return mid(comStart, autStart - comStart - 1); }
const QString author() const { setup(); return mid(autStart, autDateStart - autStart - 1); }
const QString authorDate() const { setup(); return mid(autDateStart, 10); }
const QString shortLog() const { setup(); return mid(sLogStart, sLogLen); }
const QString longLog() const { setup(); return mid(lLogStart, lLogLen); }
const QString diff() const { setup(); return mid(diffStart, diffLen); }
QVector<int> lanes, childs;
QVector<int> descRefs; // list of descendant refs index, normally tags
QVector<int> ancRefs; // list of ancestor refs index, normally tags
QVector<int> descBranches; // list of descendant branches index
int descRefsMaster; // in case of many Rev have the same descRefs, ancRefs or
int ancRefsMaster; // descBranches these are stored only once in a Rev pointed
int descBrnMaster; // by corresponding index xxxMaster
int orderIdx;
private:
inline void setup() const { if (!indexed) indexData(false, false); }
int indexData(bool quick, bool withDiff) const;
const QString mid(int start, int len) const;
const QString midSha(int start, int len) const;
const QByteArray& ba; // reference here!
const int start;
mutable int parentsCnt, shaStart, comStart, autStart, autDateStart;
mutable int sLogStart, sLogLen, lLogStart, lLogLen, diffStart, diffLen;
mutable bool indexed;
public:
bool isDiffCache, isApplied, isUnApplied; // put here to optimize padding
};
typedef QHash<ShaString, const Rev*> RevMap; // faster then a map
class RevFile {
friend class Cache; // to directly load status
friend class Git;
// Status information is splitted in a flags vector and in a string
// vector in 'status' are stored flags according to the info returned
// by 'git diff-tree' without -C option.
// In case of a working dir file an IN_INDEX flag is or-ed togheter in
// case file is present in git index.
// If file is renamed or copied an entry in 'extStatus' stores the
// value returned by 'git diff-tree -C' plus source and destination
// files info.
// When status of all the files is 'modified' then onlyModified is
// set, this let us to do some optimization in this common case
bool onlyModified;
QVector<int> status;
QVector<QString> extStatus;
// prevent implicit C++ compiler defaults
RevFile(const RevFile&);
RevFile& operator=(const RevFile&);
public:
enum StatusFlag {
MODIFIED = 1,
DELETED = 2,
NEW = 4,
RENAMED = 8,
COPIED = 16,
UNKNOWN = 32,
IN_INDEX = 64,
ANY = 127
};
RevFile() : onlyModified(true) {}
/* This QByteArray keeps indices in some dir and names vectors,
* defined outside RevFile. Paths are splitted in dir and file
* name, first all the dirs are listed then the file names to
* achieve a better compression when saved to disk.
* A single QByteArray is used instead of two vectors because it's
* much faster to load from disk when using a QDataStream
*/
QByteArray pathsIdx;
int dirAt(uint idx) const { return ((int*)pathsIdx.constData())[idx]; }
int nameAt(uint idx) const { return ((int*)pathsIdx.constData())[count() + idx]; }
QVector<int> mergeParent;
// helper functions
int count() const {
return pathsIdx.size() / ((int)sizeof(int) * 2);
}
bool statusCmp(int idx, StatusFlag sf) const {
return ((onlyModified ? MODIFIED : status.at(idx)) & sf);
}
const QString extendedStatus(int idx) const {
/*
rf.extStatus has size equal to position of latest copied/renamed file,
that could be lower then count(), so we have to explicitly check for
an out of bound condition.
*/
return (!extStatus.isEmpty() && idx < extStatus.count() ? extStatus.at(idx) : "");
}
const RevFile& operator>>(QDataStream&) const;
RevFile& operator<<(QDataStream&);
};
typedef QHash<ShaString, const RevFile*> RevFileMap;
class FileAnnotation {
public:
explicit FileAnnotation(int id) : isValid(false), annId(id) {}
FileAnnotation() : isValid(false) {}
QStringList lines;
bool isValid;
int annId;
QString fileSha;
};
typedef QHash<ShaString, FileAnnotation> AnnotateHistory;
class BaseEvent: public QEvent {
public:
BaseEvent(SCRef d, int id) : QEvent((QEvent::Type)id), payLoad(d) {}
const QString myData() const { return payLoad; }
private:
const QString payLoad; // passed by copy
};
#define DEF_EVENT(X, T) class X : public BaseEvent { public: \
explicit X (SCRef d) : BaseEvent(d, T) {} }
DEF_EVENT(MessageEvent, QGit::MSG_EV);
DEF_EVENT(AnnotateProgressEvent, QGit::ANN_PRG_EV);
class DeferredPopupEvent : public BaseEvent {
public:
DeferredPopupEvent(SCRef msg, int type) : BaseEvent(msg, type) {}
};
class MainExecErrorEvent : public BaseEvent {
public:
MainExecErrorEvent(SCRef c, SCRef e) : BaseEvent("", QGit::ERROR_EV), cmd(c), err(e) {}
const QString command() const { return cmd; }
const QString report() const { return err; }
private:
const QString cmd, err;
};
#endif
|