-
Notifications
You must be signed in to change notification settings - Fork 892
/
Copy pathNote.cs
124 lines (109 loc) · 4.55 KB
/
Note.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
using System;
using System.Diagnostics;
using System.Globalization;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
/// <summary>
/// A note, attached to a given <see cref="GitObject"/>.
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class Note : IEquatable<Note>
{
private static readonly LambdaEqualityHelper<Note> equalityHelper =
new LambdaEqualityHelper<Note>(x => x.BlobId, x => x.TargetObjectId, x => x.Namespace);
/// <summary>
/// Needed for mocking purposes.
/// </summary>
protected Note()
{ }
private Note(ObjectId blobId, string message, ObjectId targetObjectId, string @namespace)
{
BlobId = blobId;
Namespace = @namespace;
Message = message;
TargetObjectId = targetObjectId;
}
/// <summary>
/// The <see cref="ObjectId"/> of the blob containing the note message.
/// </summary>
public virtual ObjectId BlobId { get; private set; }
/// <summary>
/// The message.
/// </summary>
public virtual string Message { get; private set; }
/// <summary>
/// The namespace with which this note is associated.
/// <para>This is the abbreviated namespace (e.g.: commits), and not the canonical namespace (e.g.: refs/notes/commits).</para>
/// </summary>
public virtual string Namespace { get; private set; }
/// <summary>
/// The <see cref="ObjectId"/> of the target object.
/// </summary>
public virtual ObjectId TargetObjectId { get; private set; }
internal static Note BuildFromPtr(NoteHandle note, string @namespace, ObjectId targetObjectId)
{
ObjectId oid = Proxy.git_note_id(note);
string message = Proxy.git_note_message(note);
return new Note(oid, message, targetObjectId, @namespace);
}
/// <summary>
/// Determines whether the specified <see cref="object"/> is equal to the current <see cref="Note"/>.
/// </summary>
/// <param name="obj">The <see cref="object"/> to compare with the current <see cref="Note"/>.</param>
/// <returns>True if the specified <see cref="object"/> is equal to the current <see cref="Note"/>; otherwise, false.</returns>
public override bool Equals(object obj)
{
return Equals(obj as Note);
}
/// <summary>
/// Determines whether the specified <see cref="Note"/> is equal to the current <see cref="Note"/>.
/// </summary>
/// <param name="other">The <see cref="Note"/> to compare with the current <see cref="Note"/>.</param>
/// <returns>True if the specified <see cref="Note"/> is equal to the current <see cref="Note"/>; otherwise, false.</returns>
public bool Equals(Note 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="Note"/> are equal.
/// </summary>
/// <param name="left">First <see cref="Note"/> to compare.</param>
/// <param name="right">Second <see cref="Note"/> to compare.</param>
/// <returns>True if the two objects are equal; false otherwise.</returns>
public static bool operator ==(Note left, Note right)
{
return Equals(left, right);
}
/// <summary>
/// Tests if two <see cref="Note"/> are different.
/// </summary>
/// <param name="left">First <see cref="Note"/> to compare.</param>
/// <param name="right">Second <see cref="Note"/> to compare.</param>
/// <returns>True if the two objects are different; false otherwise.</returns>
public static bool operator !=(Note left, Note right)
{
return !Equals(left, right);
}
private string DebuggerDisplay
{
get
{
return string.Format(CultureInfo.InvariantCulture,
"Target \"{0}\", Namespace \"{1}\": {2}",
TargetObjectId.ToString(7),
Namespace,
Message);
}
}
}
}