-
Notifications
You must be signed in to change notification settings - Fork 894
/
Copy pathIndexEntry.cs
125 lines (110 loc) · 4.64 KB
/
IndexEntry.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
using System;
using System.Diagnostics;
using System.Globalization;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
/// <summary>
/// A reference to a <see cref="Blob"/> known by the <see cref="Index"/>.
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class IndexEntry : IEquatable<IndexEntry>
{
private static readonly LambdaEqualityHelper<IndexEntry> equalityHelper =
new LambdaEqualityHelper<IndexEntry>(x => x.Path, x => x.Id, x => x.Mode, x => x.StageLevel);
/// <summary>
/// Gets the relative path to the file within the working directory.
/// </summary>
public virtual string Path { get; private set; }
/// <summary>
/// Gets the file mode.
/// </summary>
public virtual Mode Mode { get; private set; }
/// <summary>
/// Gets the stage number.
/// </summary>
public virtual StageLevel StageLevel { get; private set; }
/// <summary>
/// Whether the file is marked as assume-unchanged
/// </summary>
public virtual bool AssumeUnchanged { get; private set; }
/// <summary>
/// Gets the id of the <see cref="Blob"/> pointed at by this index entry.
/// </summary>
public virtual ObjectId Id { get; private set; }
internal static unsafe IndexEntry BuildFromPtr(git_index_entry* entry)
{
if (entry == null)
{
return null;
}
string path = LaxUtf8Marshaler.FromNative(entry->path);
return new IndexEntry
{
Path = path,
Id = new ObjectId(entry->id.Id),
StageLevel = Proxy.git_index_entry_stage(entry),
Mode = (Mode)entry->mode,
AssumeUnchanged = (git_index_entry.GIT_IDXENTRY_VALID & entry->flags) == git_index_entry.GIT_IDXENTRY_VALID
};
}
/// <summary>
/// Determines whether the specified <see cref="object"/> is equal to the current <see cref="IndexEntry"/>.
/// </summary>
/// <param name="obj">The <see cref="object"/> to compare with the current <see cref="IndexEntry"/>.</param>
/// <returns>True if the specified <see cref="object"/> is equal to the current <see cref="IndexEntry"/>; otherwise, false.</returns>
public override bool Equals(object obj)
{
return Equals(obj as IndexEntry);
}
/// <summary>
/// Determines whether the specified <see cref="IndexEntry"/> is equal to the current <see cref="IndexEntry"/>.
/// </summary>
/// <param name="other">The <see cref="IndexEntry"/> to compare with the current <see cref="IndexEntry"/>.</param>
/// <returns>True if the specified <see cref="IndexEntry"/> is equal to the current <see cref="IndexEntry"/>; otherwise, false.</returns>
public bool Equals(IndexEntry other)
{
return equalityHelper.Equals(this, other);
}
/// <summary>
/// Returns the hash code for this instance.
/// </summary>
/// <returns>A 32-bit signed integer hash code.</returns>
public override int GetHashCode()
{
return equalityHelper.GetHashCode(this);
}
/// <summary>
/// Tests if two <see cref="IndexEntry"/> are equal.
/// </summary>
/// <param name="left">First <see cref="IndexEntry"/> to compare.</param>
/// <param name="right">Second <see cref="IndexEntry"/> to compare.</param>
/// <returns>True if the two objects are equal; false otherwise.</returns>
public static bool operator ==(IndexEntry left, IndexEntry right)
{
return Equals(left, right);
}
/// <summary>
/// Tests if two <see cref="IndexEntry"/> are different.
/// </summary>
/// <param name="left">First <see cref="IndexEntry"/> to compare.</param>
/// <param name="right">Second <see cref="IndexEntry"/> to compare.</param>
/// <returns>True if the two objects are different; false otherwise.</returns>
public static bool operator !=(IndexEntry left, IndexEntry right)
{
return !Equals(left, right);
}
private string DebuggerDisplay
{
get
{
return string.Format(CultureInfo.InvariantCulture,
"{0} ({1}) => \"{2}\"",
Path,
StageLevel,
Id.ToString(7));
}
}
}
}