OSDN Git Service

Add home enviroment and fix memory leak problem
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / SVNProgressDlg.h
1 // TortoiseGit - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2008 - TortoiseGit\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #pragma once\r
20 \r
21 #include "StandAloneDlg.h"\r
22 #include "TGitPath.h"\r
23 #include "ProjectProperties.h"\r
24 #include "Git.h"\r
25 #include "GitStatus.h"\r
26 #include "Colors.h"\r
27 //#include "..\IBugTraqProvider\IBugTraqProvider_h.h"\r
28 #include "afxwin.h"\r
29 \r
30 typedef int (__cdecl *GENERICCOMPAREFN)(const void * elem1, const void * elem2);\r
31 \r
32 /** \r
33  * \ingroup TortoiseProc\r
34  * Options which can be used to configure the way the dialog box works\r
35  */\r
36 typedef enum\r
37 {\r
38         ProgOptNone = 0,\r
39         ProgOptRecursive = 0x01,\r
40         ProgOptNonRecursive = 0x00,\r
41         /// Don't actually do the merge - just practice it\r
42         ProgOptDryRun = 0x04,\r
43         ProgOptIgnoreExternals = 0x08,\r
44         ProgOptKeeplocks = 0x10,\r
45         /// for locking this means steal the lock, for unlocking it means breaking the lock\r
46         ProgOptLockForce = 0x20,\r
47         ProgOptSwitchAfterCopy = 0x40,\r
48         ProgOptIncludeIgnored = 0x80,\r
49         ProgOptIgnoreAncestry = 0x100,\r
50         ProgOptEolDefault = 0x200,\r
51         ProgOptEolCRLF = 0x400,\r
52         ProgOptEolLF = 0x800,\r
53         ProgOptEolCR = 0x1000,\r
54         ProgOptSkipConflictCheck = 0x2000,\r
55         ProgOptRecordOnly = 0x4000\r
56 } ProgressOptions;\r
57 \r
58 typedef enum\r
59 {\r
60         CLOSE_MANUAL = 0,\r
61         CLOSE_NOERRORS,\r
62         CLOSE_NOCONFLICTS,\r
63         CLOSE_NOMERGES,\r
64         CLOSE_LOCAL\r
65 } ProgressCloseOptions;\r
66 \r
67 #define WM_SHOWCONFLICTRESOLVER (WM_APP + 100)\r
68 \r
69 /**\r
70  * \ingroup TortoiseProc\r
71  * Handles different Subversion commands and shows the notify messages\r
72  * in a listbox. Since several Subversion commands have similar notify\r
73  * messages they are grouped together in this single class.\r
74  */\r
75 class CGitProgressDlg : public CResizableStandAloneDialog\r
76 {\r
77 public:\r
78         typedef enum\r
79         {\r
80                 GitProgress_Add,\r
81                 GitProgress_Checkout,\r
82                 GitProgress_Commit,\r
83                 GitProgress_Copy,\r
84                 GitProgress_Export,\r
85                 GitProgress_Import,\r
86                 GitProgress_Lock,\r
87                 GitProgress_Merge,\r
88                 GitProgress_MergeReintegrate,\r
89                 GitProgress_MergeAll,\r
90                 GitProgress_Rename,\r
91                 GitProgress_Resolve,\r
92                 GitProgress_Revert,\r
93                 GitProgress_Switch,\r
94                 GitProgress_Unlock,\r
95                 GitProgress_Update,\r
96         } Command;\r
97 \r
98 \r
99         DECLARE_DYNAMIC(CGitProgressDlg)\r
100 \r
101 public:\r
102 \r
103         CGitProgressDlg(CWnd* pParent = NULL);\r
104         virtual ~CGitProgressDlg();\r
105 \r
106 \r
107         void SetCommand(Command cmd) {m_Command = cmd;}\r
108         void SetAutoClose(DWORD ac) {m_dwCloseOnEnd = ac;}\r
109         void SetOptions(DWORD opts) {m_options = opts;}\r
110         void SetPathList(const CTGitPathList& pathList) {m_targetPathList = pathList;}\r
111         void SetUrl(const CString& url) {m_url.SetFromUnknown(url);}\r
112         void SetSecondUrl(const CString& url) {m_url2.SetFromUnknown(url);}\r
113         void SetCommitMessage(const CString& msg) {m_sMessage = msg;}\r
114         \r
115 //      void SetRevision(const GitRev& rev) {m_Revision = rev;}\r
116 //      void SetRevisionEnd(const GitRev& rev) {m_RevisionEnd = rev;}\r
117         \r
118         void SetDiffOptions(const CString& opts) {m_diffoptions = opts;}\r
119         void SetDepth(git_depth_t depth = git_depth_unknown) {m_depth = depth;}\r
120         void SetPegRevision(GitRev pegrev = GitRev()) {m_pegRev = pegrev;}\r
121         void SetProjectProperties(ProjectProperties props) {m_ProjectProperties = props;}\r
122         void SetChangeList(const CString& changelist, bool keepchangelist) {m_changelist = changelist; m_keepchangelist = keepchangelist;}\r
123         void SetSelectedList(const CTGitPathList& selPaths);\r
124 //      void SetRevisionRanges(const GitRevRangeArray& revArray) {m_revisionArray = revArray;}\r
125 //      void SetBugTraqProvider(const CComPtr<IBugTraqProvider> pBugtraqProvider) { m_BugTraqProvider = pBugtraqProvider;}\r
126         /**\r
127          * If the number of items for which the operation is done on is known\r
128          * beforehand, that number can be set here. It is then used to show a more\r
129          * accurate progress bar during the operation.\r
130          */\r
131         void SetItemCount(long count) {if(count) m_itemCountTotal = count;}\r
132         \r
133         bool SetBackgroundImage(UINT nID);\r
134 \r
135         bool DidErrorsOccur() {return m_bErrorsOccurred;}\r
136 \r
137         enum { IDD = IDD_SVNPROGRESS };\r
138 \r
139 private:\r
140         class NotificationData\r
141         {\r
142         public:\r
143                 NotificationData() :\r
144 #if 0\r
145                   action((git_wc_notify_action_t)-1),\r
146                           kind(git_node_none),\r
147                           content_state(git_wc_notify_state_inapplicable),\r
148                           prop_state(git_wc_notify_state_inapplicable),\r
149                           rev(0),\r
150 #endif\r
151                           color(::GetSysColor(COLOR_WINDOWTEXT)),\r
152                           bConflictedActionItem(false),\r
153                           bAuxItem(false)\r
154                           //,\r
155 //                        lock_state(git_wc_notify_lock_state_unchanged)\r
156                   {\r
157 //                        merge_range.end = 0;\r
158 //                        merge_range.start = 0;\r
159                   }\r
160         public:\r
161                 // The text we put into the first column (the Git action for normal items, just text for aux items)\r
162                 CString                                 sActionColumnText;      \r
163                 CTGitPath                               path;\r
164                 CTGitPath                               basepath;\r
165                 CString                                 changelistname;\r
166 \r
167 ///             git_wc_notify_action_t  action;\r
168 //              git_node_kind_t                 kind;\r
169                 CString                                 mime_type;\r
170 //              git_wc_notify_state_t   content_state;\r
171 //              git_wc_notify_state_t   prop_state;\r
172 //              git_wc_notify_lock_state_t lock_state;\r
173 //              git_merge_range_t               merge_range;\r
174                 git_revnum_t                    rev;\r
175                 COLORREF                                color;\r
176                 CString                                 owner;                                          ///< lock owner\r
177                 bool                                    bConflictedActionItem;          // Is this item a conflict?\r
178                 bool                                    bAuxItem;                                       // Set if this item is not a true 'Git action' \r
179                 CString                                 sPathColumnText;        \r
180 \r
181         };\r
182 protected:\r
183 \r
184 #if 0   //implement the virtual methods from Git base class\r
185         virtual BOOL Notify(const CTGitPath& path, git_wc_notify_action_t action, \r
186                 git_node_kind_t kind, const CString& mime_type, \r
187                 git_wc_notify_state_t content_state, \r
188                 git_wc_notify_state_t prop_state, LONG rev,\r
189                 const git_lock_t * lock, git_wc_notify_lock_state_t lock_state,\r
190                 const CString& changelistname,\r
191                 git_merge_range_t * range,\r
192                 git_error_t * err, apr_pool_t * pool);\r
193 #endif\r
194 //      virtual git_wc_conflict_choice_t        ConflictResolveCallback(const git_wc_conflict_description_t *description, CString& mergedfile);\r
195         virtual BOOL                                            OnInitDialog();\r
196         virtual BOOL                                            Cancel();\r
197         virtual void                                            OnCancel();\r
198         virtual BOOL                                            PreTranslateMessage(MSG* pMsg);\r
199         virtual void                                            DoDataExchange(CDataExchange* pDX);\r
200 \r
201         afx_msg void    OnNMCustomdrawSvnprogress(NMHDR *pNMHDR, LRESULT *pResult);\r
202         afx_msg void    OnLvnGetdispinfoSvnprogress(NMHDR *pNMHDR, LRESULT *pResult);\r
203         afx_msg void    OnNMDblclkSvnprogress(NMHDR *pNMHDR, LRESULT *pResult);\r
204         afx_msg void    OnBnClickedLogbutton();\r
205         afx_msg void    OnBnClickedOk();\r
206         afx_msg void    OnBnClickedNoninteractive();\r
207         afx_msg void    OnHdnItemclickSvnprogress(NMHDR *pNMHDR, LRESULT *pResult);\r
208         afx_msg BOOL    OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);\r
209         afx_msg void    OnClose();\r
210         afx_msg void    OnContextMenu(CWnd* pWnd, CPoint point);\r
211         afx_msg LRESULT OnGitProgress(WPARAM wParam, LPARAM lParam);\r
212         afx_msg void    OnTimer(UINT_PTR nIDEvent);\r
213         afx_msg void    OnEnSetfocusInfotext();\r
214         afx_msg void    OnLvnBegindragSvnprogress(NMHDR *pNMHDR, LRESULT *pResult);\r
215         afx_msg void    OnSize(UINT nType, int cx, int cy);\r
216         LRESULT                 OnShowConflictResolver(WPARAM, LPARAM);\r
217 \r
218         DECLARE_MESSAGE_MAP()\r
219 \r
220         void                    Sort();\r
221         static bool             SortCompare(const NotificationData* pElem1, const NotificationData* pElem2);\r
222 \r
223         static BOOL             m_bAscending;\r
224         static int              m_nSortedColumn;\r
225         CStringList             m_ExtStack;\r
226 \r
227 private:\r
228         static UINT ProgressThreadEntry(LPVOID pVoid);\r
229         UINT            ProgressThread();\r
230         virtual void OnOK();\r
231         void            ReportGitError();\r
232         void            ReportError(const CString& sError);\r
233         void            ReportWarning(const CString& sWarning);\r
234         void            ReportNotification(const CString& sNotification);\r
235         void            ReportCmd(const CString& sCmd);\r
236         void            ReportString(CString sMessage, const CString& sMsgKind, COLORREF color = ::GetSysColor(COLOR_WINDOWTEXT));\r
237         void            AddItemToList();\r
238         CString         BuildInfoString();\r
239         CString         GetPathFromColumnText(const CString& sColumnText);\r
240 \r
241         /**\r
242          * Resizes the columns of the progress list so that the headings are visible.\r
243          */\r
244         void            ResizeColumns();\r
245 \r
246         /// Predicate function to tell us if a notification data item is auxiliary or not\r
247         static bool NotificationDataIsAux(const NotificationData* pData);\r
248 \r
249         // the commands to execute\r
250         bool            CmdAdd(CString& sWindowTitle, bool& localoperation);\r
251         bool            CmdCheckout(CString& sWindowTitle, bool& localoperation);\r
252         bool            CmdCommit(CString& sWindowTitle, bool& localoperation);\r
253         bool            CmdCopy(CString& sWindowTitle, bool& localoperation);\r
254         bool            CmdExport(CString& sWindowTitle, bool& localoperation);\r
255         bool            CmdImport(CString& sWindowTitle, bool& localoperation);\r
256         bool            CmdLock(CString& sWindowTitle, bool& localoperation);\r
257         bool            CmdMerge(CString& sWindowTitle, bool& localoperation);\r
258         bool            CmdMergeAll(CString& sWindowTitle, bool& localoperation);\r
259         bool            CmdMergeReintegrate(CString& sWindowTitle, bool& localoperation);\r
260         bool            CmdRename(CString& sWindowTitle, bool& localoperation);\r
261         bool            CmdResolve(CString& sWindowTitle, bool& localoperation);\r
262         bool            CmdRevert(CString& sWindowTitle, bool& localoperation);\r
263         bool            CmdSwitch(CString& sWindowTitle, bool& localoperation);\r
264         bool            CmdUnlock(CString& sWindowTitle, bool& localoperation);\r
265         bool            CmdUpdate(CString& sWindowTitle, bool& localoperation);\r
266 \r
267 private:\r
268         typedef std::map<CStringA, git_revnum_t> StringRevMap;\r
269         typedef std::vector<NotificationData *> NotificationDataVect;\r
270 \r
271 \r
272         CString                                 m_mergedfile;\r
273         NotificationDataVect    m_arData;\r
274 \r
275         CWinThread*                             m_pThread;\r
276         volatile LONG                   m_bThreadRunning;\r
277 \r
278         ProjectProperties               m_ProjectProperties;\r
279         CListCtrl                               m_ProgList;\r
280         Command                                 m_Command;\r
281         int                                             m_options;      // Use values from the ProgressOptions enum\r
282         git_depth_t                             m_depth;\r
283         CTGitPathList                   m_targetPathList;\r
284         CTGitPathList                   m_selectedPaths;\r
285         CTGitPath                               m_url;\r
286         CTGitPath                               m_url2;\r
287         CString                                 m_sMessage;\r
288         CString                                 m_diffoptions;\r
289         GitRev                                  m_Revision;\r
290         GitRev                                  m_RevisionEnd;\r
291         GitRev                                  m_pegRev;\r
292 //      GitRevRangeArray                m_revisionArray;\r
293         CString                                 m_changelist;\r
294         bool                                    m_keepchangelist;\r
295 \r
296         DWORD                                   m_dwCloseOnEnd;\r
297 \r
298         CTGitPath                               m_basePath;\r
299         StringRevMap                    m_UpdateStartRevMap;\r
300         StringRevMap                    m_FinishedRevMap;\r
301 \r
302         TCHAR                                   m_columnbuf[MAX_PATH];\r
303 \r
304         BOOL                                    m_bCancelled;\r
305         int                                             m_nConflicts;\r
306         bool                                    m_bErrorsOccurred;\r
307         bool                                    m_bMergesAddsDeletesOccurred;\r
308 \r
309         int                                             iFirstResized;\r
310         BOOL                                    bSecondResized;\r
311         int                                             nEnsureVisibleCount;\r
312 \r
313         CString                                 m_sTotalBytesTransferred;\r
314 \r
315         CColors                                 m_Colors;\r
316 \r
317         bool                                    m_bLockWarning;\r
318         bool                                    m_bLockExists;\r
319         bool                                    m_bFinishedItemAdded;\r
320         bool                                    m_bLastVisible;\r
321 \r
322         int                                             m_itemCount;\r
323         int                                             m_itemCountTotal;\r
324 \r
325         bool                                    m_AlwaysConflicted;\r
326 \r
327 ///     CComPtr<IBugTraqProvider> m_BugTraqProvider;\r
328 \r
329         // some strings different methods can use\r
330         CString                                 sIgnoredIncluded;\r
331         CString                                 sExtExcluded;\r
332         CString                                 sExtIncluded;\r
333         CString                                 sIgnoreAncestry;\r
334         CString                                 sRespectAncestry;\r
335         CString                                 sDryRun;\r
336         CString                                 sRecordOnly;\r
337 };\r