OSDN Git Service

b46cc7e39e87e581223e44e9f7d116cfce2c19f9
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / GitLogListBase.cpp
1 // GitLogList.cpp : implementation file\r
2 //\r
3 /*\r
4         Description: qgit revision list view\r
5 \r
6         Author: Marco Costalba (C) 2005-2007\r
7 \r
8         Copyright: See COPYING file that comes with this distribution\r
9 \r
10 */\r
11 #include "stdafx.h"\r
12 #include "GitLogListBase.h"\r
13 #include "GitRev.h"\r
14 //#include "VssStyle.h"\r
15 #include "IconMenu.h"\r
16 // CGitLogListBase\r
17 #include "cursor.h"\r
18 #include "InputDlg.h"\r
19 #include "PropDlg.h"\r
20 #include "SVNProgressDlg.h"\r
21 #include "ProgressDlg.h"\r
22 //#include "RepositoryBrowser.h"\r
23 //#include "CopyDlg.h"\r
24 //#include "StatGraphDlg.h"\r
25 #include "Logdlg.h"\r
26 #include "MessageBox.h"\r
27 #include "Registry.h"\r
28 #include "AppUtils.h"\r
29 #include "PathUtils.h"\r
30 #include "StringUtils.h"\r
31 #include "UnicodeUtils.h"\r
32 #include "TempFile.h"\r
33 //#include "GitInfo.h"\r
34 //#include "GitDiff.h"\r
35 #include "IconMenu.h"\r
36 //#include "RevisionRangeDlg.h"\r
37 //#include "BrowseFolder.h"\r
38 //#include "BlameDlg.h"\r
39 //#include "Blame.h"\r
40 //#include "GitHelpers.h"\r
41 #include "GitStatus.h"\r
42 //#include "LogDlgHelper.h"\r
43 //#include "CachedLogInfo.h"\r
44 //#include "RepositoryInfo.h"\r
45 //#include "EditPropertiesDlg.h"\r
46 #include "FileDiffDlg.h"\r
47 #include "..\\TortoiseShell\\Resource.h"\r
48 \r
49 \r
50 IMPLEMENT_DYNAMIC(CGitLogListBase, CHintListCtrl)\r
51 \r
52 CGitLogListBase::CGitLogListBase():CHintListCtrl()\r
53         ,m_regMaxBugIDColWidth(_T("Software\\TortoiseGit\\MaxBugIDColWidth"), 200)\r
54         ,m_nSearchIndex(0)\r
55         ,m_bNoDispUpdates(FALSE)\r
56         , m_bThreadRunning(FALSE)\r
57         , m_bStrictStopped(false)\r
58         , m_pStoreSelection(NULL)\r
59         , m_nSelectedFilter(LOGFILTER_ALL)\r
60 {\r
61         // use the default GUI font, create a copy of it and\r
62         // change the copy to BOLD (leave the rest of the font\r
63         // the same)\r
64         HFONT hFont = (HFONT)GetStockObject(DEFAULT_GUI_FONT);\r
65         LOGFONT lf = {0};\r
66         GetObject(hFont, sizeof(LOGFONT), &lf);\r
67         lf.lfWeight = FW_BOLD;\r
68         m_boldFont = CreateFontIndirect(&lf);\r
69         \r
70         m_bShowBugtraqColumn=0;\r
71 \r
72         m_IsIDReplaceAction=FALSE;\r
73 \r
74         m_wcRev.m_CommitHash=GIT_REV_ZERO;\r
75         m_wcRev.m_Subject=_T("Working Copy");\r
76 \r
77         m_hModifiedIcon = (HICON)LoadImage(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ACTIONMODIFIED), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE);\r
78         m_hReplacedIcon = (HICON)LoadImage(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ACTIONREPLACED), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE);\r
79         m_hAddedIcon    =  (HICON)LoadImage(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ACTIONADDED), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE);\r
80         m_hDeletedIcon = (HICON)LoadImage(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ACTIONDELETED), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE);\r
81 \r
82         m_bFilterWithRegex = !!CRegDWORD(_T("Software\\TortoiseGit\\UseRegexFilter"), TRUE);\r
83 \r
84         g_Git.GetMapHashToFriendName(m_HashMap);\r
85         m_CurrentBranch=g_Git.GetCurrentBranch();\r
86         this->m_HeadHash=g_Git.GetHash(CString(_T("HEAD"))).Left(40);\r
87 \r
88         m_From=CTime(1970,1,2,0,0,0);\r
89         m_To=CTime::GetCurrentTime();\r
90     m_ShowMask = 0;\r
91         m_LoadingThread = NULL;\r
92 \r
93         m_bExitThread=FALSE;\r
94         m_IsOldFirst = FALSE;\r
95         m_IsRebaseReplaceGraph = FALSE;\r
96 \r
97 \r
98         for(int i=0;i<Lanes::COLORS_NUM;i++)\r
99         {\r
100                 m_LineColors[i] = m_Colors.GetColor((CColors::Colors)(CColors::BranchLine1+i));\r
101         }\r
102         // get short/long datetime setting from registry\r
103         DWORD RegUseShortDateFormat = CRegDWORD(_T("Software\\TortoiseGit\\LogDateFormat"), TRUE);\r
104         if ( RegUseShortDateFormat )\r
105         {\r
106                 m_DateFormat = DATE_SHORTDATE;\r
107         }\r
108         else\r
109         {\r
110                 m_DateFormat = DATE_LONGDATE;\r
111         }\r
112         // get relative time display setting from registry\r
113         DWORD regRelativeTimes = CRegDWORD(_T("Software\\TortoiseGit\\RelativeTimes"), FALSE);\r
114         m_bRelativeTimes = (regRelativeTimes != 0);\r
115         m_ContextMenuMask = 0xFFFFFFFFFFFFFFFF;\r
116 \r
117         m_ContextMenuMask &= ~GetContextMenuBit(ID_REBASE_PICK);\r
118         m_ContextMenuMask &= ~GetContextMenuBit(ID_REBASE_SQUASH);\r
119         m_ContextMenuMask &= ~GetContextMenuBit(ID_REBASE_EDIT);\r
120         m_ContextMenuMask &= ~GetContextMenuBit(ID_REBASE_SKIP);\r
121 }\r
122 \r
123 CGitLogListBase::~CGitLogListBase()\r
124 {\r
125         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
126 \r
127         DestroyIcon(m_hModifiedIcon);\r
128         DestroyIcon(m_hReplacedIcon);\r
129         DestroyIcon(m_hAddedIcon);\r
130         DestroyIcon(m_hDeletedIcon);\r
131         m_logEntries.ClearAll();\r
132 \r
133         if (m_boldFont)\r
134                 DeleteObject(m_boldFont);\r
135 \r
136         if ( m_pStoreSelection )\r
137         {\r
138                 delete m_pStoreSelection;\r
139                 m_pStoreSelection = NULL;\r
140         }\r
141 \r
142         if(this->m_bThreadRunning)\r
143         {\r
144                 m_bExitThread=true;\r
145                 WaitForSingleObject(m_LoadingThread->m_hThread,1000);\r
146                 TerminateThread();\r
147         }\r
148 }\r
149 \r
150 \r
151 BEGIN_MESSAGE_MAP(CGitLogListBase, CHintListCtrl)\r
152         ON_NOTIFY_REFLECT(NM_CUSTOMDRAW, OnNMCustomdrawLoglist)\r
153         ON_NOTIFY_REFLECT(LVN_GETDISPINFO, OnLvnGetdispinfoLoglist)\r
154         ON_WM_CONTEXTMENU()\r
155         ON_NOTIFY_REFLECT(NM_DBLCLK, OnNMDblclkLoglist)\r
156         ON_NOTIFY_REFLECT(LVN_ODFINDITEM,OnLvnOdfinditemLoglist)\r
157         ON_WM_CREATE()\r
158         ON_WM_DESTROY()\r
159         ON_MESSAGE(MSG_LOADED,OnLoad)\r
160 END_MESSAGE_MAP()\r
161 \r
162 int CGitLogListBase:: OnCreate(LPCREATESTRUCT lpCreateStruct)\r
163 {\r
164         PreSubclassWindow();\r
165         return CHintListCtrl::OnCreate(lpCreateStruct);\r
166 }\r
167 \r
168 void CGitLogListBase::PreSubclassWindow()\r
169 {\r
170         SetExtendedStyle(LVS_EX_FULLROWSELECT | LVS_EX_SUBITEMIMAGES);\r
171         // load the icons for the action columns\r
172         m_Theme.SetWindowTheme(GetSafeHwnd(), L"Explorer", NULL);\r
173         CHintListCtrl::PreSubclassWindow();\r
174 }\r
175 \r
176 void CGitLogListBase::InsertGitColumn()\r
177 {\r
178         CString temp;\r
179 \r
180         int c = ((CHeaderCtrl*)(GetDlgItem(0)))->GetItemCount()-1;\r
181         \r
182         while (c>=0)\r
183                 DeleteColumn(c--);\r
184         temp.LoadString(IDS_LOG_GRAPH);\r
185 \r
186         if(m_IsRebaseReplaceGraph)\r
187         {\r
188                 temp=_T("Rebase");\r
189         }\r
190         else\r
191         {\r
192                 temp.LoadString(IDS_LOG_GRAPH);\r
193         }\r
194         InsertColumn(this->LOGLIST_GRAPH, temp);\r
195         \r
196 #if 0   \r
197         // make the revision column right aligned\r
198         LVCOLUMN Column;\r
199         Column.mask = LVCF_FMT;\r
200         Column.fmt = LVCFMT_RIGHT;\r
201         SetColumn(0, &Column); \r
202 #endif  \r
203 //      CString log;\r
204 //      g_Git.GetLog(log);\r
205 \r
206         if(m_IsIDReplaceAction)\r
207         {\r
208                 temp.LoadString(IDS_LOG_ID);\r
209                 InsertColumn(this->LOGLIST_ACTION, temp);\r
210         }\r
211         else\r
212         {\r
213                 temp.LoadString(IDS_LOG_ACTIONS);\r
214                 InsertColumn(this->LOGLIST_ACTION, temp);\r
215         }\r
216         temp.LoadString(IDS_LOG_MESSAGE);\r
217         InsertColumn(this->LOGLIST_MESSAGE, temp);\r
218         \r
219         temp.LoadString(IDS_LOG_AUTHOR);\r
220         InsertColumn(this->LOGLIST_AUTHOR, temp);\r
221         \r
222         temp.LoadString(IDS_LOG_DATE);\r
223         InsertColumn(this->LOGLIST_DATE, temp);\r
224         \r
225 \r
226         if (m_bShowBugtraqColumn)\r
227         {\r
228 //              temp = m_ProjectProperties.sLabel;\r
229                 if (temp.IsEmpty())\r
230                         temp.LoadString(IDS_LOG_BUGIDS);\r
231                 InsertColumn(this->LOGLIST_BUG, temp);\r
232 \r
233         }\r
234         \r
235         SetRedraw(false);\r
236         ResizeAllListCtrlCols();\r
237         SetRedraw(true);\r
238 \r
239 }\r
240 \r
241 /**\r
242  * Resizes all columns in a list control to values in registry.\r
243  */\r
244 void CGitLogListBase::ResizeAllListCtrlCols()\r
245 {\r
246         // column max and min widths to allow\r
247         static const int nMinimumWidth = 10;\r
248         static const int nMaximumWidth = 1000;\r
249         CHeaderCtrl* pHdrCtrl = (CHeaderCtrl*)(GetDlgItem(0));\r
250         if (pHdrCtrl)\r
251         {\r
252                 int numcols = pHdrCtrl->GetItemCount();\r
253                 for (int col = 0; col < numcols; col++)\r
254                 {\r
255                         // get width for this col last time from registry\r
256                         CString regentry;\r
257                         regentry.Format( _T("Software\\TortoiseGit\\log\\ColWidth%d"), col);\r
258                         CRegDWORD regwidth(regentry, 0);\r
259                         int cx = regwidth;\r
260                         if ( cx == 0 )\r
261                         {\r
262                                 // no saved value, setup sensible defaults\r
263                                 if (col == this->LOGLIST_MESSAGE)\r
264                                 {\r
265                                         cx = LOGLIST_MESSAGE_MIN;\r
266                                 }\r
267                                 else\r
268                                 {\r
269                                         cx = ICONITEMBORDER+16*4;\r
270                                 }\r
271                         }\r
272                         if (cx < nMinimumWidth)\r
273                         {\r
274                                 cx = nMinimumWidth;\r
275                         } else if (cx > nMaximumWidth)\r
276                         {\r
277                                 cx = nMaximumWidth;\r
278                         }\r
279 \r
280                         SetColumnWidth(col, cx);\r
281                 }\r
282         }\r
283 \r
284 }\r
285 \r
286 \r
287 BOOL CGitLogListBase::GetShortName(CString ref, CString &shortname,CString prefix)\r
288 {\r
289         TRACE(_T("%s %s\r\n"),ref,prefix);\r
290         if(ref.Left(prefix.GetLength()) ==  prefix)\r
291         {\r
292                 shortname = ref.Right(ref.GetLength()-prefix.GetLength());\r
293                 if(shortname.Right(3)==_T("^{}"))\r
294                         shortname=shortname.Left(shortname.GetLength()-3);\r
295                 return TRUE;\r
296         }\r
297         return FALSE;\r
298 }\r
299 void CGitLogListBase::FillBackGround(HDC hdc, int Index,CRect &rect)\r
300 {       \r
301 //      HBRUSH brush;\r
302         LVITEM   rItem;\r
303         SecureZeroMemory(&rItem, sizeof(LVITEM));\r
304         rItem.mask  = LVIF_STATE;\r
305         rItem.iItem = Index;\r
306         rItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED;\r
307         GetItem(&rItem);\r
308 \r
309         GitRev* pLogEntry = (GitRev*)m_arShownList.GetAt(Index);\r
310 \r
311         if (m_Theme.IsAppThemed() && m_bVista)\r
312         {\r
313                 m_Theme.Open(m_hWnd, L"Explorer");\r
314                 int state = LISS_NORMAL;\r
315                 if (rItem.state & LVIS_SELECTED)\r
316                 {\r
317                         if (::GetFocus() == m_hWnd)\r
318                                 state |= LISS_SELECTED;\r
319                         else\r
320                                 state |= LISS_SELECTEDNOTFOCUS;\r
321                 }\r
322                 else\r
323                 {\r
324 #if 0\r
325                         if (pLogEntry->bCopiedSelf)\r
326                         {\r
327                                 // unfortunately, the pLVCD->nmcd.uItemState does not contain valid\r
328                                 // information at this drawing stage. But we can check the whether the\r
329                                 // previous stage changed the background color of the item\r
330                                 if (pLVCD->clrTextBk == GetSysColor(COLOR_MENU))\r
331                                 {\r
332                                         HBRUSH brush;\r
333                                         brush = ::CreateSolidBrush(::GetSysColor(COLOR_MENU));\r
334                                         if (brush)\r
335                                         {\r
336                                                 ::FillRect(pLVCD->nmcd.hdc, &rect, brush);\r
337                                                 ::DeleteObject(brush);\r
338                                         }\r
339                                 }\r
340                         }\r
341 #endif\r
342                 }\r
343 \r
344                 if (m_Theme.IsBackgroundPartiallyTransparent(LVP_LISTDETAIL, state))\r
345                         m_Theme.DrawParentBackground(m_hWnd, hdc, &rect);\r
346 \r
347                         m_Theme.DrawBackground(hdc, LVP_LISTDETAIL, state, &rect, NULL);\r
348         }\r
349         else\r
350         {\r
351                 HBRUSH brush;\r
352                 if (rItem.state & LVIS_SELECTED)\r
353                 {\r
354                         if (::GetFocus() == m_hWnd)\r
355                                 brush = ::CreateSolidBrush(::GetSysColor(COLOR_HIGHLIGHT));\r
356                         else\r
357                                 brush = ::CreateSolidBrush(::GetSysColor(COLOR_BTNFACE));\r
358                 }\r
359                 else\r
360                 {\r
361                         //if (pLogEntry->bCopiedSelf)\r
362                         //      brush = ::CreateSolidBrush(::GetSysColor(COLOR_MENU));\r
363                         //else\r
364                         if(pLogEntry->m_Action&CTGitPath::LOGACTIONS_REBASE_SQUASH)\r
365                                 brush = ::CreateSolidBrush(RGB(156,156,156));\r
366                         else if(pLogEntry->m_Action&CTGitPath::LOGACTIONS_REBASE_EDIT)\r
367                                 brush = ::CreateSolidBrush(RGB(200,200,128));\r
368                         else \r
369                                 brush = ::CreateSolidBrush(::GetSysColor(COLOR_WINDOW));\r
370                 }\r
371                 if (brush == NULL)\r
372                         return;\r
373 \r
374                 ::FillRect(hdc, &rect, brush);\r
375                 ::DeleteObject(brush);\r
376                 \r
377         }\r
378 }\r
379 \r
380 void CGitLogListBase::DrawTagBranch(HDC hdc,CRect &rect,INT_PTR index)\r
381 {\r
382         GitRev* data = (GitRev*)m_arShownList.GetAt(index);\r
383         CRect rt=rect;\r
384         LVITEM   rItem;\r
385         SecureZeroMemory(&rItem, sizeof(LVITEM));\r
386         rItem.mask  = LVIF_STATE;\r
387         rItem.iItem = index;\r
388         rItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED;\r
389         GetItem(&rItem);\r
390 \r
391         for(unsigned int i=0;i<m_HashMap[data->m_CommitHash].size();i++)\r
392         {\r
393                 CString str;\r
394                 str=m_HashMap[data->m_CommitHash][i];\r
395                 \r
396                 CString shortname;\r
397                 HBRUSH brush=0;\r
398                 shortname=_T("");\r
399                 if(GetShortName(str,shortname,_T("refs/heads/")))\r
400                 {\r
401                         if( shortname == m_CurrentBranch )\r
402                                 brush = ::CreateSolidBrush(m_Colors.GetColor(CColors::CurrentBranch));\r
403                         else\r
404                                 brush = ::CreateSolidBrush(m_Colors.GetColor(CColors::LocalBranch));\r
405 \r
406                 }else if(GetShortName(str,shortname,_T("refs/remotes/")))\r
407                 {\r
408                         brush = ::CreateSolidBrush(m_Colors.GetColor(CColors::RemoteBranch));\r
409                 }\r
410                 else if(GetShortName(str,shortname,_T("refs/tags/")))\r
411                 {\r
412                         brush = ::CreateSolidBrush(m_Colors.GetColor(CColors::Tag));\r
413                 }\r
414 \r
415                 if(!shortname.IsEmpty())\r
416                 {\r
417                         SIZE size;\r
418                         memset(&size,0,sizeof(SIZE));\r
419                         GetTextExtentPoint32(hdc, shortname,shortname.GetLength(),&size);\r
420                 \r
421                         rt.SetRect(rt.left,rt.top,rt.left+size.cx,rt.bottom);\r
422                         rt.right+=4;\r
423                         ::FillRect(hdc, &rt, brush);\r
424                         if (rItem.state & LVIS_SELECTED)\r
425                         {\r
426                                 COLORREF   clrOld   = ::SetTextColor(hdc,::GetSysColor(COLOR_HIGHLIGHTTEXT));   \r
427                                 ::DrawText(hdc,shortname,shortname.GetLength(),&rt,DT_CENTER);\r
428                                 ::SetTextColor(hdc,clrOld);   \r
429                         }else\r
430                         {\r
431                                 ::DrawText(hdc,shortname,shortname.GetLength(),&rt,DT_CENTER);\r
432                         }\r
433 \r
434                         \r
435                         ::MoveToEx(hdc,rt.left,rt.top,NULL);\r
436                         ::LineTo(hdc,rt.right,rt.top);\r
437                         ::LineTo(hdc,rt.right,rt.bottom);\r
438                         ::LineTo(hdc,rt.left,rt.bottom);\r
439                         ::LineTo(hdc,rt.left,rt.top);\r
440                                 \r
441                         rt.left=rt.right+3;\r
442                 }\r
443                 if(brush)\r
444                         ::DeleteObject(brush);\r
445         }               \r
446         rt.right=rect.right;\r
447 \r
448         if (rItem.state & LVIS_SELECTED)\r
449         {\r
450                 COLORREF   clrOld   = ::SetTextColor(hdc,::GetSysColor(COLOR_HIGHLIGHTTEXT));   \r
451                 ::DrawText(hdc,data->m_Subject,data->m_Subject.GetLength(),&rt,DT_LEFT);\r
452                 ::SetTextColor(hdc,clrOld);   \r
453         }else\r
454         {\r
455                 ::DrawText(hdc,data->m_Subject,data->m_Subject.GetLength(),&rt,DT_LEFT);\r
456         }\r
457         \r
458 }\r
459 \r
460 void CGitLogListBase::paintGraphLane(HDC hdc, int laneHeight,int type, int x1, int x2,\r
461                                       const COLORREF& col,int top\r
462                                                                           )  \r
463 {\r
464         int h = laneHeight / 2;\r
465         int m = (x1 + x2) / 2;\r
466         int r = (x2 - x1) / 3;\r
467         int d =  2 * r;\r
468 \r
469         #define P_CENTER m , h+top\r
470         #define P_0      x2, h+top\r
471         #define P_90     m , 0+top\r
472         #define P_180    x1, h+top\r
473         #define P_270    m , 2 * h+top\r
474         #define R_CENTER m - r, h - r+top, m - r+d, h - r+top+d\r
475 \r
476         //static QPen myPen(Qt::black, 2); // fast path here\r
477         CPen pen;\r
478         pen.CreatePen(PS_SOLID,2,col);\r
479         //myPen.setColor(col);\r
480         HPEN oldpen=(HPEN)::SelectObject(hdc,(HPEN)pen);\r
481 \r
482         //p->setPen(myPen);\r
483 \r
484         // vertical line\r
485         switch (type) {\r
486         case Lanes::ACTIVE:\r
487         case Lanes::NOT_ACTIVE:\r
488         case Lanes::MERGE_FORK:\r
489         case Lanes::MERGE_FORK_R:\r
490         case Lanes::MERGE_FORK_L:\r
491         case Lanes::JOIN:\r
492         case Lanes::JOIN_R:\r
493         case Lanes::JOIN_L:\r
494                 DrawLine(hdc,P_90,P_270);\r
495                 //p->drawLine(P_90, P_270);\r
496                 break;\r
497         case Lanes::HEAD:\r
498         case Lanes::HEAD_R:\r
499         case Lanes::HEAD_L:\r
500         case Lanes::BRANCH:\r
501                 DrawLine(hdc,P_CENTER,P_270);\r
502                 //p->drawLine(P_CENTER, P_270);\r
503                 break;\r
504         case Lanes::TAIL:\r
505         case Lanes::TAIL_R:\r
506         case Lanes::TAIL_L:\r
507         case Lanes::INITIAL:\r
508         case Lanes::BOUNDARY:\r
509         case Lanes::BOUNDARY_C:\r
510         case Lanes::BOUNDARY_R:\r
511         case Lanes::BOUNDARY_L:\r
512                 DrawLine(hdc,P_90, P_CENTER);\r
513                 //p->drawLine(P_90, P_CENTER);\r
514                 break;\r
515         default:\r
516                 break;\r
517         }\r
518 \r
519         // horizontal line\r
520         switch (type) {\r
521         case Lanes::MERGE_FORK:\r
522         case Lanes::JOIN:\r
523         case Lanes::HEAD:\r
524         case Lanes::TAIL:\r
525         case Lanes::CROSS:\r
526         case Lanes::CROSS_EMPTY:\r
527         case Lanes::BOUNDARY_C:\r
528                 DrawLine(hdc,P_180,P_0);\r
529                 //p->drawLine(P_180, P_0);\r
530                 break;\r
531         case Lanes::MERGE_FORK_R:\r
532         case Lanes::JOIN_R:\r
533         case Lanes::HEAD_R:\r
534         case Lanes::TAIL_R:\r
535         case Lanes::BOUNDARY_R:\r
536                 DrawLine(hdc,P_180,P_CENTER);\r
537                 //p->drawLine(P_180, P_CENTER);\r
538                 break;\r
539         case Lanes::MERGE_FORK_L:\r
540         case Lanes::JOIN_L:\r
541         case Lanes::HEAD_L:\r
542         case Lanes::TAIL_L:\r
543         case Lanes::BOUNDARY_L:\r
544                 DrawLine(hdc,P_CENTER,P_0);\r
545                 //p->drawLine(P_CENTER, P_0);\r
546                 break;\r
547         default:\r
548                 break;\r
549         }\r
550 \r
551         CBrush brush;\r
552         brush.CreateSolidBrush(col);\r
553         HBRUSH oldbrush=(HBRUSH)::SelectObject(hdc,(HBRUSH)brush);\r
554         // center symbol, e.g. rect or ellipse\r
555         switch (type) {\r
556         case Lanes::ACTIVE:\r
557         case Lanes::INITIAL:\r
558         case Lanes::BRANCH:\r
559 \r
560                 //p->setPen(Qt::NoPen);\r
561                 //p->setBrush(col);\r
562                 ::Ellipse(hdc, R_CENTER);\r
563                 //p->drawEllipse(R_CENTER);\r
564                 break;\r
565         case Lanes::MERGE_FORK:\r
566         case Lanes::MERGE_FORK_R:\r
567         case Lanes::MERGE_FORK_L:\r
568                 //p->setPen(Qt::NoPen);\r
569                 //p->setBrush(col);\r
570                 //p->drawRect(R_CENTER);\r
571                 Rectangle(hdc,R_CENTER);\r
572                 break;\r
573         case Lanes::UNAPPLIED:\r
574                 // Red minus sign\r
575                 //p->setPen(Qt::NoPen);\r
576                 //p->setBrush(Qt::red);\r
577                 //p->drawRect(m - r, h - 1, d, 2);\r
578                 ::Rectangle(hdc,m-r,h-1,d,2);\r
579                 break;\r
580         case Lanes::APPLIED:\r
581                 // Green plus sign\r
582                 //p->setPen(Qt::NoPen);\r
583                 //p->setBrush(DARK_GREEN);\r
584                 //p->drawRect(m - r, h - 1, d, 2);\r
585                 //p->drawRect(m - 1, h - r, 2, d);\r
586                 ::Rectangle(hdc,m-r,h-1,d,2);\r
587                 ::Rectangle(hdc,m-1,h-r,2,d);\r
588                 break;\r
589         case Lanes::BOUNDARY:\r
590                 //p->setBrush(back);\r
591                 //p->drawEllipse(R_CENTER);\r
592                 ::Ellipse(hdc, R_CENTER);\r
593                 break;\r
594         case Lanes::BOUNDARY_C:\r
595         case Lanes::BOUNDARY_R:\r
596         case Lanes::BOUNDARY_L:\r
597                 //p->setBrush(back);\r
598                 //p->drawRect(R_CENTER);\r
599                 ::Rectangle(hdc,R_CENTER);\r
600                 break;\r
601         default:\r
602                 break;\r
603         }\r
604 \r
605         ::SelectObject(hdc,oldpen);\r
606         ::SelectObject(hdc,oldbrush);\r
607         #undef P_CENTER\r
608         #undef P_0\r
609         #undef P_90\r
610         #undef P_180\r
611         #undef P_270\r
612         #undef R_CENTER\r
613 }\r
614 \r
615 void CGitLogListBase::DrawGraph(HDC hdc,CRect &rect,INT_PTR index)\r
616 {\r
617         //todo unfinished\r
618 //      return;\r
619         GitRev* data = (GitRev*)m_arShownList.GetAt(index);\r
620         CRect rt=rect;\r
621         LVITEM   rItem;\r
622         SecureZeroMemory(&rItem, sizeof(LVITEM));\r
623         rItem.mask  = LVIF_STATE;\r
624         rItem.iItem = index;\r
625         rItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED;\r
626         GetItem(&rItem);\r
627 \r
628         \r
629 //      p->translate(QPoint(opt.rect.left(), opt.rect.top()));\r
630 \r
631 \r
632 \r
633         if (data->m_Lanes.size() == 0)\r
634                 m_logEntries.setLane(data->m_CommitHash);\r
635 \r
636         std::vector<int>& lanes=data->m_Lanes;\r
637         UINT laneNum = lanes.size();\r
638         UINT mergeLane = 0;\r
639         for (UINT i = 0; i < laneNum; i++)\r
640                 if (Lanes::isMerge(lanes[i])) {\r
641                         mergeLane = i;\r
642                         break;\r
643                 }\r
644 \r
645         int x1 = 0, x2 = 0;\r
646         int maxWidth = rect.Width();\r
647         int lw = 3 * rect.Height() / 4; //laneWidth() \r
648         for (UINT i = 0; i < laneNum && x2 < maxWidth; i++) {\r
649 \r
650                 x1 = x2;\r
651                 x2 += lw;\r
652 \r
653                 int ln = lanes[i];\r
654                 if (ln == Lanes::EMPTY)\r
655                         continue;\r
656 \r
657                 UINT col = (  Lanes:: isHead(ln) ||Lanes:: isTail(ln) || Lanes::isJoin(ln)\r
658                             || ln ==Lanes:: CROSS_EMPTY) ? mergeLane : i;\r
659 \r
660                 if (ln == Lanes::CROSS) {\r
661                         paintGraphLane(hdc, rect.Height(),Lanes::NOT_ACTIVE, x1, x2, m_LineColors[col % Lanes::COLORS_NUM],rect.top);\r
662                         paintGraphLane(hdc, rect.Height(),Lanes::CROSS, x1, x2, m_LineColors[mergeLane % Lanes::COLORS_NUM],rect.top);\r
663                 } else\r
664                         paintGraphLane(hdc, rect.Height(),ln, x1, x2, m_LineColors[col % Lanes::COLORS_NUM],rect.top);\r
665         }\r
666 \r
667         TRACE(_T("index %d %d\r\n"),index,data->m_Lanes.size());\r
668 }\r
669 \r
670 void CGitLogListBase::OnNMCustomdrawLoglist(NMHDR *pNMHDR, LRESULT *pResult)\r
671 {\r
672 \r
673         NMLVCUSTOMDRAW* pLVCD = reinterpret_cast<NMLVCUSTOMDRAW*>( pNMHDR );\r
674         // Take the default processing unless we set this to something else below.\r
675         *pResult = CDRF_DODEFAULT;\r
676 \r
677         if (m_bNoDispUpdates)\r
678                 return;\r
679 \r
680 \r
681 \r
682         switch (pLVCD->nmcd.dwDrawStage)\r
683         {\r
684         case CDDS_PREPAINT:\r
685                 {\r
686                         *pResult = CDRF_NOTIFYITEMDRAW;\r
687                         return;\r
688                 }\r
689                 break;\r
690         case CDDS_ITEMPREPAINT:\r
691                 {\r
692                         // This is the prepaint stage for an item. Here's where we set the\r
693                         // item's text color. \r
694                         \r
695                         // Tell Windows to send draw notifications for each subitem.\r
696                         *pResult = CDRF_NOTIFYSUBITEMDRAW;\r
697 \r
698                         COLORREF crText = GetSysColor(COLOR_WINDOWTEXT);\r
699 \r
700                         if (m_arShownList.GetCount() > (INT_PTR)pLVCD->nmcd.dwItemSpec)\r
701                         {\r
702                                 GitRev* data = (GitRev*)m_arShownList.GetAt(pLVCD->nmcd.dwItemSpec);\r
703                                 if (data)\r
704                                 {\r
705 #if 0\r
706                                         if (data->bCopiedSelf)\r
707                                         {\r
708                                                 // only change the background color if the item is not 'hot' (on vista with m_Themes enabled)\r
709                                                 if (!m_Theme.IsAppm_Themed() || !m_bVista || ((pLVCD->nmcd.uItemState & CDIS_HOT)==0))\r
710                                                         pLVCD->clrTextBk = GetSysColor(COLOR_MENU);\r
711                                         }\r
712 \r
713                                         if (data->bCopies)\r
714                                                 crText = m_Colors.GetColor(CColors::Modified);\r
715 #endif\r
716                                         if (data->m_Action& (CTGitPath::LOGACTIONS_REBASE_DONE| CTGitPath::LOGACTIONS_REBASE_SKIP) ) \r
717                                                 crText = RGB(128,128,128);\r
718 \r
719                                         if(data->m_Action&CTGitPath::LOGACTIONS_REBASE_SQUASH)\r
720                                                 pLVCD->clrTextBk = RGB(156,156,156);\r
721                                         else if(data->m_Action&CTGitPath::LOGACTIONS_REBASE_EDIT)\r
722                                                 pLVCD->clrTextBk  = RGB(200,200,128);\r
723                                         else \r
724                                                 pLVCD->clrTextBk  = ::GetSysColor(COLOR_WINDOW);\r
725 \r
726                                         if(data->m_Action&CTGitPath::LOGACTIONS_REBASE_CURRENT)\r
727                                         {\r
728                                                 SelectObject(pLVCD->nmcd.hdc, m_boldFont);\r
729                                                 *pResult = CDRF_NOTIFYSUBITEMDRAW | CDRF_NEWFONT;\r
730                                         }\r
731 \r
732                                         if(data->m_CommitHash == m_HeadHash)\r
733                                         {\r
734                                                 SelectObject(pLVCD->nmcd.hdc, m_boldFont);\r
735                                                 *pResult = CDRF_NOTIFYSUBITEMDRAW | CDRF_NEWFONT;\r
736                                         }\r
737 \r
738 //                                      if ((data->childStackDepth)||(m_mergedRevs.find(data->Rev) != m_mergedRevs.end()))\r
739 //                                              crText = GetSysColor(COLOR_GRAYTEXT);\r
740 //                                      if (data->Rev == m_wcRev)\r
741 //                                      {\r
742 //                                              SelectObject(pLVCD->nmcd.hdc, m_boldFont);\r
743                                                 // We changed the font, so we're returning CDRF_NEWFONT. This\r
744                                                 // tells the control to recalculate the extent of the text.\r
745 //                                              *pResult = CDRF_NOTIFYSUBITEMDRAW | CDRF_NEWFONT;\r
746 //                                      }\r
747                                 }\r
748                         }\r
749                         if (m_arShownList.GetCount() == (INT_PTR)pLVCD->nmcd.dwItemSpec)\r
750                         {\r
751                                 if (m_bStrictStopped)\r
752                                         crText = GetSysColor(COLOR_GRAYTEXT);\r
753                         }\r
754                         // Store the color back in the NMLVCUSTOMDRAW struct.\r
755                         pLVCD->clrText = crText;\r
756                         return;\r
757                 }\r
758                 break;\r
759         case CDDS_ITEMPREPAINT|CDDS_ITEM|CDDS_SUBITEM:\r
760                 {\r
761                         if ((m_bStrictStopped)&&(m_arShownList.GetCount() == (INT_PTR)pLVCD->nmcd.dwItemSpec))\r
762                         {\r
763                                 pLVCD->nmcd.uItemState &= ~(CDIS_SELECTED|CDIS_FOCUS);\r
764                         }\r
765 \r
766                         if (pLVCD->iSubItem == LOGLIST_GRAPH)\r
767                         {\r
768                                 if (m_arShownList.GetCount() > (INT_PTR)pLVCD->nmcd.dwItemSpec && (!this->m_IsRebaseReplaceGraph) )\r
769                                 {\r
770                                         CRect rect;\r
771                                         GetSubItemRect(pLVCD->nmcd.dwItemSpec, pLVCD->iSubItem, LVIR_BOUNDS, rect);\r
772                                         \r
773                                         FillBackGround(pLVCD->nmcd.hdc, (INT_PTR)pLVCD->nmcd.dwItemSpec,rect);\r
774                                         DrawGraph(pLVCD->nmcd.hdc,rect,pLVCD->nmcd.dwItemSpec);\r
775 \r
776                                         *pResult = CDRF_SKIPDEFAULT;\r
777                                         return;\r
778                                 \r
779                                 }\r
780                         }\r
781 \r
782                         if (pLVCD->iSubItem == LOGLIST_MESSAGE)\r
783                         {\r
784                                 if (m_arShownList.GetCount() > (INT_PTR)pLVCD->nmcd.dwItemSpec)\r
785                                 {\r
786                                         GitRev* data = (GitRev*)m_arShownList.GetAt(pLVCD->nmcd.dwItemSpec);\r
787                                         //if(!data->m_IsFull)\r
788                                         //{\r
789                                                 //if(data->SafeFetchFullInfo(&g_Git))\r
790                                                 //      this->Invalidate();\r
791                                                 //TRACE(_T("Update ... %d\r\n"),pLVCD->nmcd.dwItemSpec);\r
792                                         //}\r
793 \r
794                                         if(m_HashMap[data->m_CommitHash].size()!=0)\r
795                                         {\r
796                                                 CRect rect;\r
797 \r
798                                                 GetSubItemRect(pLVCD->nmcd.dwItemSpec, pLVCD->iSubItem, LVIR_BOUNDS, rect);\r
799                                         \r
800                                                 FillBackGround(pLVCD->nmcd.hdc, (INT_PTR)pLVCD->nmcd.dwItemSpec,rect);\r
801                                                 DrawTagBranch(pLVCD->nmcd.hdc,rect,pLVCD->nmcd.dwItemSpec);\r
802 \r
803                                                 *pResult = CDRF_SKIPDEFAULT;\r
804                                                 return;\r
805 \r
806                                         }\r
807                                 }\r
808                         }\r
809                         \r
810                         if (pLVCD->iSubItem == 1)\r
811                         {\r
812                                 if(this->m_IsIDReplaceAction)\r
813                                 {\r
814                                         *pResult = CDRF_DODEFAULT;\r
815                                         return;\r
816                                 }\r
817                                 *pResult = CDRF_DODEFAULT;\r
818 \r
819                                 if (m_arShownList.GetCount() <= (INT_PTR)pLVCD->nmcd.dwItemSpec)\r
820                                         return;\r
821 \r
822                                 int             nIcons = 0;\r
823                                 int             iconwidth = ::GetSystemMetrics(SM_CXSMICON);\r
824                                 int             iconheight = ::GetSystemMetrics(SM_CYSMICON);\r
825 \r
826                                 GitRev* pLogEntry = reinterpret_cast<GitRev *>(m_arShownList.GetAt(pLVCD->nmcd.dwItemSpec));\r
827                                 CRect rect;\r
828                                 GetSubItemRect(pLVCD->nmcd.dwItemSpec, pLVCD->iSubItem, LVIR_BOUNDS, rect);\r
829                                 // Get the selected state of the\r
830                                 // item being drawn.                                                    \r
831 \r
832                                 // Fill the background\r
833                                 FillBackGround(pLVCD->nmcd.hdc, (INT_PTR)pLVCD->nmcd.dwItemSpec,rect);\r
834                                 \r
835                                 // Draw the icon(s) into the compatible DC\r
836                                 if (pLogEntry->m_Action & CTGitPath::LOGACTIONS_MODIFIED)\r
837                                         ::DrawIconEx(pLVCD->nmcd.hdc, rect.left + ICONITEMBORDER, rect.top, m_hModifiedIcon, iconwidth, iconheight, 0, NULL, DI_NORMAL);\r
838                                 nIcons++;\r
839 \r
840                                 if (pLogEntry->m_Action & (CTGitPath::LOGACTIONS_ADDED|CTGitPath::LOGACTIONS_COPY) )\r
841                                         ::DrawIconEx(pLVCD->nmcd.hdc, rect.left+nIcons*iconwidth + ICONITEMBORDER, rect.top, m_hAddedIcon, iconwidth, iconheight, 0, NULL, DI_NORMAL);\r
842                                 nIcons++;\r
843 \r
844                                 if (pLogEntry->m_Action & CTGitPath::LOGACTIONS_DELETED)\r
845                                         ::DrawIconEx(pLVCD->nmcd.hdc, rect.left+nIcons*iconwidth + ICONITEMBORDER, rect.top, m_hDeletedIcon, iconwidth, iconheight, 0, NULL, DI_NORMAL);\r
846                                 nIcons++;\r
847 \r
848                                 if (pLogEntry->m_Action & CTGitPath::LOGACTIONS_REPLACED)\r
849                                         ::DrawIconEx(pLVCD->nmcd.hdc, rect.left+nIcons*iconwidth + ICONITEMBORDER, rect.top, m_hReplacedIcon, iconwidth, iconheight, 0, NULL, DI_NORMAL);\r
850                                 nIcons++;\r
851                                 *pResult = CDRF_SKIPDEFAULT;\r
852                                 return;\r
853                         }\r
854                 }\r
855                 break;\r
856         }\r
857         *pResult = CDRF_DODEFAULT;\r
858 \r
859 }\r
860 \r
861 // CGitLogListBase message handlers\r
862 \r
863 void CGitLogListBase::OnLvnGetdispinfoLoglist(NMHDR *pNMHDR, LRESULT *pResult)\r
864 {\r
865         NMLVDISPINFO *pDispInfo = reinterpret_cast<NMLVDISPINFO*>(pNMHDR);\r
866 \r
867         // Create a pointer to the item\r
868         LV_ITEM* pItem = &(pDispInfo)->item;\r
869 \r
870         // Do the list need text information?\r
871         if (!(pItem->mask & LVIF_TEXT))\r
872                 return;\r
873 \r
874         // By default, clear text buffer.\r
875         lstrcpyn(pItem->pszText, _T(""), pItem->cchTextMax);\r
876 \r
877         bool bOutOfRange = pItem->iItem >= ShownCountWithStopped();\r
878         \r
879         *pResult = 0;\r
880         if (m_bNoDispUpdates || bOutOfRange)\r
881                 return;\r
882 \r
883         // Which item number?\r
884         int itemid = pItem->iItem;\r
885         GitRev * pLogEntry = NULL;\r
886         if (itemid < m_arShownList.GetCount())\r
887                 pLogEntry = reinterpret_cast<GitRev*>(m_arShownList.GetAt(pItem->iItem));\r
888 \r
889         CString temp;\r
890         if(m_IsOldFirst)\r
891         {\r
892                 temp.Format(_T("%d"),pItem->iItem+1);\r
893 \r
894         }else\r
895         {\r
896                 temp.Format(_T("%d"),m_arShownList.GetCount()-pItem->iItem);\r
897         }\r
898             \r
899         // Which column?\r
900         switch (pItem->iSubItem)\r
901         {\r
902         case this->LOGLIST_GRAPH:       //Graphic\r
903                 if (pLogEntry)\r
904                 {\r
905                         if(this->m_IsRebaseReplaceGraph)\r
906                         {\r
907                                 CTGitPath path;\r
908                                 path.m_Action=pLogEntry->m_Action&CTGitPath::LOGACTIONS_REBASE_MODE_MASK;\r
909 \r
910                                 lstrcpyn(pItem->pszText,path.GetActionName(), pItem->cchTextMax);\r
911                         }\r
912                 }\r
913                 break;\r
914         case this->LOGLIST_ACTION: //action -- no text in the column\r
915                 if(this->m_IsIDReplaceAction)\r
916                         lstrcpyn(pItem->pszText, temp, pItem->cchTextMax);\r
917                 break;\r
918         case this->LOGLIST_MESSAGE: //Message\r
919                 if (pLogEntry)\r
920                         lstrcpyn(pItem->pszText, (LPCTSTR)pLogEntry->m_Subject, pItem->cchTextMax);\r
921                 break;\r
922         case this->LOGLIST_AUTHOR: //Author\r
923                 if (pLogEntry)\r
924                         lstrcpyn(pItem->pszText, (LPCTSTR)pLogEntry->m_AuthorName, pItem->cchTextMax);\r
925                 break;\r
926         case this->LOGLIST_DATE: //Date\r
927                 if (pLogEntry)\r
928                         lstrcpyn(pItem->pszText,\r
929                                 CAppUtils::FormatDateAndTime( pLogEntry->m_AuthorDate, m_DateFormat, true, m_bRelativeTimes ), \r
930                                 pItem->cchTextMax);\r
931                 break;\r
932                 \r
933         case 5:\r
934 \r
935                 break;\r
936         default:\r
937                 ASSERT(false);\r
938         }\r
939 }\r
940 \r
941 void CGitLogListBase::OnContextMenu(CWnd* pWnd, CPoint point)\r
942 {\r
943 \r
944         int selIndex = GetSelectionMark();\r
945         if (selIndex < 0)\r
946                 return; // nothing selected, nothing to do with a context menu\r
947 \r
948         // if the user selected the info text telling about not all revisions shown due to\r
949         // the "stop on copy/rename" option, we also don't show the context menu\r
950         if ((m_bStrictStopped)&&(selIndex == m_arShownList.GetCount()))\r
951                 return;\r
952 \r
953         // if the context menu is invoked through the keyboard, we have to use\r
954         // a calculated position on where to anchor the menu on\r
955         if ((point.x == -1) && (point.y == -1))\r
956         {\r
957                 CRect rect;\r
958                 GetItemRect(selIndex, &rect, LVIR_LABEL);\r
959                 ClientToScreen(&rect);\r
960                 point = rect.CenterPoint();\r
961         }\r
962         m_nSearchIndex = selIndex;\r
963         m_bCancelled = FALSE;\r
964 \r
965         // calculate some information the context menu commands can use\r
966 //      CString pathURL = GetURLFromPath(m_path);\r
967 \r
968         POSITION pos = GetFirstSelectedItemPosition();\r
969         int indexNext = GetNextSelectedItem(pos);\r
970         if (indexNext < 0)\r
971                 return;\r
972 \r
973         GitRev* pSelLogEntry = reinterpret_cast<GitRev*>(m_arShownList.GetAt(indexNext));\r
974 #if 0\r
975         GitRev revSelected = pSelLogEntry->Rev;\r
976         GitRev revPrevious = git_revnum_t(revSelected)-1;\r
977         if ((pSelLogEntry->pArChangedPaths)&&(pSelLogEntry->pArChangedPaths->GetCount() <= 2))\r
978         {\r
979                 for (int i=0; i<pSelLogEntry->pArChangedPaths->GetCount(); ++i)\r
980                 {\r
981                         LogChangedPath * changedpath = (LogChangedPath *)pSelLogEntry->pArChangedPaths->GetAt(i);\r
982                         if (changedpath->lCopyFromRev)\r
983                                 revPrevious = changedpath->lCopyFromRev;\r
984                 }\r
985         }\r
986         GitRev revSelected2;\r
987         if (pos)\r
988         {\r
989                 PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(GetNextSelectedItem(pos)));\r
990                 revSelected2 = pLogEntry->Rev;\r
991         }\r
992         bool bAllFromTheSameAuthor = true;\r
993         CString firstAuthor;\r
994         CLogDataVector selEntries;\r
995         GitRev revLowest, revHighest;\r
996         GitRevRangeArray revisionRanges;\r
997         {\r
998                 POSITION pos = GetFirstSelectedItemPosition();\r
999                 PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(GetNextSelectedItem(pos)));\r
1000                 revisionRanges.AddRevision(pLogEntry->Rev);\r
1001                 selEntries.push_back(pLogEntry);\r
1002                 firstAuthor = pLogEntry->sAuthor;\r
1003                 revLowest = pLogEntry->Rev;\r
1004                 revHighest = pLogEntry->Rev;\r
1005                 while (pos)\r
1006                 {\r
1007                         pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(GetNextSelectedItem(pos)));\r
1008                         revisionRanges.AddRevision(pLogEntry->Rev);\r
1009                         selEntries.push_back(pLogEntry);\r
1010                         if (firstAuthor.Compare(pLogEntry->sAuthor))\r
1011                                 bAllFromTheSameAuthor = false;\r
1012                         revLowest = (git_revnum_t(pLogEntry->Rev) > git_revnum_t(revLowest) ? revLowest : pLogEntry->Rev);\r
1013                         revHighest = (git_revnum_t(pLogEntry->Rev) < git_revnum_t(revHighest) ? revHighest : pLogEntry->Rev);\r
1014                 }\r
1015         }\r
1016 \r
1017 #endif\r
1018 \r
1019         int FirstSelect=-1, LastSelect=-1;\r
1020         pos = GetFirstSelectedItemPosition();\r
1021         FirstSelect = GetNextSelectedItem(pos);\r
1022         while(pos)\r
1023         {\r
1024                 LastSelect = GetNextSelectedItem(pos);\r
1025         }\r
1026         //entry is selected, now show the popup menu\r
1027         CIconMenu popup;\r
1028         if (popup.CreatePopupMenu())\r
1029         {\r
1030 \r
1031                 if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_PICK))\r
1032                         popup.AppendMenuIcon(ID_REBASE_PICK,   _T("Pick"),   IDI_OPEN);\r
1033 \r
1034                 if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_SQUASH))\r
1035                         popup.AppendMenuIcon(ID_REBASE_SQUASH, _T("Squash"), IDI_OPEN);\r
1036 \r
1037                 if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_EDIT))\r
1038                         popup.AppendMenuIcon(ID_REBASE_EDIT,   _T("Edit"),   IDI_OPEN);\r
1039 \r
1040                 if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_SKIP))\r
1041                         popup.AppendMenuIcon(ID_REBASE_SKIP,   _T("SKIP"),   IDI_OPEN);\r
1042                 \r
1043                 if(m_ContextMenuMask&(GetContextMenuBit(ID_REBASE_SKIP)|GetContextMenuBit(ID_REBASE_EDIT)|\r
1044                               GetContextMenuBit(ID_REBASE_SQUASH)|GetContextMenuBit(ID_REBASE_PICK)))\r
1045                         popup.AppendMenu(MF_SEPARATOR, NULL);\r
1046 \r
1047                 if (GetSelectedCount() == 1)\r
1048                 {\r
1049 #if 0\r
1050                         if (!m_path.IsDirectory())\r
1051                         {\r
1052                                 if (m_hasWC)\r
1053                                 {\r
1054                                         popup.AppendMenuIcon(ID_COMPARE, IDS_LOG_POPUP_COMPARE, IDI_DIFF);\r
1055                                         popup.AppendMenuIcon(ID_BLAMECOMPARE, IDS_LOG_POPUP_BLAMECOMPARE, IDI_BLAME);\r
1056                                 }\r
1057                                 popup.AppendMenuIcon(ID_GNUDIFF1, IDS_LOG_POPUP_GNUDIFF_CH, IDI_DIFF);\r
1058                                 popup.AppendMenuIcon(ID_COMPAREWITHPREVIOUS, IDS_LOG_POPUP_COMPAREWITHPREVIOUS, IDI_DIFF);\r
1059                                 popup.AppendMenu(MF_SEPARATOR, NULL);\r
1060                                 popup.AppendMenuIcon(ID_SAVEAS, IDS_LOG_POPUP_SAVE, IDI_SAVEAS);\r
1061                                 popup.AppendMenuIcon(ID_OPEN, IDS_LOG_POPUP_OPEN, IDI_OPEN);\r
1062                                 popup.AppendMenuIcon(ID_OPENWITH, IDS_LOG_POPUP_OPENWITH, IDI_OPEN);\r
1063                                 popup.AppendMenuIcon(ID_BLAME, IDS_LOG_POPUP_BLAME, IDI_BLAME);\r
1064                                 popup.AppendMenu(MF_SEPARATOR, NULL);\r
1065                         }\r
1066                         else\r
1067 #endif \r
1068                         {\r
1069                                 if (m_hasWC)\r
1070                                 {\r
1071                                         if(m_ContextMenuMask&GetContextMenuBit(ID_COMPARE))\r
1072                                                 popup.AppendMenuIcon(ID_COMPARE, IDS_LOG_POPUP_COMPARE, IDI_DIFF);\r
1073                                         // TODO:\r
1074                                         // TortoiseMerge could be improved to take a /blame switch\r
1075                                         // and then not 'cat' the files from a unified diff but\r
1076                                         // blame then.\r
1077                                         // But until that's implemented, the context menu entry for\r
1078                                         // this feature is commented out.\r
1079                                         //popup.AppendMenu(ID_BLAMECOMPARE, IDS_LOG_POPUP_BLAMECOMPARE, IDI_BLAME);\r
1080                                 }\r
1081                                 if(m_ContextMenuMask&GetContextMenuBit(ID_GNUDIFF1))\r
1082                                         popup.AppendMenuIcon(ID_GNUDIFF1, IDS_LOG_POPUP_GNUDIFF_CH, IDI_DIFF);\r
1083 \r
1084                                 if(m_ContextMenuMask&GetContextMenuBit(ID_COMPAREWITHPREVIOUS))\r
1085                                         popup.AppendMenuIcon(ID_COMPAREWITHPREVIOUS, IDS_LOG_POPUP_COMPAREWITHPREVIOUS, IDI_DIFF);\r
1086                                 //popup.AppendMenuIcon(ID_BLAMEWITHPREVIOUS, IDS_LOG_POPUP_BLAMEWITHPREVIOUS, IDI_BLAME);\r
1087                                 popup.AppendMenu(MF_SEPARATOR, NULL);\r
1088                         }\r
1089 \r
1090 //                      if (!m_ProjectProperties.sWebViewerRev.IsEmpty())\r
1091 //                      {\r
1092 //                              popup.AppendMenuIcon(ID_VIEWREV, IDS_LOG_POPUP_VIEWREV);\r
1093 //                      }\r
1094 //                      if (!m_ProjectProperties.sWebViewerPathRev.IsEmpty())\r
1095 //                      {\r
1096 //                              popup.AppendMenuIcon(ID_VIEWPATHREV, IDS_LOG_POPUP_VIEWPATHREV);\r
1097 //                      }\r
1098 //                      if ((!m_ProjectProperties.sWebViewerPathRev.IsEmpty())||\r
1099 //                              (!m_ProjectProperties.sWebViewerRev.IsEmpty()))\r
1100 //                      {\r
1101 //                              popup.AppendMenu(MF_SEPARATOR, NULL);\r
1102 //                      }\r
1103 \r
1104                         //if (m_hasWC)\r
1105                         //      popup.AppendMenuIcon(ID_REVERTTOREV, IDS_LOG_POPUP_REVERTTOREV, IDI_REVERT);\r
1106                         //if (m_hasWC)\r
1107                         //      popup.AppendMenuIcon(ID_REVERTREV, IDS_LOG_POPUP_REVERTREV, IDI_REVERT);\r
1108                         //if (m_hasWC)\r
1109                         //      popup.AppendMenuIcon(ID_MERGEREV, IDS_LOG_POPUP_MERGEREV, IDI_MERGE);\r
1110                         \r
1111                         CString str;\r
1112                         str.Format(_T("Reset %s to this"),g_Git.GetCurrentBranch());\r
1113 \r
1114                         if(m_ContextMenuMask&GetContextMenuBit(ID_RESET))\r
1115                                 popup.AppendMenuIcon(ID_RESET,str,IDI_REVERT);\r
1116 \r
1117                         if(m_ContextMenuMask&GetContextMenuBit(ID_SWITCHTOREV))\r
1118                                 popup.AppendMenuIcon(ID_SWITCHTOREV, _T("Switch/Checkout to this") , IDI_SWITCH);\r
1119 \r
1120                         if(m_ContextMenuMask&GetContextMenuBit(ID_CREATE_BRANCH))\r
1121                                 popup.AppendMenuIcon(ID_CREATE_BRANCH, _T("Create Branch at this version") , IDI_COPY);\r
1122 \r
1123                         if(m_ContextMenuMask&GetContextMenuBit(ID_CREATE_TAG))\r
1124                                 popup.AppendMenuIcon(ID_CREATE_TAG, _T("Create Tag at this version"), IDI_COPY);\r
1125 \r
1126                         if(m_ContextMenuMask&GetContextMenuBit(ID_CHERRY_PICK))\r
1127                                 popup.AppendMenuIcon(ID_CHERRY_PICK, _T("Cherry Pick this version"), IDI_EXPORT);\r
1128 \r
1129                         str.Format(_T("Rebase %s to this"),g_Git.GetCurrentBranch());\r
1130 \r
1131                         if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_TO_VERSION))\r
1132                                 popup.AppendMenuIcon(ID_REBASE_TO_VERSION, str , IDI_EXPORT);                   \r
1133 \r
1134                         if(m_ContextMenuMask&GetContextMenuBit(ID_EXPORT))\r
1135                                 popup.AppendMenuIcon(ID_EXPORT, _T("Export this version"), IDI_EXPORT); \r
1136                         \r
1137 \r
1138                         popup.AppendMenu(MF_SEPARATOR, NULL);\r
1139                 }\r
1140                 else if (GetSelectedCount() >= 2)\r
1141                 {\r
1142                         bool bAddSeparator = false;\r
1143                         if (IsSelectionContinuous() || (GetSelectedCount() == 2))\r
1144                         {\r
1145                                 if(m_ContextMenuMask&GetContextMenuBit(ID_COMPARETWO))\r
1146                                         popup.AppendMenuIcon(ID_COMPARETWO, IDS_LOG_POPUP_COMPARETWO, IDI_DIFF);\r
1147                         }\r
1148 \r
1149                         if (GetSelectedCount() == 2)\r
1150                         {\r
1151                                 //popup.AppendMenuIcon(ID_BLAMETWO, IDS_LOG_POPUP_BLAMEREVS, IDI_BLAME);\r
1152                                 if(m_ContextMenuMask&GetContextMenuBit(ID_GNUDIFF2))\r
1153                                         popup.AppendMenuIcon(ID_GNUDIFF2, IDS_LOG_POPUP_GNUDIFF, IDI_DIFF);\r
1154                                 bAddSeparator = true;\r
1155                         }\r
1156 \r
1157                         if ( IsSelectionContinuous() )\r
1158                         {\r
1159                                 if(m_ContextMenuMask&GetContextMenuBit(ID_COMBINE_COMMIT))\r
1160                                 {\r
1161                                         CString head;\r
1162                                         head.Format(_T("HEAD~%d"),LastSelect);\r
1163                                         CString hash=g_Git.GetHash(head);\r
1164                                         hash=hash.Left(40);\r
1165                                         GitRev* pLastEntry = reinterpret_cast<GitRev*>(m_arShownList.GetAt(LastSelect));\r
1166                                         if(pLastEntry->m_CommitHash == hash)\r
1167                                                 popup.AppendMenuIcon(ID_COMBINE_COMMIT,_T("Combine to one commit"),IDI_MERGE);\r
1168                                 }\r
1169                         }\r
1170                         if (m_hasWC)\r
1171                         {\r
1172                                 //popup.AppendMenuIcon(ID_REVERTREV, IDS_LOG_POPUP_REVERTREVS, IDI_REVERT);\r
1173 //                              if (m_hasWC)\r
1174 //                                      popup.AppendMenuIcon(ID_MERGEREV, IDS_LOG_POPUP_MERGEREVS, IDI_MERGE);\r
1175                                 bAddSeparator = true;\r
1176                         }\r
1177                         if (bAddSeparator)\r
1178                                 popup.AppendMenu(MF_SEPARATOR, NULL);\r
1179                 }\r
1180 #if 0\r
1181 //              if ((selEntries.size() > 0)&&(bAllFromTheSameAuthor))\r
1182 //              {\r
1183 //                      popup.AppendMenuIcon(ID_EDITAUTHOR, IDS_LOG_POPUP_EDITAUTHOR);\r
1184 //              }\r
1185 //              if (GetSelectedCount() == 1)\r
1186 //              {\r
1187 //                      popup.AppendMenuIcon(ID_EDITLOG, IDS_LOG_POPUP_EDITLOG);\r
1188 //                      popup.AppendMenuIcon(ID_REVPROPS, IDS_REPOBROWSE_SHOWREVPROP, IDI_PROPERTIES); // "Show Revision Properties"\r
1189 //                      popup.AppendMenu(MF_SEPARATOR, NULL);\r
1190 //              }\r
1191 #endif\r
1192 \r
1193                 \r
1194                 if (GetSelectedCount() == 1)\r
1195                 {\r
1196                         if(m_ContextMenuMask&GetContextMenuBit(ID_COPYHASH))\r
1197                                 popup.AppendMenuIcon(ID_COPYHASH, _T("Copy Commit Hash"));\r
1198                 }\r
1199                 if (GetSelectedCount() != 0)\r
1200                 {\r
1201                         if(m_ContextMenuMask&GetContextMenuBit(ID_COPYCLIPBOARD))\r
1202                                 popup.AppendMenuIcon(ID_COPYCLIPBOARD, IDS_LOG_POPUP_COPYTOCLIPBOARD);\r
1203                 }\r
1204 \r
1205                 if(m_ContextMenuMask&GetContextMenuBit(ID_FINDENTRY))\r
1206                         popup.AppendMenuIcon(ID_FINDENTRY, IDS_LOG_POPUP_FIND);\r
1207 \r
1208                 int cmd = popup.TrackPopupMenu(TPM_RETURNCMD | TPM_LEFTALIGN | TPM_NONOTIFY, point.x, point.y, this, 0);\r
1209 //              DialogEnableWindow(IDOK, FALSE);\r
1210 //              SetPromptApp(&theApp);\r
1211         \r
1212                 this->ContextMenuAction(cmd, FirstSelect, LastSelect);\r
1213                 \r
1214 //              EnableOKButton();\r
1215         } // if (popup.CreatePopupMenu())\r
1216 \r
1217 }\r
1218 \r
1219 bool CGitLogListBase::IsSelectionContinuous()\r
1220 {\r
1221         if ( GetSelectedCount()==1 )\r
1222         {\r
1223                 // if only one revision is selected, the selection is of course\r
1224                 // continuous\r
1225                 return true;\r
1226         }\r
1227 \r
1228         POSITION pos = GetFirstSelectedItemPosition();\r
1229         bool bContinuous = (m_arShownList.GetCount() == (INT_PTR)m_logEntries.size());\r
1230         if (bContinuous)\r
1231         {\r
1232                 int itemindex = GetNextSelectedItem(pos);\r
1233                 while (pos)\r
1234                 {\r
1235                         int nextindex = GetNextSelectedItem(pos);\r
1236                         if (nextindex - itemindex > 1)\r
1237                         {\r
1238                                 bContinuous = false;\r
1239                                 break;\r
1240                         }\r
1241                         itemindex = nextindex;\r
1242                 }\r
1243         }\r
1244         return bContinuous;\r
1245 }\r
1246 \r
1247 void CGitLogListBase::CopySelectionToClipBoard(bool HashOnly)\r
1248 {\r
1249 \r
1250         CString sClipdata;\r
1251         POSITION pos = GetFirstSelectedItemPosition();\r
1252         if (pos != NULL)\r
1253         {\r
1254                 CString sRev;\r
1255                 sRev.LoadString(IDS_LOG_REVISION);\r
1256                 CString sAuthor;\r
1257                 sAuthor.LoadString(IDS_LOG_AUTHOR);\r
1258                 CString sDate;\r
1259                 sDate.LoadString(IDS_LOG_DATE);\r
1260                 CString sMessage;\r
1261                 sMessage.LoadString(IDS_LOG_MESSAGE);\r
1262                 while (pos)\r
1263                 {\r
1264                         CString sLogCopyText;\r
1265                         CString sPaths;\r
1266                         GitRev * pLogEntry = reinterpret_cast<GitRev *>(m_arShownList.GetAt(GetNextSelectedItem(pos)));\r
1267 \r
1268                         if(!HashOnly)\r
1269                         {\r
1270                                 //pLogEntry->m_Files\r
1271                                 //LogChangedPathArray * cpatharray = pLogEntry->pArChangedPaths;\r
1272                         \r
1273                                 for (int cpPathIndex = 0; cpPathIndex<pLogEntry->m_Files.GetCount(); ++cpPathIndex)\r
1274                                 {\r
1275                                         sPaths += ((CTGitPath&)pLogEntry->m_Files[cpPathIndex]).GetActionName() + _T(" : ") + pLogEntry->m_Files[cpPathIndex].GetGitPathString();\r
1276                                         sPaths += _T("\r\n");\r
1277                                 }\r
1278                                 sPaths.Trim();\r
1279                                 sLogCopyText.Format(_T("%s: %s\r\n%s: %s\r\n%s: %s\r\n%s:\r\n%s\r\n----\r\n%s\r\n\r\n"),\r
1280                                         (LPCTSTR)sRev, pLogEntry->m_CommitHash,\r
1281                                         (LPCTSTR)sAuthor, (LPCTSTR)pLogEntry->m_AuthorName,\r
1282                                         (LPCTSTR)sDate, \r
1283                                         (LPCTSTR)CAppUtils::FormatDateAndTime( pLogEntry->m_AuthorDate, m_DateFormat, true, m_bRelativeTimes ),\r
1284                                         (LPCTSTR)sMessage, pLogEntry->m_Subject+_T("\r\n")+pLogEntry->m_Body,\r
1285                                         (LPCTSTR)sPaths);\r
1286                                 sClipdata +=  sLogCopyText;\r
1287                         }else\r
1288                         {\r
1289                                 sClipdata += pLogEntry->m_CommitHash;\r
1290                                 break;\r
1291                         }\r
1292 \r
1293                 }\r
1294                 CStringUtils::WriteAsciiStringToClipboard(sClipdata, GetSafeHwnd());\r
1295         }\r
1296 \r
1297 }\r
1298 \r
1299 void CGitLogListBase::DiffSelectedRevWithPrevious()\r
1300 {\r
1301 #if 0\r
1302         if (m_bThreadRunning)\r
1303                 return;\r
1304         UpdateLogInfoLabel();\r
1305         int selIndex = m_LogList.GetSelectionMark();\r
1306         if (selIndex < 0)\r
1307                 return;\r
1308         int selCount = m_LogList.GetSelectedCount();\r
1309         if (selCount != 1)\r
1310                 return;\r
1311 \r
1312         // Find selected entry in the log list\r
1313         POSITION pos = m_LogList.GetFirstSelectedItemPosition();\r
1314         PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(m_LogList.GetNextSelectedItem(pos)));\r
1315         long rev1 = pLogEntry->Rev;\r
1316         long rev2 = rev1-1;\r
1317         CTGitPath path = m_path;\r
1318 \r
1319         // See how many files under the relative root were changed in selected revision\r
1320         int nChanged = 0;\r
1321         LogChangedPath * changed = NULL;\r
1322         for (INT_PTR c = 0; c < pLogEntry->pArChangedPaths->GetCount(); ++c)\r
1323         {\r
1324                 LogChangedPath * cpath = pLogEntry->pArChangedPaths->GetAt(c);\r
1325                 if (cpath  &&  cpath -> sPath.Left(m_sRelativeRoot.GetLength()).Compare(m_sRelativeRoot)==0)\r
1326                 {\r
1327                         ++nChanged;\r
1328                         changed = cpath;\r
1329                 }\r
1330         }\r
1331 \r
1332         if (m_path.IsDirectory() && nChanged == 1) \r
1333         {\r
1334                 // We're looking at the log for a directory and only one file under dir was changed in the revision\r
1335                 // Do diff on that file instead of whole directory\r
1336                 path.AppendPathString(changed->sPath.Mid(m_sRelativeRoot.GetLength()));\r
1337         } \r
1338 \r
1339         m_bCancelled = FALSE;\r
1340         DialogEnableWindow(IDOK, FALSE);\r
1341         SetPromptApp(&theApp);\r
1342         theApp.DoWaitCursor(1);\r
1343 \r
1344         if (PromptShown())\r
1345         {\r
1346                 GitDiff diff(this, m_hWnd, true);\r
1347                 diff.SetAlternativeTool(!!(GetAsyncKeyState(VK_SHIFT) & 0x8000));\r
1348                 diff.SetHEADPeg(m_LogRevision);\r
1349                 diff.ShowCompare(path, rev2, path, rev1);\r
1350         }\r
1351         else\r
1352         {\r
1353                 CAppUtils::StartShowCompare(m_hWnd, path, rev2, path, rev1, GitRev(), m_LogRevision, !!(GetAsyncKeyState(VK_SHIFT) & 0x8000));\r
1354         }\r
1355 \r
1356         theApp.DoWaitCursor(-1);\r
1357         EnableOKButton();\r
1358 #endif\r
1359 }\r
1360 \r
1361 void CGitLogListBase::OnLvnOdfinditemLoglist(NMHDR *pNMHDR, LRESULT *pResult)\r
1362 {\r
1363         LPNMLVFINDITEM pFindInfo = reinterpret_cast<LPNMLVFINDITEM>(pNMHDR);\r
1364         *pResult = -1;\r
1365         \r
1366         if (pFindInfo->lvfi.flags & LVFI_PARAM)\r
1367                 return; \r
1368         if ((pFindInfo->iStart < 0)||(pFindInfo->iStart >= m_arShownList.GetCount()))\r
1369                 return;\r
1370         if (pFindInfo->lvfi.psz == 0)\r
1371                 return;\r
1372 #if 0\r
1373         CString sCmp = pFindInfo->lvfi.psz;\r
1374         CString sRev;   \r
1375         for (int i=pFindInfo->iStart; i<m_arShownList.GetCount(); ++i)\r
1376         {\r
1377                 GitRev * pLogEntry = reinterpret_cast<GitRev*>(m_arShownList.GetAt(i));\r
1378                 sRev.Format(_T("%ld"), pLogEntry->Rev);\r
1379                 if (pFindInfo->lvfi.flags & LVFI_PARTIAL)\r
1380                 {\r
1381                         if (sCmp.Compare(sRev.Left(sCmp.GetLength()))==0)\r
1382                         {\r
1383                                 *pResult = i;\r
1384                                 return;\r
1385                         }\r
1386                 }\r
1387                 else\r
1388                 {\r
1389                         if (sCmp.Compare(sRev)==0)\r
1390                         {\r
1391                                 *pResult = i;\r
1392                                 return;\r
1393                         }\r
1394                 }\r
1395         }\r
1396         if (pFindInfo->lvfi.flags & LVFI_WRAP)\r
1397         {\r
1398                 for (int i=0; i<pFindInfo->iStart; ++i)\r
1399                 {\r
1400                         PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(i));\r
1401                         sRev.Format(_T("%ld"), pLogEntry->Rev);\r
1402                         if (pFindInfo->lvfi.flags & LVFI_PARTIAL)\r
1403                         {\r
1404                                 if (sCmp.Compare(sRev.Left(sCmp.GetLength()))==0)\r
1405                                 {\r
1406                                         *pResult = i;\r
1407                                         return;\r
1408                                 }\r
1409                         }\r
1410                         else\r
1411                         {\r
1412                                 if (sCmp.Compare(sRev)==0)\r
1413                                 {\r
1414                                         *pResult = i;\r
1415                                         return;\r
1416                                 }\r
1417                         }\r
1418                 }\r
1419         }\r
1420 #endif\r
1421         *pResult = -1;\r
1422 }\r
1423 \r
1424 int CGitLogListBase::FillGitLog(CTGitPath *path,int info,CString *from,CString *to)\r
1425 {\r
1426         ClearText();\r
1427 \r
1428         this->m_logEntries.ClearAll();\r
1429         this->m_logEntries.ParserFromLog(path,-1,info,from,to);\r
1430 \r
1431         //this->m_logEntries.ParserFromLog();\r
1432         SetItemCountEx(this->m_logEntries.size());\r
1433 \r
1434         this->m_arShownList.RemoveAll();\r
1435 \r
1436         for(unsigned int i=0;i<m_logEntries.size();i++)\r
1437         {\r
1438                 if(m_IsOldFirst)\r
1439                 {\r
1440                         m_logEntries[m_logEntries.size()-i-1].m_IsFull=TRUE;\r
1441                         this->m_arShownList.Add(&m_logEntries[m_logEntries.size()-i-1]);\r
1442                 \r
1443                 }else\r
1444                 {\r
1445                         m_logEntries[i].m_IsFull=TRUE;\r
1446                         this->m_arShownList.Add(&m_logEntries[i]);\r
1447                 }\r
1448         }\r
1449 \r
1450     if(path)\r
1451         m_Path=*path;\r
1452         return 0;\r
1453 \r
1454 }\r
1455 \r
1456 int CGitLogListBase::FillGitShortLog()\r
1457 {\r
1458         ClearText();\r
1459 \r
1460         this->m_logEntries.ClearAll();\r
1461 \r
1462         m_LogCache.FetchCacheIndex(g_Git.m_CurrentDir);\r
1463 \r
1464     CTGitPath *path;\r
1465     if(this->m_Path.IsEmpty())\r
1466         path=NULL;\r
1467     else\r
1468         path=&this->m_Path;\r
1469 \r
1470         CString hash;\r
1471         int mask;\r
1472         mask = CGit::LOG_INFO_ONLY_HASH | CGit::LOG_INFO_BOUNDARY;\r
1473 //      if(this->m_bAllBranch)\r
1474         mask |= m_ShowMask;\r
1475 \r
1476         this->m_logEntries.ParserShortLog(path,hash,-1,mask);\r
1477         \r
1478 \r
1479         //this->m_logEntries.ParserFromLog();\r
1480         if(IsInWorkingThread())\r
1481                 PostMessage(LVM_SETITEMCOUNT, (WPARAM) this->m_logEntries.size(),(LPARAM) LVSICF_NOINVALIDATEALL);\r
1482         else\r
1483                 SetItemCountEx(this->m_logEntries.size());\r
1484 \r
1485         this->m_arShownList.RemoveAll();\r
1486 \r
1487         for(unsigned int i=0;i<m_logEntries.size();i++)\r
1488         {\r
1489                 if(this->m_IsOldFirst)\r
1490                 {\r
1491                         this->m_arShownList.Add(&m_logEntries[m_logEntries.size()-1-i]);\r
1492 \r
1493                 }else\r
1494                 {\r
1495                         this->m_arShownList.Add(&m_logEntries[i]);\r
1496                 }\r
1497         }\r
1498         return 0;\r
1499 }\r
1500 \r
1501 BOOL CGitLogListBase::PreTranslateMessage(MSG* pMsg)\r
1502 {\r
1503         // Skip Ctrl-C when copying text out of the log message or search filter\r
1504         BOOL bSkipAccelerator = ( pMsg->message == WM_KEYDOWN && pMsg->wParam=='C' && (GetFocus()==GetDlgItem(IDC_MSGVIEW) || GetFocus()==GetDlgItem(IDC_SEARCHEDIT) ) && GetKeyState(VK_CONTROL)&0x8000 );\r
1505         if (pMsg->message == WM_KEYDOWN && pMsg->wParam=='\r')\r
1506         {\r
1507                 //if (GetFocus()==GetDlgItem(IDC_LOGLIST))\r
1508                 {\r
1509                         if (CRegDWORD(_T("Software\\TortoiseGit\\DiffByDoubleClickInLog"), FALSE))\r
1510                         {\r
1511                                 DiffSelectedRevWithPrevious();\r
1512                                 return TRUE;\r
1513                         }\r
1514                 }\r
1515 #if 0\r
1516                 if (GetFocus()==GetDlgItem(IDC_LOGMSG))\r
1517                 {\r
1518                         DiffSelectedFile();\r
1519                         return TRUE;\r
1520                 }\r
1521 #endif\r
1522         }\r
1523 \r
1524 #if 0\r
1525         if (m_hAccel && !bSkipAccelerator)\r
1526         {\r
1527                 int ret = TranslateAccelerator(m_hWnd, m_hAccel, pMsg);\r
1528                 if (ret)\r
1529                         return TRUE;\r
1530         }\r
1531         \r
1532 #endif\r
1533         //m_tooltips.RelayEvent(pMsg);\r
1534         return __super::PreTranslateMessage(pMsg);\r
1535 }\r
1536 \r
1537 void CGitLogListBase::OnNMDblclkLoglist(NMHDR * /*pNMHDR*/, LRESULT *pResult)\r
1538 {\r
1539         // a double click on an entry in the revision list has happened\r
1540         *pResult = 0;\r
1541 \r
1542   if (CRegDWORD(_T("Software\\TortoiseGit\\DiffByDoubleClickInLog"), FALSE))\r
1543           DiffSelectedRevWithPrevious();\r
1544 }\r
1545 \r
1546 int CGitLogListBase::FetchLogAsync(void * data)\r
1547 {\r
1548         m_ProcData=data;\r
1549         m_bExitThread=FALSE;\r
1550         InterlockedExchange(&m_bThreadRunning, TRUE);\r
1551         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
1552         m_LoadingThread = AfxBeginThread(LogThreadEntry, this);\r
1553         if (m_LoadingThread ==NULL)\r
1554         {\r
1555                 InterlockedExchange(&m_bThreadRunning, FALSE);\r
1556                 InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1557                 CMessageBox::Show(NULL, IDS_ERR_THREADSTARTFAILED, IDS_APPNAME, MB_OK | MB_ICONERROR);\r
1558                 return -1;\r
1559         }\r
1560         return 0;\r
1561 }\r
1562 \r
1563 //this is the thread function which calls the subversion function\r
1564 UINT CGitLogListBase::LogThreadEntry(LPVOID pVoid)\r
1565 {\r
1566         return ((CGitLogListBase*)pVoid)->LogThread();\r
1567 }\r
1568 \r
1569 void CGitLogListBase::GetTimeRange(CTime &oldest, CTime &latest)\r
1570 {\r
1571         //CTime time;\r
1572         oldest=CTime::GetCurrentTime();\r
1573         latest=CTime(1971,1,2,0,0,0);\r
1574         for(unsigned int i=0;i<m_logEntries.size();i++)\r
1575         {\r
1576                 if(m_logEntries[i].m_AuthorDate.GetTime() < oldest.GetTime())\r
1577                         oldest = m_logEntries[i].m_AuthorDate.GetTime();\r
1578 \r
1579                 if(m_logEntries[i].m_AuthorDate.GetTime() > latest.GetTime())\r
1580                         latest = m_logEntries[i].m_AuthorDate.GetTime();\r
1581 \r
1582         }\r
1583 }\r
1584 \r
1585 //Helper class for FetchFullLogInfo()\r
1586 class CGitCall_FetchFullLogInfo : public CGitCall\r
1587 {\r
1588 public:\r
1589         CGitCall_FetchFullLogInfo(CGitLogListBase* ploglist):m_ploglist(ploglist),m_CollectedCount(0){}\r
1590         virtual bool OnOutputData(const BYTE* data, size_t size)\r
1591         {\r
1592                 if(size==0)\r
1593                         return m_ploglist->m_bExitThread;\r
1594                 //Add received data to byte collector\r
1595                 m_ByteCollector.append(data,size);\r
1596 \r
1597                 //Find loginfo endmarker\r
1598                 static const BYTE dataToFind[]={0,0};\r
1599                 int found=m_ByteCollector.findData(dataToFind,2);\r
1600                 if(found<0)\r
1601                         return m_ploglist->m_bExitThread;//Not found\r
1602                 found+=2;//Position after loginfo end-marker\r
1603 \r
1604                 //Prepare data for OnLogInfo and call it\r
1605                 BYTE_VECTOR logInfo;\r
1606                 logInfo.append(&*m_ByteCollector.begin(),found);\r
1607                 OnLogInfo(logInfo);\r
1608 \r
1609                 //Remove loginfo from bytecollector\r
1610                 m_ByteCollector.erase(m_ByteCollector.begin(),m_ByteCollector.begin()+found);\r
1611 \r
1612                 return m_ploglist->m_bExitThread;\r
1613         }\r
1614         virtual void OnEnd()\r
1615         {\r
1616                 //Rest should be a complete log line.\r
1617                 if(!m_ByteCollector.empty())\r
1618                         OnLogInfo(m_ByteCollector);\r
1619         }\r
1620 \r
1621 \r
1622         void OnLogInfo(BYTE_VECTOR& logInfo)\r
1623         {\r
1624                 GitRev fullRev;\r
1625                 fullRev.ParserFromLog(logInfo);\r
1626                 MAP_HASH_REV::iterator itRev=m_ploglist->m_logEntries.m_HashMap.find(fullRev.m_CommitHash);\r
1627                 if(itRev==m_ploglist->m_logEntries.m_HashMap.end())\r
1628                 {\r
1629                         //Should not occur, only when Git-tree updated in the mean time. (Race condition)\r
1630                         return;//Ignore\r
1631                 }\r
1632                 //Set updating\r
1633                 int rev=itRev->second;\r
1634                 GitRev* revInVector=&m_ploglist->m_logEntries[rev];\r
1635 \r
1636 \r
1637 //              fullRev.m_IsUpdateing=TRUE;\r
1638 //              fullRev.m_IsFull=TRUE;\r
1639 \r
1640 \r
1641                 if(InterlockedExchange(&revInVector->m_IsUpdateing,TRUE))\r
1642                         return;//Cannot update this row now. Ignore.\r
1643                 TCHAR oldmark=revInVector->m_Mark;\r
1644                 GIT_REV_LIST oldlist=revInVector->m_ParentHash;\r
1645 //              CString oldhash=m_CommitHash;\r
1646 \r
1647                 //Parse new rev info\r
1648                 revInVector->ParserFromLog(logInfo);\r
1649 \r
1650                 if(oldmark!=0)\r
1651                         revInVector->m_Mark=oldmark;  //parser full log will cause old mark overwrited. \r
1652                                                                //So we need keep old bound mark.\r
1653                 revInVector->m_ParentHash=oldlist;\r
1654 \r
1655                 //Reset updating\r
1656                 InterlockedExchange(&revInVector->m_IsFull,TRUE);\r
1657                 InterlockedExchange(&revInVector->m_IsUpdateing,FALSE);\r
1658 \r
1659                 //Notify listcontrol and update progress bar\r
1660                 ++m_CollectedCount;\r
1661 \r
1662                 ::PostMessage(m_ploglist->m_hWnd,MSG_LOADED,(WPARAM)rev,0);\r
1663 \r
1664                 DWORD percent=m_CollectedCount*98/m_ploglist->m_logEntries.size() + GITLOG_START+1;\r
1665                 if(percent == GITLOG_END)\r
1666                         percent = GITLOG_END -1;\r
1667                 \r
1668                 ::PostMessage(m_ploglist->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) percent,0);\r
1669         }\r
1670 \r
1671         CGitLogListBase*        m_ploglist;\r
1672         BYTE_VECTOR                     m_ByteCollector;\r
1673         int                                     m_CollectedCount;\r
1674 \r
1675 };\r
1676 \r
1677 void CGitLogListBase::FetchFullLogInfo()\r
1678 {\r
1679         CGitCall_FetchFullLogInfo fetcher(this);\r
1680         int mask=\r
1681                 CGit::LOG_INFO_STAT|\r
1682                 CGit::LOG_INFO_FILESTATE|\r
1683                 CGit::LOG_INFO_DETECT_COPYRENAME|\r
1684                 m_ShowMask;\r
1685         g_Git.GetLog(&fetcher,CString(),NULL,-1,mask);\r
1686 }\r
1687 \r
1688 void CGitLogListBase::FetchFullLogInfoOrig()\r
1689 {\r
1690         unsigned int updated=0;\r
1691         int percent=0;\r
1692         CRect rect;\r
1693         while(1)\r
1694         {\r
1695                 for(unsigned int i=0;i<m_logEntries.size();i++)\r
1696                 {\r
1697                         if(m_LogCache.GetCacheData(m_logEntries[i]))\r
1698                         {\r
1699                                 if(!m_logEntries.FetchFullInfo(i))\r
1700                                 {\r
1701                                         updated++;\r
1702                                 }\r
1703                                 m_LogCache.AddCacheEntry(m_logEntries[i]);\r
1704 \r
1705                         }else\r
1706                         {\r
1707                                 updated++;\r
1708                                 InterlockedExchange(&m_logEntries[i].m_IsUpdateing,FALSE);\r
1709                                 InterlockedExchange(&m_logEntries[i].m_IsFull,TRUE);\r
1710                         }\r
1711                         \r
1712                         ::PostMessage(m_hWnd,MSG_LOADED,(WPARAM)i,0);\r
1713 \r
1714                         if(m_bExitThread)\r
1715                         {\r
1716                                 InterlockedExchange(&m_bThreadRunning, FALSE);\r
1717                                 InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1718                                 return;\r
1719                         }\r
1720 \r
1721                         percent=updated*98/m_logEntries.size() + GITLOG_START+1;\r
1722                         if(percent == GITLOG_END)\r
1723                                 percent = GITLOG_END -1;\r
1724                         \r
1725                         ::PostMessage(this->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) percent,0);\r
1726 \r
1727                         \r
1728                 }\r
1729                 if(updated==m_logEntries.size())\r
1730                         break;\r
1731         }\r
1732 }\r
1733 \r
1734 UINT CGitLogListBase::LogThread()\r
1735 {\r
1736 \r
1737 //      if(m_ProcCallBack)\r
1738 //              m_ProcCallBack(m_ProcData,GITLOG_START);\r
1739         ::PostMessage(this->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) GITLOG_START,0);\r
1740 \r
1741         InterlockedExchange(&m_bThreadRunning, TRUE);\r
1742         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
1743 \r
1744     //does the user force the cache to refresh (shift or control key down)?\r
1745     bool refresh =    (GetKeyState (VK_CONTROL) < 0) \r
1746                    || (GetKeyState (VK_SHIFT) < 0);\r
1747 \r
1748         //disable the "Get All" button while we're receiving\r
1749         //log messages.\r
1750 \r
1751         FillGitShortLog();\r
1752         \r
1753         if(this->m_bExitThread)\r
1754         {\r
1755                 InterlockedExchange(&m_bThreadRunning, FALSE);\r
1756                 InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1757                 return 0;\r
1758         }\r
1759 #if 0\r
1760         RedrawItems(0, m_arShownList.GetCount());\r
1761 //      SetRedraw(false);\r
1762 //      ResizeAllListCtrlCols();\r
1763 //      SetRedraw(true);\r
1764 \r
1765         if ( m_pStoreSelection )\r
1766         {\r
1767                 // Deleting the instance will restore the\r
1768                 // selection of the CLogDlg.\r
1769                 delete m_pStoreSelection;\r
1770                 m_pStoreSelection = NULL;\r
1771         }\r
1772         else\r
1773         {\r
1774                 // If no selection has been set then this must be the first time\r
1775                 // the revisions are shown. Let's preselect the topmost revision.\r
1776                 if ( GetItemCount()>0 )\r
1777                 {\r
1778                         SetSelectionMark(0);\r
1779                         SetItemState(0, LVIS_SELECTED, LVIS_SELECTED);\r
1780                 }\r
1781         }\r
1782 #endif\r
1783         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1784 \r
1785 \r
1786         //FetchFullLogInfo();\r
1787         FetchFullLogInfoOrig();\r
1788         //RefreshCursor();\r
1789         // make sure the filter is applied (if any) now, after we refreshed/fetched\r
1790         // the log messages\r
1791 \r
1792         ::PostMessage(this->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) GITLOG_END,0);\r
1793 \r
1794         InterlockedExchange(&m_bThreadRunning, FALSE);\r
1795 \r
1796         return 0;\r
1797 }\r
1798 \r
1799 void CGitLogListBase::Refresh()\r
1800 {       \r
1801         m_bExitThread=TRUE;\r
1802         DWORD ret =::WaitForSingleObject(m_LoadingThread->m_hThread,20000);\r
1803         if(ret == WAIT_TIMEOUT)\r
1804                 TerminateThread();\r
1805 \r
1806         this->Clear();\r
1807 \r
1808         //Update branch and Tag info\r
1809         ReloadHashMap();\r
1810         //Assume Thread have exited\r
1811         //if(!m_bThreadRunning)\r
1812         {\r
1813                 this->SetItemCountEx(0);\r
1814                 m_logEntries.clear();\r
1815                 m_bExitThread=FALSE;\r
1816                 InterlockedExchange(&m_bThreadRunning, TRUE);\r
1817                 InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
1818                 if (AfxBeginThread(LogThreadEntry, this)==NULL)\r
1819                 {\r
1820                         InterlockedExchange(&m_bThreadRunning, FALSE);\r
1821                         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1822                         CMessageBox::Show(NULL, IDS_ERR_THREADSTARTFAILED, IDS_APPNAME, MB_OK | MB_ICONERROR);\r
1823                 }\r
1824                 m_sFilterText.Empty();\r
1825                 m_From=CTime(1970,1,2,0,0,0);\r
1826                 m_To=CTime::GetCurrentTime();\r
1827         }\r
1828 }\r
1829 bool CGitLogListBase::ValidateRegexp(LPCTSTR regexp_str, tr1::wregex& pat, bool bMatchCase /* = false */)\r
1830 {\r
1831         try\r
1832         {\r
1833                 tr1::regex_constants::syntax_option_type type = tr1::regex_constants::ECMAScript;\r
1834                 if (!bMatchCase)\r
1835                         type |= tr1::regex_constants::icase;\r
1836                 pat = tr1::wregex(regexp_str, type);\r
1837                 return true;\r
1838         }\r
1839         catch (exception) {}\r
1840         return false;\r
1841 }\r
1842 \r
1843 void CGitLogListBase::RecalculateShownList(CPtrArray * pShownlist)\r
1844 {\r
1845 \r
1846         pShownlist->RemoveAll();\r
1847         tr1::wregex pat;//(_T("Remove"), tr1::regex_constants::icase);\r
1848         bool bRegex = false;\r
1849         if (m_bFilterWithRegex)\r
1850                 bRegex = ValidateRegexp(m_sFilterText, pat, false);\r
1851 \r
1852         tr1::regex_constants::match_flag_type flags = tr1::regex_constants::match_any;\r
1853         CString sRev;\r
1854         for (DWORD i=0; i<m_logEntries.size(); ++i)\r
1855         {\r
1856                 if ((bRegex)&&(m_bFilterWithRegex))\r
1857                 {\r
1858 #if 0\r
1859                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_BUGID))\r
1860                         {\r
1861                                 ATLTRACE(_T("bugID = \"%s\"\n"), (LPCTSTR)m_logEntries[i]->sBugIDs);\r
1862                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i]->sBugIDs), pat, flags)&&IsEntryInDateRange(i))\r
1863                                 {\r
1864                                         pShownlist->Add(m_logEntries[i]);\r
1865                                         continue;\r
1866                                 }\r
1867                         }\r
1868 #endif\r
1869                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_MESSAGES))\r
1870                         {\r
1871                                 ATLTRACE(_T("messge = \"%s\"\n"),m_logEntries[i].m_Subject);\r
1872                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i].m_Subject), pat, flags)&&IsEntryInDateRange(i))\r
1873                                 {\r
1874                                         pShownlist->Add(&m_logEntries[i]);\r
1875                                         continue;\r
1876                                 }\r
1877 \r
1878                                 ATLTRACE(_T("messge = \"%s\"\n"),m_logEntries[i].m_Body);\r
1879                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i].m_Body), pat, flags)&&IsEntryInDateRange(i))\r
1880                                 {\r
1881                                         pShownlist->Add(&m_logEntries[i]);\r
1882                                         continue;\r
1883                                 }\r
1884                         }\r
1885 #if 0\r
1886                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_PATHS))\r
1887                         {\r
1888                                 LogChangedPathArray * cpatharray = m_logEntries[i]->pArChangedPaths;\r
1889 \r
1890                                 bool bGoing = true;\r
1891                                 for (INT_PTR cpPathIndex = 0; cpPathIndex<cpatharray->GetCount() && bGoing; ++cpPathIndex)\r
1892                                 {\r
1893                                         LogChangedPath * cpath = cpatharray->GetAt(cpPathIndex);\r
1894                                         if (regex_search(wstring((LPCTSTR)cpath->sCopyFromPath), pat, flags)&&IsEntryInDateRange(i))\r
1895                                         {\r
1896                                                 pShownlist->Add(m_logEntries[i]);\r
1897                                                 bGoing = false;\r
1898                                                 continue;\r
1899                                         }\r
1900                                         if (regex_search(wstring((LPCTSTR)cpath->sPath), pat, flags)&&IsEntryInDateRange(i))\r
1901                                         {\r
1902                                                 pShownlist->Add(m_logEntries[i]);\r
1903                                                 bGoing = false;\r
1904                                                 continue;\r
1905                                         }\r
1906                                         if (regex_search(wstring((LPCTSTR)cpath->GetAction()), pat, flags)&&IsEntryInDateRange(i))\r
1907                                         {\r
1908                                                 pShownlist->Add(m_logEntries[i]);\r
1909                                                 bGoing = false;\r
1910                                                 continue;\r
1911                                         }\r
1912                                 }\r
1913                                 if (!bGoing)\r
1914                                         continue;\r
1915                         }\r
1916 #endif\r
1917                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_AUTHORS))\r
1918                         {\r
1919                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i].m_AuthorName), pat, flags)&&IsEntryInDateRange(i))\r
1920                                 {\r
1921                                         pShownlist->Add(&m_logEntries[i]);\r
1922                                         continue;\r
1923                                 }\r
1924                         }\r
1925                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_REVS))\r
1926                         {\r
1927                                 sRev.Format(_T("%s"), m_logEntries[i].m_CommitHash);\r
1928                                 if (regex_search(wstring((LPCTSTR)sRev), pat, flags)&&IsEntryInDateRange(i))\r
1929                                 {\r
1930                                         pShownlist->Add(&m_logEntries[i]);\r
1931                                         continue;\r
1932                                 }\r
1933                         }\r
1934                 } // if (bRegex)\r
1935                 else\r
1936                 {\r
1937                         CString find = m_sFilterText;\r
1938                         find.MakeLower();\r
1939 #if 0\r
1940                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_BUGID))\r
1941                         {\r
1942                                 CString sBugIDs = m_logEntries[i]->sBugIDs;\r
1943 \r
1944                                 sBugIDs = sBugIDs.MakeLower();\r
1945                                 if ((sBugIDs.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
1946                                 {\r
1947                                         pShownlist->Add(m_logEntries[i]);\r
1948                                         continue;\r
1949                                 }\r
1950                         }\r
1951 #endif\r
1952                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_MESSAGES))\r
1953                         {\r
1954                                 CString msg = m_logEntries[i].m_Subject;\r
1955 \r
1956                                 msg = msg.MakeLower();\r
1957                                 if ((msg.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
1958                                 {\r
1959                                         pShownlist->Add(&m_logEntries[i]);\r
1960                                         continue;\r
1961                                 }\r
1962                                 msg = m_logEntries[i].m_Body;\r
1963 \r
1964                                 msg = msg.MakeLower();\r
1965                                 if ((msg.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
1966                                 {\r
1967                                         pShownlist->Add(&m_logEntries[i]);\r
1968                                         continue;\r
1969                                 }\r
1970                         }\r
1971 #if 0\r
1972                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_PATHS))\r
1973                         {\r
1974                                 LogChangedPathArray * cpatharray = m_logEntries[i]->pArChangedPaths;\r
1975 \r
1976                                 bool bGoing = true;\r
1977                                 for (INT_PTR cpPathIndex = 0; cpPathIndex<cpatharray->GetCount() && bGoing; ++cpPathIndex)\r
1978                                 {\r
1979                                         LogChangedPath * cpath = cpatharray->GetAt(cpPathIndex);\r
1980                                         CString path = cpath->sCopyFromPath;\r
1981                                         path.MakeLower();\r
1982                                         if ((path.Find(find)>=0)&&(IsEntryInDateRange(i)))\r
1983                                         {\r
1984                                                 pShownlist->Add(m_logEntries[i]);\r
1985                                                 bGoing = false;\r
1986                                                 continue;\r
1987                                         }\r
1988                                         path = cpath->sPath;\r
1989                                         path.MakeLower();\r
1990                                         if ((path.Find(find)>=0)&&(IsEntryInDateRange(i)))\r
1991                                         {\r
1992                                                 pShownlist->Add(m_logEntries[i]);\r
1993                                                 bGoing = false;\r
1994                                                 continue;\r
1995                                         }\r
1996                                         path = cpath->GetAction();\r
1997                                         path.MakeLower();\r
1998                                         if ((path.Find(find)>=0)&&(IsEntryInDateRange(i)))\r
1999                                         {\r
2000                                                 pShownlist->Add(m_logEntries[i]);\r
2001                                                 bGoing = false;\r
2002                                                 continue;\r
2003                                         }\r
2004                                 }\r
2005                         }\r
2006 #endif\r
2007                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_AUTHORS))\r
2008                         {\r
2009                                 CString msg = m_logEntries[i].m_AuthorName;\r
2010                                 msg = msg.MakeLower();\r
2011                                 if ((msg.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
2012                                 {\r
2013                                         pShownlist->Add(&m_logEntries[i]);\r
2014                                         continue;\r
2015                                 }\r
2016                         }\r
2017                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_REVS))\r
2018                         {\r
2019                                 sRev.Format(_T("%s"), m_logEntries[i].m_CommitHash);\r
2020                                 if ((sRev.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
2021                                 {\r
2022                                         pShownlist->Add(&m_logEntries[i]);\r
2023                                         continue;\r
2024                                 }\r
2025                         }\r
2026                 } // else (from if (bRegex))    \r
2027         } // for (DWORD i=0; i<m_logEntries.size(); ++i) \r
2028 \r
2029 }\r
2030 \r
2031 BOOL CGitLogListBase::IsEntryInDateRange(int i)\r
2032 {\r
2033         __time64_t time = m_logEntries[i].m_AuthorDate.GetTime();\r
2034         if ((time >= m_From.GetTime())&&(time <= m_To.GetTime()))\r
2035                 return TRUE;\r
2036 \r
2037         return FALSE;\r
2038 \r
2039 //      return TRUE;\r
2040 }\r
2041 void CGitLogListBase::StartFilter()\r
2042 {\r
2043         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
2044         RecalculateShownList(&m_arShownList);\r
2045         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
2046 \r
2047 \r
2048         DeleteAllItems();\r
2049         SetItemCountEx(ShownCountWithStopped());\r
2050         RedrawItems(0, ShownCountWithStopped());\r
2051         SetRedraw(false);\r
2052         //ResizeAllListCtrlCols();\r
2053         SetRedraw(true);\r
2054         Invalidate();\r
2055 \r
2056 }\r
2057 void CGitLogListBase::RemoveFilter()\r
2058 {\r
2059 \r
2060         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
2061 \r
2062         m_arShownList.RemoveAll();\r
2063 \r
2064         // reset the time filter too\r
2065 #if 0\r
2066         m_timFrom = (__time64_t(m_tFrom));\r
2067         m_timTo = (__time64_t(m_tTo));\r
2068         m_DateFrom.SetTime(&m_timFrom);\r
2069         m_DateTo.SetTime(&m_timTo);\r
2070         m_DateFrom.SetRange(&m_timFrom, &m_timTo);\r
2071         m_DateTo.SetRange(&m_timFrom, &m_timTo);\r
2072 #endif\r
2073 \r
2074         for (DWORD i=0; i<m_logEntries.size(); ++i)\r
2075         {\r
2076                 if(this->m_IsOldFirst)\r
2077                 {\r
2078                         m_arShownList.Add(&m_logEntries[m_logEntries.size()-i-1]);\r
2079                 }else\r
2080                 {\r
2081                         m_arShownList.Add(&m_logEntries[i]);\r
2082                 }\r
2083         }\r
2084 //      InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
2085         DeleteAllItems();\r
2086         SetItemCountEx(ShownCountWithStopped());\r
2087         RedrawItems(0, ShownCountWithStopped());\r
2088 //      SetRedraw(false);\r
2089 //      ResizeAllListCtrlCols();\r
2090 //      SetRedraw(true);\r
2091 \r
2092         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
2093 }\r
2094 \r
2095 void CGitLogListBase::Clear()\r
2096 {\r
2097         m_arShownList.RemoveAll();\r
2098         m_logEntries.clear();\r
2099         m_logEntries.m_HashMap.clear();\r
2100         DeleteAllItems();\r
2101         m_logEntries.m_Lns.clear();\r
2102 \r
2103         m_logEntries.m_FirstFreeLane=0;\r
2104         m_logEntries.m_Lns.clear();\r
2105 \r
2106 }\r
2107 \r
2108 void CGitLogListBase::OnDestroy()\r
2109 {\r
2110         // save the column widths to the registry\r
2111         SaveColumnWidths();\r
2112 \r
2113         if(this->m_bThreadRunning)\r
2114         {\r
2115                 this->m_bExitThread=true;\r
2116                 DWORD ret =::WaitForSingleObject(m_LoadingThread->m_hThread,20000);\r
2117                 if(ret == WAIT_TIMEOUT)\r
2118                         TerminateThread();\r
2119         }\r
2120         while(m_LogCache.SaveCache())\r
2121         {\r
2122                 if(CMessageBox::Show(NULL,_T("Cannot Save Log Cache to Disk. To retry click yes. To give up click no."),_T("TortoiseGit"),\r
2123                                                         MB_YESNO) == IDNO)\r
2124                                                         break;\r
2125         }\r
2126         CHintListCtrl::OnDestroy();\r
2127 }\r
2128 \r
2129 LRESULT CGitLogListBase::OnLoad(WPARAM wParam,LPARAM lParam)\r
2130 {\r
2131         CRect rect;\r
2132         int i=(int)wParam;\r
2133         this->GetItemRect(i,&rect,LVIR_BOUNDS);\r
2134         this->InvalidateRect(rect);\r
2135         return 0;\r
2136 }\r
2137 \r
2138 /**\r
2139  * Save column widths to the registry\r
2140  */\r
2141 void CGitLogListBase::SaveColumnWidths()\r
2142 {\r
2143         CHeaderCtrl* pHdrCtrl = (CHeaderCtrl*)(GetDlgItem(0));\r
2144         if (pHdrCtrl)\r
2145         {\r
2146                 int numcols = pHdrCtrl->GetItemCount();\r
2147                 for (int col = 0; col < numcols; col++)\r
2148                 {\r
2149                         int width = GetColumnWidth( col );\r
2150                         CString regentry;\r
2151                         regentry.Format( _T("Software\\TortoiseGit\\log\\ColWidth%d"), col);\r
2152                         CRegDWORD regwidth(regentry, 0);\r
2153                         regwidth = width;       // this writes it to reg\r
2154                 }\r
2155         }\r
2156 }\r
2157 \r