forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReferenceCollection.cs
More file actions
352 lines (298 loc) · 14.3 KB
/
ReferenceCollection.cs
File metadata and controls
352 lines (298 loc) · 14.3 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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
using System;
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 Collection of references in a <see cref = "Repository" />
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class ReferenceCollection : IEnumerable<Reference>
{
internal readonly Repository repo;
internal readonly ReferenceDatabaseSafeHandle refDbHandle;
/// <summary>
/// Needed for mocking purposes.
/// </summary>
protected ReferenceCollection()
{ }
/// <summary>
/// Initializes a new instance of the <see cref = "ReferenceCollection" /> class.
/// </summary>
/// <param name = "repo">The repo.</param>
internal ReferenceCollection(Repository repo)
{
this.repo = repo;
refDbHandle = Proxy.git_repository_refdb(repo.Handle);
repo.RegisterForCleanup(refDbHandle);
}
/// <summary>
/// Gets the <see cref = "LibGit2Sharp.Reference" /> with the specified name.
/// </summary>
/// <param name = "name">The canonical name of the reference to resolve.</param>
/// <returns>The resolved <see cref = "LibGit2Sharp.Reference" /> if it has been found, null otherwise.</returns>
public virtual Reference this[string name]
{
get { return Resolve<Reference>(name); }
}
#region IEnumerable<Reference> Members
/// <summary>
/// Returns an enumerator that iterates through the collection.
/// </summary>
/// <returns>An <see cref = "IEnumerator{T}" /> object that can be used to iterate through the collection.</returns>
public virtual IEnumerator<Reference> GetEnumerator()
{
return Proxy.git_reference_list(repo.Handle, GitReferenceType.ListAll)
.Select(n => this[n])
.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
/// <summary>
/// Creates a direct reference with the specified name and target
/// </summary>
/// <param name = "name">The canonical name of the reference to create.</param>
/// <param name = "targetId">Id of the target object.</param>
/// <param name = "allowOverwrite">True to allow silent overwriting a potentially existing reference, false otherwise.</param>
/// <param name="logMessage">The optional message to log in the <see cref="ReflogCollection"/> when adding the <see cref="DirectReference"/></param>
/// <returns>A new <see cref = "Reference" />.</returns>
public virtual DirectReference Add(string name, ObjectId targetId, bool allowOverwrite = false, string logMessage = null)
{
Ensure.ArgumentNotNullOrEmptyString(name, "name");
Ensure.ArgumentNotNull(targetId, "targetId");
using (ReferenceSafeHandle handle = Proxy.git_reference_create(repo.Handle, name, targetId, allowOverwrite))
{
var newTarget = (DirectReference)Reference.BuildFromPtr<Reference>(handle, repo);
LogReference(newTarget, targetId, logMessage);
return newTarget;
}
}
/// <summary>
/// Creates a symbolic reference with the specified name and target
/// </summary>
/// <param name = "name">The canonical name of the reference to create.</param>
/// <param name = "targetRef">The target reference.</param>
/// <param name = "allowOverwrite">True to allow silent overwriting a potentially existing reference, false otherwise.</param>
/// <param name="logMessage">The optional message to log in the <see cref="ReflogCollection"/> when adding the <see cref="SymbolicReference"/></param>
/// <returns>A new <see cref = "Reference" />.</returns>
public virtual SymbolicReference Add(string name, Reference targetRef, bool allowOverwrite = false, string logMessage = null)
{
Ensure.ArgumentNotNullOrEmptyString(name, "name");
Ensure.ArgumentNotNull(targetRef, "targetRef");
using (ReferenceSafeHandle handle = Proxy.git_reference_symbolic_create(repo.Handle, name, targetRef.CanonicalName, allowOverwrite))
{
var newTarget = (SymbolicReference)Reference.BuildFromPtr<Reference>(handle, repo);
LogReference(newTarget, targetRef, logMessage);
return newTarget;
}
}
/// <summary>
/// Remove a reference from the repository
/// </summary>
/// <param name = "reference">The reference to delete.</param>
public virtual void Remove(Reference reference)
{
Ensure.ArgumentNotNull(reference, "reference");
using (ReferenceSafeHandle handle = RetrieveReferencePtr(reference.CanonicalName))
{
Proxy.git_reference_delete(handle);
}
}
/// <summary>
/// Rename an existing reference with a new name
/// </summary>
/// <param name = "reference">The reference to rename.</param>
/// <param name = "newName">The new canonical name.</param>
/// <param name = "allowOverwrite">True to allow silent overwriting a potentially existing reference, false otherwise.</param>
/// <returns>A new <see cref = "Reference" />.</returns>
public virtual Reference Move(Reference reference, string newName, bool allowOverwrite = false)
{
Ensure.ArgumentNotNull(reference, "reference");
Ensure.ArgumentNotNullOrEmptyString(newName, "newName");
using (ReferenceSafeHandle handle = RetrieveReferencePtr(reference.CanonicalName))
{
using (ReferenceSafeHandle handle_out = Proxy.git_reference_rename(handle, newName, allowOverwrite))
{
return Reference.BuildFromPtr<Reference>(handle_out, repo);
}
}
}
internal T Resolve<T>(string name) where T : Reference
{
Ensure.ArgumentNotNullOrEmptyString(name, "name");
using (ReferenceSafeHandle referencePtr = RetrieveReferencePtr(name, false))
{
return referencePtr == null ? null : Reference.BuildFromPtr<T>(referencePtr, repo);
}
}
/// <summary>
/// Updates the target of a direct reference.
/// </summary>
/// <param name = "directRef">The direct reference which target should be updated.</param>
/// <param name = "targetId">The new target.</param>
/// <param name="logMessage">The optional message to log in the <see cref="ReflogCollection"/> of the <paramref name="directRef"/> reference</param>
/// <returns>A new <see cref = "Reference" />.</returns>
public virtual Reference UpdateTarget(Reference directRef, ObjectId targetId, string logMessage = null)
{
Ensure.ArgumentNotNull(directRef, "directRef");
Ensure.ArgumentNotNull(targetId, "targetId");
Reference newTarget = UpdateTarget(directRef, targetId,
Proxy.git_reference_set_target);
LogReference(directRef, targetId, logMessage);
return newTarget;
}
/// <summary>
/// Updates the target of a symbolic reference.
/// </summary>
/// <param name = "symbolicRef">The symbolic reference which target should be updated.</param>
/// <param name = "targetRef">The new target.</param>
/// <param name="logMessage">The optional message to log in the <see cref="ReflogCollection"/> of the <paramref name="symbolicRef"/> reference.</param>
/// <returns>A new <see cref = "Reference" />.</returns>
public virtual Reference UpdateTarget(Reference symbolicRef, Reference targetRef, string logMessage = null)
{
Ensure.ArgumentNotNull(symbolicRef, "symbolicRef");
Ensure.ArgumentNotNull(targetRef, "targetRef");
Reference newTarget = UpdateTarget(symbolicRef, targetRef,
(h, r) => Proxy.git_reference_symbolic_set_target(h, r.CanonicalName));
LogReference(symbolicRef, targetRef, logMessage);
return newTarget;
}
private Reference UpdateTarget<T>(Reference reference, T target, Func<ReferenceSafeHandle, T, ReferenceSafeHandle> setter)
{
if (reference.CanonicalName == "HEAD")
{
if (target is ObjectId)
{
return Add("HEAD", target as ObjectId, true);
}
if (target is DirectReference)
{
return Add("HEAD", target as DirectReference, true);
}
if (target is SymbolicReference)
{
return Add("HEAD", target as SymbolicReference, true);
}
throw new ArgumentException(string.Format(CultureInfo.InvariantCulture,
"'{0}' is not a valid target type.", typeof(T)));
}
using (ReferenceSafeHandle referencePtr = RetrieveReferencePtr(reference.CanonicalName))
{
using (ReferenceSafeHandle ref_out = setter(referencePtr, target))
{
return Reference.BuildFromPtr<Reference>(ref_out, repo);
}
}
}
private void LogReference(Reference reference, Reference target, string logMessage)
{
var directReference = target.ResolveToDirectReference();
if (directReference == null)
{
return;
}
LogReference(reference, directReference.Target.Id, logMessage);
}
private void LogReference(Reference reference, ObjectId target, string logMessage)
{
if (string.IsNullOrEmpty(logMessage))
{
return;
}
repo.Refs.Log(reference).Append(target, logMessage);
}
internal ReferenceSafeHandle RetrieveReferencePtr(string referenceName, bool shouldThrowIfNotFound = true)
{
ReferenceSafeHandle reference = Proxy.git_reference_lookup(repo.Handle, referenceName, shouldThrowIfNotFound);
return reference;
}
/// <summary>
/// Returns the list of references of the repository matching the specified <paramref name = "pattern" />.
/// </summary>
/// <param name = "pattern">The glob pattern the reference name should match.</param>
/// <returns>A list of references, ready to be enumerated.</returns>
public virtual IEnumerable<Reference> FromGlob(string pattern)
{
Ensure.ArgumentNotNullOrEmptyString(pattern, "pattern");
return Proxy.git_reference_foreach_glob(repo.Handle, pattern, GitReferenceType.ListAll, Utf8Marshaler.FromNative)
.Select(n => this[n]);
}
/// <summary>
/// Determines if the proposed reference name is well-formed.
/// </summary>
/// <para>
/// - Top-level names must contain only capital letters and underscores,
/// and must begin and end with a letter. (e.g. "HEAD", "ORIG_HEAD").
///
/// - Names prefixed with "refs/" can be almost anything. You must avoid
/// the characters '~', '^', ':', '\\', '?', '[', and '*', and the
/// sequences ".." and "@{" which have special meaning to revparse.
/// </para>
/// <param name="canonicalName">The name to be checked.</param>
/// <returns>true is the name is valid; false otherwise.</returns>
public virtual bool IsValidName(string canonicalName)
{
return Proxy.git_reference_is_valid_name(canonicalName);
}
/// <summary>
/// Shortcut to return the HEAD reference.
/// </summary>
/// <returns>
/// A <see cref="DirectReference"/> if the HEAD is detached;
/// otherwise a <see cref="SymbolicReference"/>.
/// </returns>
public virtual Reference Head
{
get { return this["HEAD"]; }
}
private string DebuggerDisplay
{
get
{
return string.Format(CultureInfo.InvariantCulture,
"Count = {0}", this.Count());
}
}
/// <summary>
/// Returns as a <see cref="ReflogCollection"/> the reflog of the <see cref="Reference"/> named <paramref name="canonicalName"/>
/// </summary>
/// <param name="canonicalName">The canonical name of the reference</param>
/// <returns>a <see cref="ReflogCollection"/>, enumerable of <see cref="ReflogEntry"/></returns>
public virtual ReflogCollection Log(string canonicalName)
{
Ensure.ArgumentNotNullOrEmptyString(canonicalName, "canonicalName");
return new ReflogCollection(repo, canonicalName);
}
/// <summary>
/// Returns as a <see cref="ReflogCollection"/> the reflog of the <see cref="Reference"/> <paramref name="reference"/>
/// </summary>
/// <param name="reference">The reference</param>
/// <returns>a <see cref="ReflogCollection"/>, enumerable of <see cref="ReflogEntry"/></returns>
public virtual ReflogCollection Log(Reference reference)
{
Ensure.ArgumentNotNull(reference, "reference");
return new ReflogCollection(repo, reference.CanonicalName);
}
/// <summary>
/// Sets the provided backend to be the reference database provider.
/// </summary>
/// <param name="backend">The backend to add</param>
public virtual void SetBackend(RefdbBackend backend)
{
Ensure.ArgumentNotNull(backend, "backend");
Proxy.git_refdb_set_backend(refDbHandle, backend.GitRefdbBackendPointer);
}
}
}