forked from gitextensions/gitextensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRevisionGraph.cs
351 lines (288 loc) · 11.4 KB
/
RevisionGraph.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Text;
using GitCommands.Config;
namespace GitCommands
{
public abstract class RevisionGraphInMemFilter
{
public abstract bool PassThru(GitRevision rev);
}
public sealed class RevisionGraph : IDisposable
{
public event EventHandler Exited;
public event EventHandler<AsyncErrorEventArgs> Error
{
add
{
backgroundLoader.LoadingError += value;
}
remove
{
backgroundLoader.LoadingError -= value;
}
}
public event EventHandler Updated;
public event EventHandler BeginUpdate;
public int RevisionCount { get; set; }
public class RevisionGraphUpdatedEventArgs : EventArgs
{
public RevisionGraphUpdatedEventArgs(GitRevision revision)
{
Revision = revision;
}
public readonly GitRevision Revision;
}
public bool BackgroundThread { get; set; }
public bool ShaOnly { get; set; }
private readonly char[] splitChars = " \t\n".ToCharArray();
private readonly char[] hexChars = "0123456789ABCDEFabcdef".ToCharArray();
private const string COMMIT_BEGIN = "<(__BEGIN_COMMIT__)>"; // Something unlikely to show up in a comment
private Dictionary<string, List<GitHead>> heads;
private enum ReadStep
{
Commit,
Hash,
Parents,
Tree,
AuthorName,
AuthorEmail,
AuthorDate,
CommitterName,
CommitterEmail,
CommitterDate,
CommitMessageEncoding,
CommitMessage,
FileName,
Done,
}
private ReadStep nextStep = ReadStep.Commit;
private GitRevision revision;
private AsyncLoader backgroundLoader = new AsyncLoader();
private GitModule Module;
public RevisionGraph(GitModule module)
{
BackgroundThread = true;
Module = module;
}
~RevisionGraph()
{
Dispose();
}
public void Dispose()
{
backgroundLoader.Cancel();
}
public string LogParam = "HEAD --all";//--branches --remotes --tags";
public string BranchFilter = String.Empty;
public RevisionGraphInMemFilter InMemFilter;
private string selectedBranchName;
public void Execute()
{
if (BackgroundThread)
{
backgroundLoader.Load(execute, executed);
}
else
{
execute(new FixedLoadingTaskState(false));
executed();
}
}
private void execute(ILoadingTaskState taskState)
{
RevisionCount = 0;
heads = GetHeads().ToDictionaryOfList(head => head.Guid);
string formatString =
/* <COMMIT> */ COMMIT_BEGIN + "%n" +
/* Hash */ "%H%n" +
/* Parents */ "%P%n";
if (!ShaOnly)
{
formatString +=
/* Tree */ "%T%n" +
/* Author Name */ "%aN%n" +
/* Author Email */ "%aE%n" +
/* Author Date */ "%at%n" +
/* Committer Name */ "%cN%n" +
/* Committer Email */ "%cE%n" +
/* Committer Date */ "%ct%n" +
/* Commit message encoding */ "%e%n" + //there is a bug: git does not recode commit message when format is given
/* Commit Message */ "%s";
}
// NOTE:
// when called from FileHistory and FollowRenamesInFileHistory is enabled the "--name-only" argument is set.
// the filename is the next line after the commit-format defined above.
if (Settings.OrderRevisionByDate)
{
LogParam = " --date-order " + LogParam;
}
else
{
LogParam = " --topo-order " + LogParam;
}
string arguments = String.Format(CultureInfo.InvariantCulture,
"log -z {2} --pretty=format:\"{1}\" {0}",
LogParam,
formatString,
BranchFilter);
using (GitCommandsInstance gitGetGraphCommand = new GitCommandsInstance(Module))
{
gitGetGraphCommand.StreamOutput = true;
gitGetGraphCommand.CollectOutput = false;
Encoding LogOutputEncoding = Module.LogOutputEncoding;
gitGetGraphCommand.SetupStartInfoCallback = startInfo =>
{
startInfo.StandardOutputEncoding = GitModule.LosslessEncoding;
startInfo.StandardErrorEncoding = GitModule.LosslessEncoding;
};
Process p = gitGetGraphCommand.CmdStartProcess(Settings.GitCommand, arguments);
if (taskState.IsCanceled())
return;
previousFileName = null;
if (BeginUpdate != null)
BeginUpdate(this, EventArgs.Empty);
string line;
do
{
line = p.StandardOutput.ReadLine();
//commit message is not encoded by git
if (nextStep != ReadStep.CommitMessage)
line = GitModule.ReEncodeString(line, GitModule.LosslessEncoding, LogOutputEncoding);
if (line != null)
{
foreach (string entry in line.Split('\0'))
{
dataReceived(entry);
}
}
} while (line != null && !taskState.IsCanceled());
}
}
private void executed()
{
finishRevision();
previousFileName = null;
if (Exited != null)
Exited(this, EventArgs.Empty);
}
private IList<GitHead> GetHeads()
{
var result = Module.GetHeads(true);
bool validWorkingDir = Module.IsValidGitWorkingDir();
selectedBranchName = validWorkingDir ? Module.GetSelectedBranch() : string.Empty;
GitHead selectedHead = result.FirstOrDefault(head => head.Name == selectedBranchName);
if (selectedHead != null)
{
selectedHead.Selected = true;
var localConfigFile = Module.GetLocalConfig();
var selectedHeadMergeSource =
result.FirstOrDefault(head => head.IsRemote
&& selectedHead.GetTrackingRemote(localConfigFile) == head.Remote
&& selectedHead.GetMergeWith(localConfigFile) == head.LocalName);
if (selectedHeadMergeSource != null)
selectedHeadMergeSource.SelectedHeadMergeSource = true;
}
return result;
}
private string previousFileName = null;
void finishRevision()
{
if (revision != null)
{
if (revision.Name == null)
revision.Name = previousFileName;
else
previousFileName = revision.Name;
}
if (revision == null || revision.Guid.Trim(hexChars).Length == 0)
{
if ((revision == null) || (InMemFilter == null) || InMemFilter.PassThru(revision))
{
if (revision != null)
RevisionCount++;
if (Updated != null)
Updated(this, new RevisionGraphUpdatedEventArgs(revision));
}
}
nextStep = ReadStep.Commit;
}
void dataReceived(string line)
{
if (line == null)
return;
if (line == COMMIT_BEGIN)
{
// a new commit finalizes the last revision
finishRevision();
nextStep = ReadStep.Commit;
}
switch (nextStep)
{
case ReadStep.Commit:
// Sanity check
if (line == COMMIT_BEGIN)
{
revision = new GitRevision(Module, null);
}
else
{
// Bail out until we see what we expect
return;
}
break;
case ReadStep.Hash:
revision.Guid = line;
List<GitHead> headList;
if (heads.TryGetValue(revision.Guid, out headList))
revision.Heads.AddRange(headList);
break;
case ReadStep.Parents:
revision.ParentGuids = line.Split(splitChars, StringSplitOptions.RemoveEmptyEntries);
break;
case ReadStep.Tree:
revision.TreeGuid = line;
break;
case ReadStep.AuthorName:
revision.Author = line;
break;
case ReadStep.AuthorEmail:
revision.AuthorEmail = line;
break;
case ReadStep.AuthorDate:
{
DateTime dateTime;
if (DateTimeUtils.TryParseUnixTime(line, out dateTime))
revision.AuthorDate = dateTime;
}
break;
case ReadStep.CommitterName:
revision.Committer = line;
break;
case ReadStep.CommitterEmail:
revision.CommitterEmail = line;
break;
case ReadStep.CommitterDate:
{
DateTime dateTime;
if (DateTimeUtils.TryParseUnixTime(line, out dateTime))
revision.CommitDate = dateTime;
}
break;
case ReadStep.CommitMessageEncoding:
revision.MessageEncoding = line;
break;
case ReadStep.CommitMessage:
revision.Message = Module.ReEncodeCommitMessage(line, revision.MessageEncoding);
break;
case ReadStep.FileName:
revision.Name = line;
break;
}
nextStep++;
}
}
}