-
Notifications
You must be signed in to change notification settings - Fork 925
Expand file tree
/
Copy pathFilter.cs
More file actions
87 lines (76 loc) · 3.06 KB
/
Filter.cs
File metadata and controls
87 lines (76 loc) · 3.06 KB
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
using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace LibGit2Sharp
{
/// <summary>
/// Criterias used to filter out and order the commits of the repository when querying its history.
/// </summary>
public class Filter
{
/// <summary>
/// Initializes a new instance of <see cref = "Filter" />.
/// </summary>
public Filter()
{
SortBy = GitSortOptions.Time;
Since = "HEAD";
}
/// <summary>
/// The ordering stragtegy to use.
/// <para>
/// By default, the commits are shown in reverse chronological order.
/// </para>
/// </summary>
public GitSortOptions SortBy { get; set; }
/// <summary>
/// A pointer to a commit object or a list of pointers to consider as starting points.
/// <para>
/// Can be either a <see cref = "string" /> containing the sha or reference canonical name to use,
/// a <see cref = "Branch" />, a <see cref = "Reference" />, a <see cref = "Commit" />, a <see cref = "Tag" />,
/// a <see cref = "TagAnnotation" />, an <see cref="ObjectId"/> or even a mixed collection of all of the above.
/// By default, the <see cref = "Repository.Head" /> will be used as boundary.
/// </para>
/// </summary>
public object Since { get; set; }
internal IList<object> SinceList
{
get { return ToList(Since); }
}
/// <summary>
/// A pointer to a commit object or a list of pointers which will be excluded (along with ancestors) from the enumeration.
/// <para>
/// Can be either a <see cref = "string" /> containing the sha or reference canonical name to use,
/// a <see cref = "Branch" />, a <see cref = "Reference" />, a <see cref = "Commit" />, a <see cref = "Tag" />,
/// a <see cref = "TagAnnotation" />, an <see cref="ObjectId"/> or even a mixed collection of all of the above.
/// </para>
/// </summary>
public object Until { get; set; }
internal IList<object> UntilList
{
get { return ToList(Until); }
}
private static IList<object> ToList(object obj)
{
var list = new List<object>();
if (obj == null)
{
return list;
}
var types = new[]
{
typeof(string), typeof(ObjectId),
typeof(Commit), typeof(TagAnnotation),
typeof(Tag), typeof(Branch), typeof(DetachedHead),
typeof(Reference), typeof(DirectReference), typeof(SymbolicReference)
};
if (types.Contains(obj.GetType()))
{
list.Add(obj);
return list;
}
list.AddRange(((IEnumerable)obj).Cast<object>());
return list;
}
}
}