-
Notifications
You must be signed in to change notification settings - Fork 892
/
Copy pathCommitLog.cs
229 lines (192 loc) · 7.42 KB
/
CommitLog.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
/// <summary>
/// A log of commits in a <see cref="Repository"/>
/// </summary>
public sealed class CommitLog : IQueryableCommitLog
{
private readonly Repository repo;
private readonly CommitFilter queryFilter;
/// <summary>
/// Initializes a new instance of the <see cref="CommitLog"/> class.
/// The commits will be enumerated according in reverse chronological order.
/// </summary>
/// <param name="repo">The repository.</param>
internal CommitLog(Repository repo)
: this(repo, new CommitFilter())
{ }
/// <summary>
/// Initializes a new instance of the <see cref="CommitLog"/> class.
/// </summary>
/// <param name="repo">The repository.</param>
/// <param name="queryFilter">The filter to use in querying commits</param>
internal CommitLog(Repository repo, CommitFilter queryFilter)
{
this.repo = repo;
this.queryFilter = queryFilter;
}
/// <summary>
/// Gets the current sorting strategy applied when enumerating the log
/// </summary>
public CommitSortStrategies SortedBy
{
get { return queryFilter.SortBy; }
}
#region IEnumerable<Commit> Members
/// <summary>
/// Returns an enumerator that iterates through the log.
/// </summary>
/// <returns>An <see cref="IEnumerator{T}"/> object that can be used to iterate through the log.</returns>
public IEnumerator<Commit> GetEnumerator()
{
return new CommitEnumerator(repo, queryFilter);
}
/// <summary>
/// Returns an enumerator that iterates through the log.
/// </summary>
/// <returns>An <see cref="IEnumerator"/> object that can be used to iterate through the log.</returns>
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
#endregion
/// <summary>
/// Returns the list of commits of the repository matching the specified <paramref name="filter"/>.
/// </summary>
/// <param name="filter">The options used to control which commits will be returned.</param>
/// <returns>A list of commits, ready to be enumerated.</returns>
public ICommitLog QueryBy(CommitFilter filter)
{
Ensure.ArgumentNotNull(filter, "filter");
Ensure.ArgumentNotNull(filter.IncludeReachableFrom, "filter.IncludeReachableFrom");
Ensure.ArgumentNotNullOrEmptyString(filter.IncludeReachableFrom.ToString(), "filter.IncludeReachableFrom");
return new CommitLog(repo, filter);
}
/// <summary>
/// Returns the list of commits of the repository representing the history of a file beyond renames.
/// </summary>
/// <param name="path">The file's path.</param>
/// <returns>A list of file history entries, ready to be enumerated.</returns>
public IEnumerable<LogEntry> QueryBy(string path)
{
Ensure.ArgumentNotNull(path, "path");
return new FileHistory(repo, path);
}
/// <summary>
/// Returns the list of commits of the repository representing the history of a file beyond renames.
/// </summary>
/// <param name="path">The file's path.</param>
/// <param name="filter">The options used to control which commits will be returned.</param>
/// <returns>A list of file history entries, ready to be enumerated.</returns>
public IEnumerable<LogEntry> QueryBy(string path, CommitFilter filter)
{
Ensure.ArgumentNotNull(path, "path");
Ensure.ArgumentNotNull(filter, "filter");
return new FileHistory(repo, path, filter);
}
private class CommitEnumerator : IEnumerator<Commit>
{
private readonly Repository repo;
private readonly RevWalkerHandle handle;
private ObjectId currentOid;
public CommitEnumerator(Repository repo, CommitFilter filter)
{
this.repo = repo;
handle = Proxy.git_revwalk_new(repo.Handle);
repo.RegisterForCleanup(handle);
Sort(filter.SortBy);
Push(filter.SinceList);
Hide(filter.UntilList);
FirstParentOnly(filter.FirstParentOnly);
}
#region IEnumerator<Commit> Members
public Commit Current
{
get { return repo.Lookup<Commit>(currentOid); }
}
object IEnumerator.Current
{
get { return Current; }
}
public bool MoveNext()
{
ObjectId id = Proxy.git_revwalk_next(handle);
if (id == null)
{
return false;
}
currentOid = id;
return true;
}
public void Reset()
{
Proxy.git_revwalk_reset(handle);
}
#endregion
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
private void Dispose(bool disposing)
{
handle.SafeDispose();
}
private delegate void HidePushSignature(RevWalkerHandle handle, ObjectId id);
private void InternalHidePush(IList<object> identifier, HidePushSignature hidePush)
{
IEnumerable<ObjectId> oids = repo.Committishes(identifier).TakeWhile(o => o != null);
foreach (ObjectId actedOn in oids)
{
hidePush(handle, actedOn);
}
}
private void Push(IList<object> identifier)
{
InternalHidePush(identifier, Proxy.git_revwalk_push);
}
private void Hide(IList<object> identifier)
{
if (identifier == null)
{
return;
}
InternalHidePush(identifier, Proxy.git_revwalk_hide);
}
private void Sort(CommitSortStrategies options)
{
Proxy.git_revwalk_sorting(handle, options);
}
private void FirstParentOnly(bool firstParent)
{
if (firstParent)
{
Proxy.git_revwalk_simplify_first_parent(handle);
}
}
}
}
/// <summary>
/// Determines the finding strategy of merge base.
/// </summary>
public enum MergeBaseFindingStrategy
{
/// <summary>
/// Compute the best common ancestor between some commits to use in a three-way merge.
/// <para>
/// When more than two commits are provided, the computation is performed between the first commit and a hypothetical merge commit across all the remaining commits.
/// </para>
/// </summary>
Standard,
/// <summary>
/// Compute the best common ancestor of all supplied commits, in preparation for an n-way merge.
/// </summary>
Octopus,
}
}