-
Notifications
You must be signed in to change notification settings - Fork 892
/
Copy pathReflogCollection.cs
93 lines (79 loc) · 3.21 KB
/
ReflogCollection.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
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
/// <summary>
/// The <see cref="ReflogCollection"/> is the reflog of a given <see cref="Reference"/>, as a enumerable of <see cref="ReflogEntry"/>.
/// Reflog is a mechanism to record when the tip of a <see cref="Branch"/> is updated.
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class ReflogCollection : IEnumerable<ReflogEntry>
{
internal readonly Repository repo;
private readonly string canonicalName;
/// <summary>
/// Needed for mocking purposes.
/// </summary>
protected ReflogCollection()
{ }
/// <summary>
/// Initializes a new instance of the <see cref="ReflogCollection"/> class.
/// </summary>
/// <param name="repo">The repo.</param>
/// <param name="canonicalName">the canonical name of the <see cref="Reference"/> to retrieve reflog entries on.</param>
internal ReflogCollection(Repository repo, string canonicalName)
{
Ensure.ArgumentNotNullOrEmptyString(canonicalName, "canonicalName");
Ensure.ArgumentNotNull(repo, "repo");
if (!Reference.IsValidName(canonicalName))
{
throw new InvalidSpecificationException("The given reference name '{0}' is not valid", canonicalName);
}
this.repo = repo;
this.canonicalName = canonicalName;
}
#region Implementation of IEnumerable
/// <summary>
/// Returns an enumerator that iterates through the collection.
/// <para>
/// The enumerator returns the <see cref="ReflogEntry"/> by descending order (last reflog entry is returned first).
/// </para>
/// </summary>
/// <returns>An <see cref="IEnumerator{T}"/> object that can be used to iterate through the collection.</returns>
public virtual unsafe IEnumerator<ReflogEntry> GetEnumerator()
{
var entries = new List<ReflogEntry>();
using (ReflogHandle reflog = Proxy.git_reflog_read(repo.Handle, canonicalName))
{
var entriesCount = Proxy.git_reflog_entrycount(reflog);
for (int i = 0; i < entriesCount; i++)
{
git_reflog_entry* handle = Proxy.git_reflog_entry_byindex(reflog, i);
entries.Add(new ReflogEntry(handle));
}
}
return entries.GetEnumerator();
}
/// <summary>
/// Returns an enumerator that iterates through the collection.
/// </summary>
/// <returns>An <see cref="IEnumerator"/> object that can be used to iterate through the collection.</returns>
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
#endregion
private string DebuggerDisplay
{
get
{
return string.Format(CultureInfo.InvariantCulture, "Count = {0}", this.Count());
}
}
}
}