1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2014 - 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
23 #include "HintListCtrl.h"
25 #include "ProjectProperties.h"
28 #include "SplitterControl.h"
30 #include "MenuButton.h"
31 #include "LogDlgHelper.h"
32 #include "FilterEdit.h"
36 #include "GitLogCache.h"
38 #include "GitStatusListCtrl.h"
42 #define ICONITEMBORDER 5
44 #define GITLOG_START 0
45 #define GITLOG_START_ALL 1
46 #define GITLOG_END 100
48 #define LOGFILTER_ALL 0xFFFF
49 #define LOGFILTER_TOGGLE 0x8000
50 #define LOGFILTER_MESSAGES 0x0001
51 #define LOGFILTER_PATHS 0x0002
52 #define LOGFILTER_AUTHORS 0x0004
53 #define LOGFILTER_REVS 0x0008
54 #define LOGFILTER_REGEX 0x0010
55 #define LOGFILTER_BUGID 0x0020
56 #define LOGFILTER_SUBJECT 0x0040
57 #define LOGFILTER_REFNAME 0x0080
58 #define LOGFILTER_EMAILS 0x0100
60 #define LOGLIST_SHOWNOTHING 0x0000
61 #define LOGLIST_SHOWLOCALBRANCHES 0x0001
62 #define LOGLIST_SHOWREMOTEBRANCHES 0x0002
63 #define LOGLIST_SHOWTAGS 0x0004
64 #define LOGLIST_SHOWSTASH 0x0008
65 #define LOGLIST_SHOWBISECT 0x0010
66 #define LOGLIST_SHOWALLREFS 0xFFFF
68 //typedef void CALLBACK_PROCESS(void * data, int progress);
69 #define MSG_LOADED (WM_USER+110)
70 #define MSG_LOAD_PERCENTAGE (WM_USER+111)
71 #define MSG_REFLOG_CHANGED (WM_USER+112)
72 #define MSG_FETCHED_DIFF (WM_USER+113)
74 class CThreadSafePtrArray
: public CPtrArray
76 CComCriticalSection
*m_critSec
;
78 CThreadSafePtrArray(CComCriticalSection
*section
){ m_critSec
= section
;}
79 void * SafeGetAt(INT_PTR i
)
84 if( i
<0 || i
>=GetCount())
97 INT_PTR
SafeAdd(void *newElement
)
102 ret
= Add(newElement
);
119 class CGitLogListBase
: public CHintListCtrl
121 DECLARE_DYNAMIC(CGitLogListBase
)
125 virtual ~CGitLogListBase();
126 ProjectProperties m_ProjectProperties
;
128 CFilterData m_Filter
;
130 void UpdateProjectProperties()
132 m_ProjectProperties
.ReadProps();
134 if ((!m_ProjectProperties
.sUrl
.IsEmpty())||(!m_ProjectProperties
.sCheckRe
.IsEmpty()))
135 m_bShowBugtraqColumn
= true;
137 m_bShowBugtraqColumn
= false;
140 void ResetWcRev(bool refresh
= false)
143 m_wcRev
.GetSubject() = CString(MAKEINTRESOURCE(IDS_LOG_WORKINGDIRCHANGES
));
144 m_wcRev
.m_Mark
= _T('-');
145 m_wcRev
.GetBody() = CString(MAKEINTRESOURCE(IDS_LOG_FETCHINGSTATUS
));
146 m_wcRev
.m_CallDiffAsync
= DiffAsync
;
147 InterlockedExchange(&m_wcRev
.m_IsDiffFiles
, FALSE
);
148 if (refresh
&& m_bShowWC
)
149 m_arShownList
[0] = &m_wcRev
;
152 volatile LONG m_bNoDispUpdates
;
153 BOOL m_IsIDReplaceAction
;
155 void hideFromContextMenu(unsigned __int64 hideMask
, bool exclusivelyShow
);
156 BOOL m_IsRebaseReplaceGraph
;
157 BOOL m_bNoHightlightHead
;
159 void MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct
);
161 BOOL m_bStrictStopped
;
162 BOOL m_bShowBugtraqColumn
;
165 unsigned __int64 m_ContextMenuMask
;
170 volatile LONG m_bThreadRunning
;
171 CLogCache m_LogCache
;
174 // don't forget to bump BLAME_COLUMN_VERSION in GitStatusListCtrlHelpers.cpp if you change columns
187 LOGLIST_COMMIT_EMAIL
,
190 LOGLIST_MESSAGE_MAX
=300,
191 LOGLIST_MESSAGE_MIN
=200,
193 GIT_LOG_GRAPH
= 1<< LOGLIST_GRAPH
,
194 GIT_LOG_REBASE
= 1<< LOGLIST_REBASE
,
195 GIT_LOG_ID
= 1<< LOGLIST_ID
,
196 GIT_LOG_HASH
= 1<< LOGLIST_HASH
,
197 GIT_LOG_ACTIONS
= 1<< LOGLIST_ACTION
,
198 GIT_LOG_MESSAGE
= 1<< LOGLIST_MESSAGE
,
199 GIT_LOG_AUTHOR
= 1<< LOGLIST_AUTHOR
,
200 GIT_LOG_DATE
= 1<< LOGLIST_DATE
,
201 GIT_LOG_EMAIL
= 1<< LOGLIST_EMAIL
,
202 GIT_LOG_COMMIT_NAME
= 1<< LOGLIST_COMMIT_NAME
,
203 GIT_LOG_COMMIT_EMAIL
= 1<< LOGLIST_COMMIT_EMAIL
,
204 GIT_LOG_COMMIT_DATE
= 1<< LOGLIST_COMMIT_DATE
,
205 GIT_LOGLIST_BUG
= 1<< LOGLIST_BUG
,
210 // needs to start with 1, since 0 is the return value if *nothing* is clicked on in the context menu
211 ID_COMPARE
= 1, // compare revision with WC
213 ID_COMPARETWO
, // compare two revisions
217 ID_GNUDIFF1
, // compare with WC, unified
218 ID_GNUDIFF2
, // compare two revisions, unified
235 ID_COMPAREWITHPREVIOUS
,
251 ID_REFLOG_STASH_APPLY
,
253 ID_REBASE_TO_VERSION
,
261 ID_COPYCLIPBOARDMESSAGES
,
264 ID_LOG_VIEWRANGE_REACHABLEFROMONLYONE
,
277 FILTERSHOW_MERGEPOINTS
= 2,
278 FILTERSHOW_ANYCOMMIT
= 4,
279 FILTERSHOW_ALL
= FILTERSHOW_ANYCOMMIT
| FILTERSHOW_REFS
| FILTERSHOW_MERGEPOINTS
284 LOGACTIONS_REBASE_CURRENT
= 0x08000000,
285 LOGACTIONS_REBASE_PICK
= 0x04000000,
286 LOGACTIONS_REBASE_SQUASH
= 0x02000000,
287 LOGACTIONS_REBASE_EDIT
= 0x01000000,
288 LOGACTIONS_REBASE_DONE
= 0x00800000,
289 LOGACTIONS_REBASE_SKIP
= 0x00400000,
290 LOGACTIONS_REBASE_MASK
= 0x0FC00000,
291 LOGACTIONS_REBASE_MODE_MASK
= 0x07C00000,
293 inline unsigned __int64
GetContextMenuBit(int i
){ return ((unsigned __int64
)0x1)<<i
;}
294 static CString
GetRebaseActionName(int action
);
295 void InsertGitColumn();
296 void ResizeAllListCtrlCols();
297 void CopySelectionToClipBoard(int toCopy
= ID_COPY_ALL
);
298 void DiffSelectedRevWithPrevious();
299 bool IsSelectionContinuous();
301 int FillGitLog(CTGitPath
*path
, CString
*range
= NULL
, int infomask
= CGit::LOG_INFO_STAT
| CGit::LOG_INFO_FILESTATE
| CGit::LOG_INFO_SHOW_MERGEDFILE
);
302 int FillGitLog(std::set
<CGitHash
>& hashes
);
303 BOOL
IsMatchFilter(bool bRegex
, GitRev
*pRev
, std::tr1::wregex
&pat
);
304 bool ShouldShowFilter(GitRev
*pRev
, const std::map
<CGitHash
, std::set
<CGitHash
>> &commitChildren
);
305 void ShowGraphColumn(bool bShow
);
306 CString
GetTagInfo(GitRev
* pLogEntry
);
308 CFindDlg
*m_pFindDialog
;
309 static const UINT m_FindDialogMessage
;
312 static const UINT m_ScrollToMessage
;
313 static const UINT m_RebaseActionMessage
;
315 inline int ShownCountWithStopped() const { return (int)m_arShownList
.GetCount() + (m_bStrictStopped
? 1 : 0); }
316 int FetchLogAsync(void * data
=NULL
);
317 CThreadSafePtrArray m_arShownList
;
318 void Refresh(BOOL IsCleanFilter
=TRUE
);
319 void RecalculateShownList(CThreadSafePtrArray
* pShownlist
);
322 DWORD m_SelectedFilters
;
323 FilterShow m_ShowFilter
;
324 bool m_bFilterWithRegex
;
325 CLogDataVector m_logEntries
;
328 bool ValidateRegexp(LPCTSTR regexp_str
, std::tr1::wregex
& pat
, bool bMatchCase
= false );
329 CString m_sFilterText
;
336 CGitHash m_lastSelectedHash
;
339 void GetTimeRange(CTime
&oldest
,CTime
&latest
);
340 virtual void GetParentHashes(GitRev
*pRev
, GIT_REV_LIST
&parentHash
);
341 virtual void ContextMenuAction(int cmd
,int FirstSelect
, int LastSelect
, CMenu
* menu
)=0;
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
);
357 m_wcRev
.m_ParentHash
.clear();
358 m_wcRev
.m_ParentHash
.push_back(m_HeadHash
);
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 SetRange(const CString
& range
)
386 CString
GetRange() const { return m_sRange
; }
388 bool HasFilterText() const { return !m_sFilterText
.IsEmpty() && m_sFilterText
!= _T("!"); }
392 volatile LONG m_bExitThread
;
393 CWinThread
* m_LoadingThread
;
394 MAP_HASH_NAME m_HashMap
;
395 std::map
<CString
, std::pair
<CString
, CString
>> m_TrackingMap
;
398 CString m_ColumnRegKey
;
399 CComCriticalSection m_critSec_AsyncDiff
;
405 CString simplifiedName
;
412 DECLARE_MESSAGE_MAP()
413 afx_msg
void OnDestroy();
414 virtual afx_msg
void OnNMCustomdrawLoglist(NMHDR
*pNMHDR
, LRESULT
*pResult
);
415 virtual afx_msg
void OnLvnGetdispinfoLoglist(NMHDR
*pNMHDR
, LRESULT
*pResult
);
416 afx_msg LRESULT
OnFindDialogMessage(WPARAM wParam
, LPARAM lParam
);
417 afx_msg LRESULT
OnScrollToMessage(WPARAM wParam
, LPARAM lParam
);
418 afx_msg
int OnCreate(LPCREATESTRUCT lpCreateStruct
);
419 afx_msg
void OnContextMenu(CWnd
* pWnd
, CPoint point
);
420 afx_msg LRESULT
OnLoad(WPARAM wParam
, LPARAM lParam
);
421 afx_msg
void OnHdnBegintrack(NMHDR
*pNMHDR
, LRESULT
*pResult
);
422 afx_msg
void OnHdnItemchanging(NMHDR
*pNMHDR
, LRESULT
*pResult
);
423 afx_msg
void OnColumnResized(NMHDR
*pNMHDR
, LRESULT
*pResult
);
424 afx_msg
void OnColumnMoved(NMHDR
*pNMHDR
, LRESULT
*pResult
);
425 void OnNMDblclkLoglist(NMHDR
* /*pNMHDR*/, LRESULT
*pResult
);
426 afx_msg
void OnLvnOdfinditemLoglist(NMHDR
*pNMHDR
, LRESULT
*pResult
);
427 void PreSubclassWindow();
428 virtual BOOL
PreTranslateMessage(MSG
* pMsg
);
429 static UINT
LogThreadEntry(LPVOID pVoid
);
431 bool IsOnStash(int index
);
432 bool IsStash(const GitRev
* pSelLogEntry
);
433 void FetchRemoteList();
434 void FetchTrackingBranchList();
435 void FetchLastLogInfo();
436 void FetchFullLogInfo(CString
&from
, CString
&to
);
437 void FillBackGround(HDC hdc
, DWORD_PTR Index
, CRect
&rect
);
438 void DrawTagBranchMessage(HDC hdc
, CRect
&rect
, INT_PTR index
, std::vector
<REFLABEL
> &refList
);
439 void DrawTagBranch(HDC hdc
, CDC
&W_Dc
, HTHEME hTheme
, CRect
&rect
, CRect
&rt
, LVITEM
&rItem
, GitRev
* data
, std::vector
<REFLABEL
> &refList
);
440 void DrawGraph(HDC
,CRect
&rect
,INT_PTR index
);
442 void paintGraphLane(HDC hdc
,int laneHeight
, int type
, int x1
, int x2
,
443 const COLORREF
& col
,const COLORREF
& activeColor
, int top
) ;
444 void DrawLine(HDC hdc
, int x1
, int y1
, int x2
, int y2
){::MoveToEx(hdc
,x1
,y1
,NULL
);::LineTo(hdc
,x2
,y2
);}
446 * Save column widths to the registry
448 void SaveColumnWidths(); // save col widths to the registry
450 BOOL
IsEntryInDateRange(int i
);
454 std::vector
<GitRev
*> m_AsynDiffList
;
455 CComCriticalSection m_AsynDiffListLock
;
456 HANDLE m_AsyncDiffEvent
;
457 volatile LONG m_AsyncThreadExit
;
458 CWinThread
* m_DiffingThread
;
460 static int DiffAsync(GitRev
*rev
, void *data
)
462 ULONGLONG offset
=((CGitLogListBase
*)data
)->m_LogCache
.GetOffset(rev
->m_CommitHash
);
465 ((CGitLogListBase
*)data
)->m_AsynDiffListLock
.Lock();
466 ((CGitLogListBase
*)data
)->m_AsynDiffList
.push_back(rev
);
467 ((CGitLogListBase
*)data
)->m_AsynDiffListLock
.Unlock();
468 ::SetEvent(((CGitLogListBase
*)data
)->m_AsyncDiffEvent
);
472 if(((CGitLogListBase
*)data
)->m_LogCache
.LoadOneItem(*rev
,offset
))
474 ((CGitLogListBase
*)data
)->m_AsynDiffListLock
.Lock();
475 ((CGitLogListBase
*)data
)->m_AsynDiffList
.push_back(rev
);
476 ((CGitLogListBase
*)data
)->m_AsynDiffListLock
.Unlock();
477 ::SetEvent(((CGitLogListBase
*)data
)->m_AsyncDiffEvent
);
479 InterlockedExchange(&rev
->m_IsDiffFiles
, TRUE
);
480 if(rev
->m_IsDiffFiles
&& rev
->m_IsCommitParsed
)
481 InterlockedExchange(&rev
->m_IsFull
, TRUE
);
486 static UINT
AsyncThread(LPVOID data
)
488 return ((CGitLogListBase
*)data
)->AsyncDiffThread();
491 int AsyncDiffThread();
492 bool m_AsyncThreadExited
;
494 int SafeGetAction(GitRev
*rev
, int **ptr
= nullptr)
498 int *p
= &rev
->GetAction(this);
503 catch (const char* msg
)
505 MessageBox(_T("Could not get action of commit ") + rev
->m_CommitHash
.ToString() + _T(".\nlibgit reports:\n") + CString(msg
), _T("TortoiseGit"), MB_ICONERROR
);
511 void SafeTerminateAsyncDiffThread()
513 if(m_DiffingThread
!=NULL
&& m_AsyncThreadExit
!= TRUE
)
515 m_AsyncThreadExit
= TRUE
;
516 ::SetEvent(m_AsyncDiffEvent
);
517 DWORD ret
= WAIT_TIMEOUT
;
518 // do not block here, but process messages and ask until the thread ends
519 while (ret
== WAIT_TIMEOUT
&& !m_AsyncThreadExited
)
522 if (::PeekMessage(&msg
, NULL
, 0,0, PM_NOREMOVE
))
523 AfxGetThread()->PumpMessage(); // process messages, so that GetTopIndex and so on in the thread work
524 ret
= ::WaitForSingleObject(m_DiffingThread
->m_hThread
, 100);
526 m_DiffingThread
= NULL
;
531 CComCriticalSection m_critSec
;
533 HICON m_hModifiedIcon
;
534 HICON m_hReplacedIcon
;
536 HICON m_hDeletedIcon
;
541 CRegDWORD m_regMaxBugIDColWidth
;
544 CStoreSelection
* m_pStoreSelection
;
548 CString m_CurrentBranch
;
551 COLORREF m_LineColors
[Lanes::COLORS_NUM
];
554 DWORD m_DateFormat
; // DATE_SHORTDATE or DATE_LONGDATE
555 bool m_bRelativeTimes
; // Show relative times
557 CString m_SingleRemote
;
558 bool m_bTagsBranchesOnRightSide
;
559 bool m_bSymbolizeRefNames
;
560 bool m_bIncludeBoundaryCommits
;
562 ColumnManager m_ColumnManager
;
563 DWORD m_dwDefaultColumns
;