-
Notifications
You must be signed in to change notification settings - Fork 892
/
Copy pathSignature.cs
167 lines (148 loc) · 5.87 KB
/
Signature.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
using System;
using System.Globalization;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
/// <summary>
/// A signature
/// </summary>
public sealed class Signature : IEquatable<Signature>
{
private readonly DateTimeOffset when;
private readonly string name;
private readonly string email;
private static readonly LambdaEqualityHelper<Signature> equalityHelper =
new LambdaEqualityHelper<Signature>(x => x.Name, x => x.Email, x => x.When);
internal unsafe Signature(git_signature* sig)
{
name = LaxUtf8Marshaler.FromNative(sig->name);
email = LaxUtf8Marshaler.FromNative(sig->email);
when = DateTimeOffset.FromUnixTimeSeconds(sig->when.time).ToOffset(TimeSpan.FromMinutes(sig->when.offset));
}
/// <summary>
/// Initializes a new instance of the <see cref="Signature"/> class.
/// </summary>
/// <param name="name">The name.</param>
/// <param name="email">The email.</param>
/// <param name="when">The when.</param>
public Signature(string name, string email, DateTimeOffset when)
{
Ensure.ArgumentNotNullOrEmptyString(name, "name");
Ensure.ArgumentNotNullOrEmptyString(email, "email");
Ensure.ArgumentDoesNotContainZeroByte(name, "name");
Ensure.ArgumentDoesNotContainZeroByte(email, "email");
this.name = name;
this.email = email;
this.when = when;
}
/// <summary>
/// Initializes a new instance of the <see cref="Signature"/> class.
/// </summary>
/// <param name="identity">The identity.</param>
/// <param name="when">The when.</param>
public Signature(Identity identity, DateTimeOffset when)
{
Ensure.ArgumentNotNull(identity, "identity");
this.name = identity.Name;
this.email = identity.Email;
this.when = when;
}
internal SignatureHandle BuildHandle()
{
return Proxy.git_signature_new(name, email, when);
}
/// <summary>
/// Gets the name.
/// </summary>
public string Name
{
get { return name; }
}
/// <summary>
/// Gets the email.
/// </summary>
public string Email
{
get { return email; }
}
/// <summary>
/// Gets the date when this signature happened.
/// </summary>
public DateTimeOffset When
{
get { return when; }
}
/// <summary>
/// Determines whether the specified <see cref="object"/> is equal to the current <see cref="Signature"/>.
/// </summary>
/// <param name="obj">The <see cref="object"/> to compare with the current <see cref="Signature"/>.</param>
/// <returns>True if the specified <see cref="object"/> is equal to the current <see cref="Signature"/>; otherwise, false.</returns>
public override bool Equals(object obj)
{
return Equals(obj as Signature);
}
/// <summary>
/// Determines whether the specified <see cref="Signature"/> is equal to the current <see cref="Signature"/>.
/// </summary>
/// <param name="other">The <see cref="Signature"/> to compare with the current <see cref="Signature"/>.</param>
/// <returns>True if the specified <see cref="Signature"/> is equal to the current <see cref="Signature"/>; otherwise, false.</returns>
public bool Equals(Signature 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="Signature"/> are equal.
/// </summary>
/// <param name="left">First <see cref="Signature"/> to compare.</param>
/// <param name="right">Second <see cref="Signature"/> to compare.</param>
/// <returns>True if the two objects are equal; false otherwise.</returns>
public static bool operator ==(Signature left, Signature right)
{
return Equals(left, right);
}
/// <summary>
/// Tests if two <see cref="Signature"/> are different.
/// </summary>
/// <param name="left">First <see cref="Signature"/> to compare.</param>
/// <param name="right">Second <see cref="Signature"/> to compare.</param>
/// <returns>True if the two objects are different; false otherwise.</returns>
public static bool operator !=(Signature left, Signature right)
{
return !Equals(left, right);
}
/// <summary>
/// Returns "<see cref="Name"/> <<see cref="Email"/>>" for the current <see cref="Signature"/>.
/// </summary>
/// <returns>The <see cref="Name"/> and <see cref="Email"/> of the current <see cref="Signature"/>.</returns>
public override string ToString()
{
return string.Format(CultureInfo.InvariantCulture, "{0} <{1}>", Name, Email);
}
}
internal static class SignatureHelpers
{
/// <summary>
/// Build the handle for the Signature, or return a handle
/// to an empty signature.
/// </summary>
/// <param name="signature"></param>
/// <returns></returns>
public static unsafe SignatureHandle SafeBuildHandle(this Signature signature)
{
if (signature == null)
{
return new SignatureHandle(null, false);
}
return signature.BuildHandle();
}
}
}