c398928b4ce9e69eb37ad8a49b27cfa8770114ba
[TortoiseGit.git] / src / TortoiseProc / GitLogListBase.h
blobc398928b4ce9e69eb37ad8a49b27cfa8770114ba
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // GitLogList.cpp : implementation file
21 #pragma once
23 #include "HintListCtrl.h"
24 #include "Git.h"
25 #include "ProjectProperties.h"
26 #include "TGitPath.h"
27 #include "registry.h"
28 #include "SplitterControl.h"
29 #include "Colors.h"
30 #include "MenuButton.h"
31 #include "LogDlgHelper.h"
32 #include "FilterEdit.h"
33 #include "GitRev.h"
34 #include "Tooltip.h"
35 //#include "GitLogList.h"
36 #include "lanes.h"
37 #include "GitLogCache.h"
38 #include <regex>
39 #include <GitStatusListCtrl.h>
40 #include "FindDlg.h"
42 // CGitLogList
43 #if (NTDDI_VERSION < NTDDI_LONGHORN)
45 enum LISTITEMSTATES_MINE {
46 LISS_NORMAL = 1,
47 LISS_HOT = 2,
48 LISS_SELECTED = 3,
49 LISS_DISABLED = 4,
50 LISS_SELECTEDNOTFOCUS = 5,
51 LISS_HOTSELECTED = 6,
54 // these defines must be in the order the columns are inserted!
57 #define MCS_NOTRAILINGDATES 0x0040
58 #define MCS_SHORTDAYSOFWEEK 0x0080
59 #define MCS_NOSELCHANGEONNAV 0x0100
61 #define DTM_SETMCSTYLE (DTM_FIRST + 11)
63 #endif
65 #define ICONITEMBORDER 5
67 #define GITLOG_START 0
68 #define GITLOG_START_ALL 1
69 #define GITLOG_END 100
71 #define LOGFILTER_ALL 0xFFFF
72 #define LOGFILTER_MESSAGES 0x0001
73 #define LOGFILTER_PATHS 0x0002
74 #define LOGFILTER_AUTHORS 0x0004
75 #define LOGFILTER_REVS 0x0008
76 #define LOGFILTER_REGEX 0x0010
77 #define LOGFILTER_BUGID 0x0020
78 #define LOGFILTER_SUBJECT 0x0040
79 #define LOGFILTER_REFNAME 0x0080
81 #define LOGLIST_SHOWNOREFS 0x0000
82 #define LOGLIST_SHOWLOCALBRANCHES 0x0001
83 #define LOGLIST_SHOWREMOTEBRANCHES 0x0002
84 #define LOGLIST_SHOWTAGS 0x0004
85 #define LOGLIST_SHOWSTASH 0x0008
86 #define LOGLIST_SHOWBISECT 0x0010
87 #define LOGLIST_SHOWALLREFS 0xFFFF
89 //typedef void CALLBACK_PROCESS(void * data, int progress);
90 #define MSG_LOADED (WM_USER+110)
91 #define MSG_LOAD_PERCENTAGE (WM_USER+111)
92 #define MSG_REFLOG_CHANGED (WM_USER+112)
93 #define MSG_FETCHED_DIFF (WM_USER+113)
95 class CThreadSafePtrArray: public CPtrArray
97 CComCriticalSection *m_critSec;
98 public:
99 CThreadSafePtrArray(CComCriticalSection *section){ m_critSec = section ;}
100 void * SafeGetAt(INT_PTR i)
102 if(m_critSec)
103 m_critSec->Lock();
105 if( i<0 || i>=GetCount())
107 if(m_critSec)
108 m_critSec->Unlock();
110 return NULL;
113 if(m_critSec)
114 m_critSec->Unlock();
116 return GetAt(i);
118 INT_PTR SafeAdd(void *newElement)
120 INT_PTR ret;
121 if(m_critSec)
122 m_critSec->Lock();
123 ret = Add(newElement);
124 if(m_critSec)
125 m_critSec->Unlock();
126 return ret;
129 void SafeRemoveAll()
131 if(m_critSec)
132 m_critSec->Lock();
133 RemoveAll();
134 if(m_critSec)
135 m_critSec->Unlock();
140 class CGitLogListBase : public CHintListCtrl
142 DECLARE_DYNAMIC(CGitLogListBase)
144 public:
145 CGitLogListBase();
146 virtual ~CGitLogListBase();
147 ProjectProperties m_ProjectProperties;
149 CFilterData m_Filter;
151 void UpdateProjectProperties()
153 // do not crash if config file is broken; needed for TortoiseGitBlame
156 m_ProjectProperties.ReadProps(this->m_Path);
158 catch (char *)
162 if ((!m_ProjectProperties.sUrl.IsEmpty())||(!m_ProjectProperties.sCheckRe.IsEmpty()))
163 m_bShowBugtraqColumn = true;
164 else
165 m_bShowBugtraqColumn = false;
168 void ResetWcRev(bool refresh = false)
170 m_wcRev.Clear();
171 m_wcRev.GetSubject() = CString(MAKEINTRESOURCE(IDS_LOG_WORKINGDIRCHANGES));
172 m_wcRev.m_Mark = _T('-');
173 m_wcRev.GetBody() = CString(MAKEINTRESOURCE(IDS_LOG_FETCHINGSTATUS));
174 m_wcRev.m_CallDiffAsync = DiffAsync;
175 InterlockedExchange(&m_wcRev.m_IsDiffFiles, FALSE);
176 if (refresh && m_bShowWC)
177 m_arShownList[0] = &m_wcRev;
179 void SetProjectPropertiesPath(const CTGitPath& path) {m_ProjectProperties.ReadProps(path);}
181 volatile LONG m_bNoDispUpdates;
182 BOOL m_IsIDReplaceAction;
183 BOOL m_IsOldFirst;
184 void hideFromContextMenu(unsigned __int64 hideMask, bool exclusivelyShow);
185 BOOL m_IsRebaseReplaceGraph;
186 BOOL m_bNoHightlightHead;
188 void MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct);
190 BOOL m_bStrictStopped;
191 BOOL m_bShowBugtraqColumn;
192 BOOL m_bSearchIndex;
193 BOOL m_bCancelled;
194 unsigned __int64 m_ContextMenuMask;
196 bool m_hasWC;
197 bool m_bShowWC;
198 GitRev m_wcRev;
199 volatile LONG m_bThreadRunning;
200 CLogCache m_LogCache;
202 CString m_startrev;
203 CString m_endrev;
205 // don't forget to bump BLAME_COLUMN_VERSION in GitStatusListCtrlHelpers.cpp if you change columns
206 enum
208 LOGLIST_GRAPH,
209 LOGLIST_REBASE,
210 LOGLIST_ID,
211 LOGLIST_HASH,
212 LOGLIST_ACTION,
213 LOGLIST_MESSAGE,
214 LOGLIST_AUTHOR,
215 LOGLIST_DATE,
216 LOGLIST_EMAIL,
217 LOGLIST_COMMIT_NAME,
218 LOGLIST_COMMIT_EMAIL,
219 LOGLIST_COMMIT_DATE,
220 LOGLIST_BUG,
221 LOGLIST_MESSAGE_MAX=300,
222 LOGLIST_MESSAGE_MIN=200,
224 GIT_LOG_GRAPH = 1<< LOGLIST_GRAPH,
225 GIT_LOG_REBASE = 1<< LOGLIST_REBASE,
226 GIT_LOG_ID = 1<< LOGLIST_ID,
227 GIT_LOG_HASH = 1<< LOGLIST_HASH,
228 GIT_LOG_ACTIONS = 1<< LOGLIST_ACTION,
229 GIT_LOG_MESSAGE = 1<< LOGLIST_MESSAGE,
230 GIT_LOG_AUTHOR = 1<< LOGLIST_AUTHOR,
231 GIT_LOG_DATE = 1<< LOGLIST_DATE,
232 GIT_LOG_EMAIL = 1<< LOGLIST_EMAIL,
233 GIT_LOG_COMMIT_NAME = 1<< LOGLIST_COMMIT_NAME,
234 GIT_LOG_COMMIT_EMAIL= 1<< LOGLIST_COMMIT_EMAIL,
235 GIT_LOG_COMMIT_DATE = 1<< LOGLIST_COMMIT_DATE,
236 GIT_LOGLIST_BUG = 1<< LOGLIST_BUG,
239 enum
241 // needs to start with 1, since 0 is the return value if *nothing* is clicked on in the context menu
242 ID_COMPARE = 1, // compare revision with WC
243 ID_SAVEAS,
244 ID_COMPARETWO, // compare two revisions
245 ID_COPY,
246 ID_REVERTREV,
247 ID_MERGEREV,
248 ID_GNUDIFF1, // compare with WC, unified
249 ID_GNUDIFF2, // compare two revisions, unified
250 ID_FINDENTRY,
251 ID_OPEN,
252 ID_BLAME,
253 ID_REPOBROWSE,
254 ID_LOG,
255 ID_EDITNOTE,
256 ID_DIFF,
257 ID_OPENWITH,
258 ID_COPYCLIPBOARD,
259 ID_COPYHASH,
260 ID_REVERTTOREV,
261 ID_BLAMECOMPARE,
262 ID_BLAMEDIFF,
263 ID_VIEWREV,
264 ID_VIEWPATHREV,
265 ID_EXPORT,
266 ID_COMPAREWITHPREVIOUS,
267 ID_BLAMEWITHPREVIOUS,
268 ID_CHERRY_PICK,
269 ID_CREATE_BRANCH,
270 ID_CREATE_TAG,
271 ID_SWITCHTOREV,
272 ID_SWITCHBRANCH,
273 ID_RESET,
274 ID_REBASE_PICK,
275 ID_REBASE_EDIT,
276 ID_REBASE_SQUASH,
277 ID_REBASE_SKIP,
278 ID_COMBINE_COMMIT,
279 ID_STASH_SAVE,
280 ID_STASH_LIST,
281 ID_STASH_POP,
282 ID_REFLOG_STASH_APPLY,
283 ID_REFLOG_DEL,
284 ID_REBASE_TO_VERSION,
285 ID_CREATE_PATCH,
286 ID_DELETE,
287 ID_COMMIT,
288 ID_PUSH,
289 ID_FETCH,
290 ID_SHOWBRANCHES,
291 ID_COPYCLIPBOARDMESSAGES,
292 ID_BISECTSTART,
294 enum
296 ID_COPY_ALL,
297 ID_COPY_MESSAGE,
298 ID_COPY_SUBJECT,
299 ID_COPY_HASH,
301 inline unsigned __int64 GetContextMenuBit(int i){ return ((unsigned __int64 )0x1)<<i ;}
302 void InsertGitColumn();
303 void ResizeAllListCtrlCols();
304 void CopySelectionToClipBoard(int toCopy = ID_COPY_ALL);
305 void DiffSelectedRevWithPrevious();
306 bool IsSelectionContinuous();
307 int BeginFetchLog();
308 int FillGitLog(CTGitPath *path,int infomask=CGit:: LOG_INFO_STAT| CGit::LOG_INFO_FILESTATE | CGit::LOG_INFO_SHOW_MERGEDFILE,CString *from=NULL,CString *to=NULL);
309 BOOL IsMatchFilter(bool bRegex, GitRev *pRev, tr1::wregex &pat);
311 CFindDlg *m_pFindDialog;
312 static const UINT m_FindDialogMessage;
313 void OnFind();
315 static const UINT m_ScrollToMessage;
317 inline int ShownCountWithStopped() const { return (int)m_arShownList.GetCount() + (m_bStrictStopped ? 1 : 0); }
318 int FetchLogAsync(void * data=NULL);
319 CThreadSafePtrArray m_arShownList;
320 void Refresh(BOOL IsCleanFilter=TRUE);
321 void RecalculateShownList(CThreadSafePtrArray * pShownlist);
322 void Clear();
324 DWORD m_SelectedFilters;
325 bool m_bFilterWithRegex;
326 CLogDataVector m_logEntries;
327 void RemoveFilter();
328 void StartFilter();
329 bool ValidateRegexp(LPCTSTR regexp_str, tr1::wregex& pat, bool bMatchCase = false );
330 CString m_sFilterText;
332 __time64_t m_From;
333 __time64_t m_To;
335 CTGitPath m_Path;
336 int m_ShowMask;
337 CGitHash m_lastSelectedHash;
338 int m_ShowRefMask;
340 void GetTimeRange(CTime &oldest,CTime &latest);
341 virtual void ContextMenuAction(int cmd,int FirstSelect, int LastSelect, CMenu * menu)=0;
342 void ReloadHashMap()
344 m_HashMap.clear();
346 if (g_Git.GetMapHashToFriendName(m_HashMap))
347 MessageBox(g_Git.GetGitLastErr(_T("Could not get all refs.")), _T("TortoiseGit"), MB_ICONERROR);
349 m_CurrentBranch=g_Git.GetCurrentBranch();
351 if (g_Git.GetHash(m_HeadHash, _T("HEAD")))
353 MessageBox(g_Git.GetGitLastErr(_T("Could not get HEAD hash. Quitting...")), _T("TortoiseGit"), MB_ICONERROR);
354 ExitProcess(1);
357 m_wcRev.m_ParentHash.clear();
358 m_wcRev.m_ParentHash.push_back(m_HeadHash);
360 FetchRemoteList();
361 FetchTrackingBranchList();
363 void SafeTerminateThread()
365 if (m_LoadingThread!=NULL && InterlockedExchange(&m_bExitThread, TRUE) == FALSE)
367 DWORD ret = WAIT_TIMEOUT;
368 for (int i = 0; i < 200 && m_bThreadRunning; i++)
369 ret =::WaitForSingleObject(m_LoadingThread->m_hThread, 100);
370 if (ret == WAIT_TIMEOUT && m_bThreadRunning)
371 ::TerminateThread(m_LoadingThread, 0);
372 m_LoadingThread = NULL;
376 bool IsInWorkingThread()
378 return (AfxGetThread() == m_LoadingThread);
381 void SetStartRef(const CString& StartRef)
383 m_StartRef=StartRef;
386 CString GetStartRef() const {return m_StartRef;}
388 int m_nSearchIndex;
390 volatile LONG m_bExitThread;
391 CWinThread* m_LoadingThread;
392 MAP_HASH_NAME m_HashMap;
393 std::map<CString, std::pair<CString, CString>> m_TrackingMap;
395 public:
396 CString m_ColumnRegKey;
398 protected:
399 typedef struct {
400 CString name;
401 COLORREF color;
402 CString simplifiedName;
403 bool singleRemote;
404 bool hasTracking;
405 bool sameName;
406 } REFLABEL;
408 DECLARE_MESSAGE_MAP()
409 afx_msg void OnDestroy();
410 virtual afx_msg void OnNMCustomdrawLoglist(NMHDR *pNMHDR, LRESULT *pResult);
411 virtual afx_msg void OnLvnGetdispinfoLoglist(NMHDR *pNMHDR, LRESULT *pResult);
412 afx_msg LRESULT OnFindDialogMessage(WPARAM wParam, LPARAM lParam);
413 afx_msg LRESULT OnScrollToMessage(WPARAM wParam, LPARAM lParam);
414 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
415 afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
416 afx_msg LRESULT OnLoad(WPARAM wParam, LPARAM lParam);
417 afx_msg void OnHdnBegintrack(NMHDR *pNMHDR, LRESULT *pResult);
418 afx_msg void OnHdnItemchanging(NMHDR *pNMHDR, LRESULT *pResult);
419 afx_msg void OnColumnResized(NMHDR *pNMHDR, LRESULT *pResult);
420 afx_msg void OnColumnMoved(NMHDR *pNMHDR, LRESULT *pResult);
421 void OnNMDblclkLoglist(NMHDR * /*pNMHDR*/, LRESULT *pResult);
422 afx_msg void OnLvnOdfinditemLoglist(NMHDR *pNMHDR, LRESULT *pResult);
423 void PreSubclassWindow();
424 virtual BOOL PreTranslateMessage(MSG* pMsg);
425 static UINT LogThreadEntry(LPVOID pVoid);
426 UINT LogThread();
427 void FetchRemoteList();
428 void FetchTrackingBranchList();
429 void FetchLastLogInfo();
430 void FetchFullLogInfo(CString &from, CString &to);
431 void FillBackGround(HDC hdc, DWORD_PTR Index, CRect &rect);
432 void DrawTagBranch(HDC hdc, CRect &rect, INT_PTR index, std::vector<REFLABEL> refList);
433 void DrawGraph(HDC,CRect &rect,INT_PTR index);
435 void paintGraphLane(HDC hdc,int laneHeight, int type, int x1, int x2,
436 const COLORREF& col,const COLORREF& activeColor, int top) ;
437 void DrawLine(HDC hdc, int x1, int y1, int x2, int y2){::MoveToEx(hdc,x1,y1,NULL);::LineTo(hdc,x2,y2);}
439 * Save column widths to the registry
441 void SaveColumnWidths(); // save col widths to the registry
443 BOOL IsEntryInDateRange(int i);
445 int GetHeadIndex();
447 std::vector<GitRev*> m_AsynDiffList;
448 CComCriticalSection m_AsynDiffListLock;
449 HANDLE m_AsyncDiffEvent;
450 volatile LONG m_AsyncThreadExit;
451 CWinThread* m_DiffingThread;
453 static int DiffAsync(GitRev *rev, void *data)
455 ULONGLONG offset=((CGitLogListBase*)data)->m_LogCache.GetOffset(rev->m_CommitHash);
456 if(!offset)
458 ((CGitLogListBase*)data)->m_AsynDiffListLock.Lock();
459 ((CGitLogListBase*)data)->m_AsynDiffList.push_back(rev);
460 ((CGitLogListBase*)data)->m_AsynDiffListLock.Unlock();
461 ::SetEvent(((CGitLogListBase*)data)->m_AsyncDiffEvent);
463 else
465 if(((CGitLogListBase*)data)->m_LogCache.LoadOneItem(*rev,offset))
467 ((CGitLogListBase*)data)->m_AsynDiffListLock.Lock();
468 ((CGitLogListBase*)data)->m_AsynDiffList.push_back(rev);
469 ((CGitLogListBase*)data)->m_AsynDiffListLock.Unlock();
470 ::SetEvent(((CGitLogListBase*)data)->m_AsyncDiffEvent);
472 InterlockedExchange(&rev->m_IsDiffFiles, TRUE);
473 if(rev->m_IsDiffFiles && rev->m_IsCommitParsed)
474 InterlockedExchange(&rev->m_IsFull, TRUE);
476 return 0;
479 static UINT AsyncThread(LPVOID data)
481 return ((CGitLogListBase*)data)->AsyncDiffThread();
484 int AsyncDiffThread();
485 bool m_AsyncThreadExited;
487 public:
488 void SafeTerminateAsyncDiffThread()
490 if(m_DiffingThread!=NULL && m_AsyncThreadExit != TRUE)
492 m_AsyncThreadExit = TRUE;
493 ::SetEvent(m_AsyncDiffEvent);
494 DWORD ret = WAIT_TIMEOUT;
495 // do not block here, but process messages and ask until the thread ends
496 while (ret == WAIT_TIMEOUT && !m_AsyncThreadExited)
498 AfxGetThread()->PumpMessage(); // process messages, so that GetTopIndex and so on in the thread work
499 ret = ::WaitForSingleObject(m_DiffingThread->m_hThread, 100);
501 m_DiffingThread = NULL;
505 protected:
506 CComCriticalSection m_critSec;
508 HICON m_hModifiedIcon;
509 HICON m_hReplacedIcon;
510 HICON m_hAddedIcon;
511 HICON m_hDeletedIcon;
512 HICON m_hFetchIcon;
514 HFONT m_boldFont;
516 CRegDWORD m_regMaxBugIDColWidth;
518 void *m_ProcData;
519 CStoreSelection* m_pStoreSelection;
521 CColors m_Colors;
523 CString m_CurrentBranch;
524 CGitHash m_HeadHash;
526 CString m_StartRef; //Ref of the top-commit
528 COLORREF m_LineColors[Lanes::COLORS_NUM];
529 DWORD m_DateFormat; // DATE_SHORTDATE or DATE_LONGDATE
530 bool m_bRelativeTimes; // Show relative times
531 GIT_LOG m_DllGitLog;
532 CString m_SingleRemote;
533 bool m_bSymbolizeRefNames;
535 ColumnManager m_ColumnManager;
536 DWORD m_dwDefaultColumns;