-
Notifications
You must be signed in to change notification settings - Fork 897
/
Copy pathNetwork.cs
469 lines (414 loc) · 19.7 KB
/
Network.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
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;
using LibGit2Sharp.Handlers;
namespace LibGit2Sharp
{
/// <summary>
/// Provides access to network functionality for a repository.
/// </summary>
public class Network
{
private readonly Repository repository;
private readonly Lazy<RemoteCollection> remotes;
/// <summary>
/// Needed for mocking purposes.
/// </summary>
protected Network()
{ }
internal Network(Repository repository)
{
this.repository = repository;
remotes = new Lazy<RemoteCollection>(() => new RemoteCollection(repository));
}
/// <summary>
/// Lookup and manage remotes in the repository.
/// </summary>
public virtual RemoteCollection Remotes
{
get { return remotes.Value; }
}
/// <summary>
/// Lookup the default branch name in a Remote repository
/// </summary>
/// <param name="remote"><The <see cref="Remote"/> to get the default branch from.</param>
/// <returns>The canonical name of the Remote repository's default branch.</returns>
public virtual string DefaultBranchName(Remote remote)
{
Ensure.ArgumentNotNull(remote, "remote");
return DefaultBranchNameInternal(remote.Url, null);
}
/// <summary>
/// Lookup the default branch name in a Remote repository
/// </summary>
/// <param name="remote"><The <see cref="Remote"/> to get the default branch from.</param>
/// <param name="remote"><The <see cref="Func{Credentials}"/> used to connect to the remote repository.</param>
/// <returns>The canonical name of the Remote repository's default branch.</returns>
public virtual string DefaultBranchName(Remote remote, CredentialsHandler credentialsProvider)
{
Ensure.ArgumentNotNull(remote, "remote");
Ensure.ArgumentNotNull(credentialsProvider, "credentialsProvider");
return DefaultBranchNameInternal(remote.Url, credentialsProvider);
}
/// <summary>
/// Lookup the default branch name in a Remote repository
/// </summary>
/// <param name="remote"><The url to get the default branch from.</param>
/// <returns>The canonical name of the Remote repository's default branch.</returns>
public virtual string DefaultBranchName(string url)
{
Ensure.ArgumentNotNull(url, "url");
return DefaultBranchNameInternal(url, null);
}
/// <summary>
/// Lookup the default branch name in a Remote repository
/// </summary>
/// <param name="remote"><The url to get the default branch from.</param>
/// <param name="remote"><The <see cref="Func{Credentials}"/> used to connect to the remote repository.</param>
/// <returns>The canonical name of the Remote repository's default branch.</returns>
public virtual string DefaultBranchName(string url, CredentialsHandler credentialsProvider)
{
Ensure.ArgumentNotNull(url, "url");
Ensure.ArgumentNotNull(credentialsProvider, "credentialsProvider");
return DefaultBranchNameInternal(url, credentialsProvider);
}
private string DefaultBranchNameInternal(string url, CredentialsHandler credentialsProvider)
{
using (RemoteHandle remoteHandle = BuildRemoteHandle(repository.Handle, url))
{
GitRemoteCallbacks gitCallbacks = new GitRemoteCallbacks { version = 1 };
GitProxyOptions proxyOptions = new GitProxyOptions { Version = 1 };
if (credentialsProvider != null)
{
var callbacks = new RemoteCallbacks(credentialsProvider);
gitCallbacks = callbacks.GenerateCallbacks();
}
Proxy.git_remote_connect(remoteHandle, GitDirection.Fetch, ref gitCallbacks, ref proxyOptions);
return Proxy.git_remote_default_branch(remoteHandle);
}
}
/// <summary>
/// List references in a <see cref="Remote"/> repository.
/// <para>
/// When the remote tips are ahead of the local ones, the retrieved
/// <see cref="DirectReference"/>s may point to non existing
/// <see cref="GitObject"/>s in the local repository. In that
/// case, <see cref="DirectReference.Target"/> will return <c>null</c>.
/// </para>
/// </summary>
/// <param name="remote">The <see cref="Remote"/> to list from.</param>
/// <returns>The references in the <see cref="Remote"/> repository.</returns>
public virtual IEnumerable<Reference> ListReferences(Remote remote)
{
Ensure.ArgumentNotNull(remote, "remote");
return ListReferencesInternal(remote.Url, null);
}
/// <summary>
/// List references in a <see cref="Remote"/> repository.
/// <para>
/// When the remote tips are ahead of the local ones, the retrieved
/// <see cref="DirectReference"/>s may point to non existing
/// <see cref="GitObject"/>s in the local repository. In that
/// case, <see cref="DirectReference.Target"/> will return <c>null</c>.
/// </para>
/// </summary>
/// <param name="remote">The <see cref="Remote"/> to list from.</param>
/// <param name="credentialsProvider">The <see cref="Func{Credentials}"/> used to connect to remote repository.</param>
/// <returns>The references in the <see cref="Remote"/> repository.</returns>
public virtual IEnumerable<Reference> ListReferences(Remote remote, CredentialsHandler credentialsProvider)
{
Ensure.ArgumentNotNull(remote, "remote");
Ensure.ArgumentNotNull(credentialsProvider, "credentialsProvider");
return ListReferencesInternal(remote.Url, credentialsProvider);
}
/// <summary>
/// List references in a remote repository.
/// <para>
/// When the remote tips are ahead of the local ones, the retrieved
/// <see cref="DirectReference"/>s may point to non existing
/// <see cref="GitObject"/>s in the local repository. In that
/// case, <see cref="DirectReference.Target"/> will return <c>null</c>.
/// </para>
/// </summary>
/// <param name="url">The url to list from.</param>
/// <returns>The references in the remote repository.</returns>
public virtual IEnumerable<Reference> ListReferences(string url)
{
Ensure.ArgumentNotNull(url, "url");
return ListReferencesInternal(url, null);
}
/// <summary>
/// List references in a remote repository.
/// <para>
/// When the remote tips are ahead of the local ones, the retrieved
/// <see cref="DirectReference"/>s may point to non existing
/// <see cref="GitObject"/>s in the local repository. In that
/// case, <see cref="DirectReference.Target"/> will return <c>null</c>.
/// </para>
/// </summary>
/// <param name="url">The url to list from.</param>
/// <param name="credentialsProvider">The <see cref="Func{Credentials}"/> used to connect to remote repository.</param>
/// <returns>The references in the remote repository.</returns>
public virtual IEnumerable<Reference> ListReferences(string url, CredentialsHandler credentialsProvider)
{
Ensure.ArgumentNotNull(url, "url");
Ensure.ArgumentNotNull(credentialsProvider, "credentialsProvider");
return ListReferencesInternal(url, credentialsProvider);
}
private IEnumerable<Reference> ListReferencesInternal(string url, CredentialsHandler credentialsProvider)
{
using (RemoteHandle remoteHandle = BuildRemoteHandle(repository.Handle, url))
{
GitRemoteCallbacks gitCallbacks = new GitRemoteCallbacks { version = 1 };
GitProxyOptions proxyOptions = new GitProxyOptions { Version = 1 };
if (credentialsProvider != null)
{
var callbacks = new RemoteCallbacks(credentialsProvider);
gitCallbacks = callbacks.GenerateCallbacks();
}
Proxy.git_remote_connect(remoteHandle, GitDirection.Fetch, ref gitCallbacks, ref proxyOptions);
return Proxy.git_remote_ls(repository, remoteHandle);
}
}
static RemoteHandle BuildRemoteHandle(RepositoryHandle repoHandle, string url)
{
Debug.Assert(repoHandle != null && !repoHandle.IsNull);
Debug.Assert(url != null);
RemoteHandle remoteHandle = Proxy.git_remote_create_anonymous(repoHandle, url);
Debug.Assert(remoteHandle != null && !(remoteHandle.IsNull));
return remoteHandle;
}
/// <summary>
/// Fetch from a url with a set of fetch refspecs
/// </summary>
/// <param name="url">The url to fetch from</param>
/// <param name="refspecs">The list of resfpecs to use</param>
public virtual void Fetch(string url, IEnumerable<string> refspecs)
{
Fetch(url, refspecs, null, null);
}
/// <summary>
/// Fetch from a url with a set of fetch refspecs
/// </summary>
/// <param name="url">The url to fetch from</param>
/// <param name="refspecs">The list of resfpecs to use</param>
/// <param name="options"><see cref="FetchOptions"/> controlling fetch behavior</param>
public virtual void Fetch(string url, IEnumerable<string> refspecs, FetchOptions options)
{
Fetch(url, refspecs, options, null);
}
/// <summary>
/// Fetch from a url with a set of fetch refspecs
/// </summary>
/// <param name="url">The url to fetch from</param>
/// <param name="refspecs">The list of resfpecs to use</param>
/// <param name="logMessage">Message to use when updating the reflog.</param>
public virtual void Fetch(string url, IEnumerable<string> refspecs, string logMessage)
{
Fetch(url, refspecs, null, logMessage);
}
/// <summary>
/// Fetch from a url with a set of fetch refspecs
/// </summary>
/// <param name="url">The url to fetch from</param>
/// <param name="refspecs">The list of resfpecs to use</param>
/// <param name="options"><see cref="FetchOptions"/> controlling fetch behavior</param>
/// <param name="logMessage">Message to use when updating the reflog.</param>
public virtual void Fetch(
string url,
IEnumerable<string> refspecs,
FetchOptions options,
string logMessage)
{
Ensure.ArgumentNotNull(url, "url");
Ensure.ArgumentNotNull(refspecs, "refspecs");
Commands.Fetch(repository, url, refspecs, options, logMessage);
}
/// <summary>
/// Push the specified branch to its tracked branch on the remote.
/// </summary>
/// <param name="branch">The branch to push.</param>
/// <exception cref="LibGit2SharpException">Throws if either the Remote or the UpstreamBranchCanonicalName is not set.</exception>
public virtual void Push(
Branch branch)
{
Push(new[] { branch });
}
/// <summary>
/// Push the specified branch to its tracked branch on the remote.
/// </summary>
/// <param name="branch">The branch to push.</param>
/// <param name="pushOptions"><see cref="PushOptions"/> controlling push behavior</param>
/// <exception cref="LibGit2SharpException">Throws if either the Remote or the UpstreamBranchCanonicalName is not set.</exception>
public virtual void Push(
Branch branch,
PushOptions pushOptions)
{
Push(new[] { branch }, pushOptions);
}
/// <summary>
/// Push the specified branches to their tracked branches on the remote.
/// </summary>
/// <param name="branches">The branches to push.</param>
/// <exception cref="LibGit2SharpException">Throws if either the Remote or the UpstreamBranchCanonicalName is not set.</exception>
public virtual void Push(
IEnumerable<Branch> branches)
{
Push(branches, null);
}
/// <summary>
/// Push the specified branches to their tracked branches on the remote.
/// </summary>
/// <param name="branches">The branches to push.</param>
/// <param name="pushOptions"><see cref="PushOptions"/> controlling push behavior</param>
/// <exception cref="LibGit2SharpException">Throws if either the Remote or the UpstreamBranchCanonicalName is not set.</exception>
public virtual void Push(
IEnumerable<Branch> branches,
PushOptions pushOptions)
{
var enumeratedBranches = branches as IList<Branch> ?? branches.ToList();
foreach (var branch in enumeratedBranches)
{
if (string.IsNullOrEmpty(branch.UpstreamBranchCanonicalName))
{
throw new LibGit2SharpException("The branch '{0}' (\"{1}\") that you are trying to push does not track an upstream branch.",
branch.FriendlyName, branch.CanonicalName);
}
}
foreach (var branch in enumeratedBranches)
{
using (var remote = repository.Network.Remotes.RemoteForName(branch.RemoteName))
{
Push(remote, string.Format(
CultureInfo.InvariantCulture,
"{0}:{1}", branch.CanonicalName, branch.UpstreamBranchCanonicalName), pushOptions);
}
}
}
/// <summary>
/// Push the objectish to the destination reference on the <see cref="Remote"/>.
/// </summary>
/// <param name="remote">The <see cref="Remote"/> to push to.</param>
/// <param name="objectish">The source objectish to push.</param>
/// <param name="destinationSpec">The reference to update on the remote.</param>
public virtual void Push(
Remote remote,
string objectish,
string destinationSpec)
{
Ensure.ArgumentNotNull(objectish, "objectish");
Ensure.ArgumentNotNullOrEmptyString(destinationSpec, "destinationSpec");
Push(remote,
string.Format(CultureInfo.InvariantCulture,
"{0}:{1}",
objectish,
destinationSpec));
}
/// <summary>
/// Push the objectish to the destination reference on the <see cref="Remote"/>.
/// </summary>
/// <param name="remote">The <see cref="Remote"/> to push to.</param>
/// <param name="objectish">The source objectish to push.</param>
/// <param name="destinationSpec">The reference to update on the remote.</param>
/// <param name="pushOptions"><see cref="PushOptions"/> controlling push behavior</param>
public virtual void Push(
Remote remote,
string objectish,
string destinationSpec,
PushOptions pushOptions)
{
Ensure.ArgumentNotNull(objectish, "objectish");
Ensure.ArgumentNotNullOrEmptyString(destinationSpec, "destinationSpec");
Push(remote,
string.Format(CultureInfo.InvariantCulture,
"{0}:{1}",
objectish,
destinationSpec),
pushOptions);
}
/// <summary>
/// Push specified reference to the <see cref="Remote"/>.
/// </summary>
/// <param name="remote">The <see cref="Remote"/> to push to.</param>
/// <param name="pushRefSpec">The pushRefSpec to push.</param>
public virtual void Push(Remote remote, string pushRefSpec)
{
Ensure.ArgumentNotNullOrEmptyString(pushRefSpec, "pushRefSpec");
Push(remote, new[] { pushRefSpec });
}
/// <summary>
/// Push specified reference to the <see cref="Remote"/>.
/// </summary>
/// <param name="remote">The <see cref="Remote"/> to push to.</param>
/// <param name="pushRefSpec">The pushRefSpec to push.</param>
/// <param name="pushOptions"><see cref="PushOptions"/> controlling push behavior</param>
public virtual void Push(
Remote remote,
string pushRefSpec,
PushOptions pushOptions)
{
Ensure.ArgumentNotNullOrEmptyString(pushRefSpec, "pushRefSpec");
Push(remote, new[] { pushRefSpec }, pushOptions);
}
/// <summary>
/// Push specified references to the <see cref="Remote"/>.
/// </summary>
/// <param name="remote">The <see cref="Remote"/> to push to.</param>
/// <param name="pushRefSpecs">The pushRefSpecs to push.</param>
public virtual void Push(Remote remote, IEnumerable<string> pushRefSpecs)
{
Push(remote, pushRefSpecs, null);
}
/// <summary>
/// Push specified references to the <see cref="Remote"/>.
/// </summary>
/// <param name="remote">The <see cref="Remote"/> to push to.</param>
/// <param name="pushRefSpecs">The pushRefSpecs to push.</param>
/// <param name="pushOptions"><see cref="PushOptions"/> controlling push behavior</param>
public virtual void Push(Remote remote, IEnumerable<string> pushRefSpecs, PushOptions pushOptions)
{
Ensure.ArgumentNotNull(remote, "remote");
Ensure.ArgumentNotNull(pushRefSpecs, "pushRefSpecs");
// Return early if there is nothing to push.
if (!pushRefSpecs.Any())
{
return;
}
if (pushOptions == null)
{
pushOptions = new PushOptions();
}
// Load the remote.
using (RemoteHandle remoteHandle = Proxy.git_remote_lookup(repository.Handle, remote.Name, true))
{
var callbacks = new RemoteCallbacks(pushOptions);
GitRemoteCallbacks gitCallbacks = callbacks.GenerateCallbacks();
Proxy.git_remote_push(remoteHandle,
pushRefSpecs,
new GitPushOptions()
{
PackbuilderDegreeOfParallelism = pushOptions.PackbuilderDegreeOfParallelism,
RemoteCallbacks = gitCallbacks,
ProxyOptions = new GitProxyOptions { Version = 1 },
});
}
}
/// <summary>
/// The heads that have been updated during the last fetch.
/// </summary>
internal virtual IEnumerable<FetchHead> FetchHeads
{
get
{
int i = 0;
Func<string, string, GitOid, bool, FetchHead> resultSelector =
(name, url, oid, isMerge) => new FetchHead(repository, name, url, oid, isMerge, i++);
return Proxy.git_repository_fetchhead_foreach(repository.Handle, resultSelector);
}
}
}
}