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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
|
/*
* Copyright (C) 2010, 2022 Chris Aniszczyk <caniszczyk@gmail.com> and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.api;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
import java.net.URISyntaxException;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.eclipse.jgit.api.errors.DetachedHeadException;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.api.errors.InvalidRefNameException;
import org.eclipse.jgit.api.errors.InvalidRemoteException;
import org.eclipse.jgit.api.errors.JGitInternalException;
import org.eclipse.jgit.errors.NotSupportedException;
import org.eclipse.jgit.errors.TooLargeObjectInPackException;
import org.eclipse.jgit.errors.TooLargePackException;
import org.eclipse.jgit.errors.TransportException;
import org.eclipse.jgit.internal.JGitText;
import org.eclipse.jgit.lib.BranchConfig;
import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.lib.ConfigConstants;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.NullProgressMonitor;
import org.eclipse.jgit.lib.ProgressMonitor;
import org.eclipse.jgit.lib.Ref;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.transport.PushConfig;
import org.eclipse.jgit.transport.PushConfig.PushDefault;
import org.eclipse.jgit.transport.PushResult;
import org.eclipse.jgit.transport.RefLeaseSpec;
import org.eclipse.jgit.transport.RefSpec;
import org.eclipse.jgit.transport.RemoteConfig;
import org.eclipse.jgit.transport.RemoteRefUpdate;
import org.eclipse.jgit.transport.Transport;
/**
* A class used to execute a {@code Push} command. It has setters for all
* supported options and arguments of this command and a {@link #call()} method
* to finally execute the command.
*
* @see <a href="http://www.kernel.org/pub/software/scm/git/docs/git-push.html"
* >Git documentation about Push</a>
*/
public class PushCommand extends
TransportCommand<PushCommand, Iterable<PushResult>> {
private String remote;
private final List<RefSpec> refSpecs;
private final Map<String, RefLeaseSpec> refLeaseSpecs;
private ProgressMonitor monitor = NullProgressMonitor.INSTANCE;
private String receivePack = RemoteConfig.DEFAULT_RECEIVE_PACK;
private boolean dryRun;
private boolean atomic;
private boolean force;
private boolean thin = Transport.DEFAULT_PUSH_THIN;
private boolean useBitmaps = Transport.DEFAULT_PUSH_USE_BITMAPS;
private PrintStream hookOutRedirect;
private PrintStream hookErrRedirect;
private OutputStream out;
private List<String> pushOptions;
// Legacy behavior as default. Use setPushDefault(null) to determine the
// value from the git config.
private PushDefault pushDefault = PushDefault.CURRENT;
/**
* <p>
* Constructor for PushCommand.
* </p>
*
* @param repo
* the {@link org.eclipse.jgit.lib.Repository}
*/
protected PushCommand(Repository repo) {
super(repo);
refSpecs = new ArrayList<>(3);
refLeaseSpecs = new HashMap<>();
}
/**
* {@inheritDoc}
* <p>
* Execute the {@code push} command with all the options and parameters
* collected by the setter methods of this class. Each instance of this
* class should only be used for one invocation of the command (means: one
* call to {@link #call()})
*/
@Override
public Iterable<PushResult> call() throws GitAPIException,
InvalidRemoteException,
org.eclipse.jgit.api.errors.TransportException {
checkCallable();
setCallable(false);
ArrayList<PushResult> pushResults = new ArrayList<>(3);
try {
Config config = repo.getConfig();
remote = determineRemote(config, remote);
if (refSpecs.isEmpty()) {
RemoteConfig rc = new RemoteConfig(config,
getRemote());
refSpecs.addAll(rc.getPushRefSpecs());
if (refSpecs.isEmpty()) {
determineDefaultRefSpecs(config);
}
}
if (force) {
for (int i = 0; i < refSpecs.size(); i++)
refSpecs.set(i, refSpecs.get(i).setForceUpdate(true));
}
List<Transport> transports = Transport.openAll(repo, remote,
Transport.Operation.PUSH);
for (@SuppressWarnings("resource") // Explicitly closed in finally
final Transport transport : transports) {
transport.setPushThin(thin);
transport.setPushAtomic(atomic);
if (receivePack != null)
transport.setOptionReceivePack(receivePack);
transport.setDryRun(dryRun);
transport.setPushOptions(pushOptions);
transport.setPushUseBitmaps(useBitmaps);
transport.setHookOutputStream(hookOutRedirect);
transport.setHookErrorStream(hookErrRedirect);
configure(transport);
final Collection<RemoteRefUpdate> toPush = transport
.findRemoteRefUpdatesFor(refSpecs, refLeaseSpecs);
try {
PushResult result = transport.push(monitor, toPush, out);
pushResults.add(result);
} catch (TooLargePackException e) {
throw new org.eclipse.jgit.api.errors.TooLargePackException(
e.getMessage(), e);
} catch (TooLargeObjectInPackException e) {
throw new org.eclipse.jgit.api.errors.TooLargeObjectInPackException(
e.getMessage(), e);
} catch (TransportException e) {
throw new org.eclipse.jgit.api.errors.TransportException(
e.getMessage(), e);
} finally {
transport.close();
}
}
} catch (URISyntaxException e) {
throw new InvalidRemoteException(
MessageFormat.format(JGitText.get().invalidRemote, remote),
e);
} catch (TransportException e) {
throw new org.eclipse.jgit.api.errors.TransportException(
e.getMessage(), e);
} catch (NotSupportedException e) {
throw new JGitInternalException(
JGitText.get().exceptionCaughtDuringExecutionOfPushCommand,
e);
} catch (IOException e) {
throw new JGitInternalException(
JGitText.get().exceptionCaughtDuringExecutionOfPushCommand,
e);
}
return pushResults;
}
private String determineRemote(Config config, String remoteName)
throws IOException {
if (remoteName != null) {
return remoteName;
}
Ref head = repo.exactRef(Constants.HEAD);
String effectiveRemote = null;
BranchConfig branchCfg = null;
if (head != null && head.isSymbolic()) {
String currentBranch = head.getLeaf().getName();
branchCfg = new BranchConfig(config,
Repository.shortenRefName(currentBranch));
effectiveRemote = branchCfg.getPushRemote();
}
if (effectiveRemote == null) {
effectiveRemote = config.getString(
ConfigConstants.CONFIG_REMOTE_SECTION, null,
ConfigConstants.CONFIG_KEY_PUSH_DEFAULT);
if (effectiveRemote == null && branchCfg != null) {
effectiveRemote = branchCfg.getRemote();
}
}
if (effectiveRemote == null) {
effectiveRemote = Constants.DEFAULT_REMOTE_NAME;
}
return effectiveRemote;
}
private String getCurrentBranch()
throws IOException, DetachedHeadException {
Ref head = repo.exactRef(Constants.HEAD);
if (head != null && head.isSymbolic()) {
return head.getLeaf().getName();
}
throw new DetachedHeadException();
}
private void determineDefaultRefSpecs(Config config)
throws IOException, GitAPIException {
if (pushDefault == null) {
pushDefault = config.get(PushConfig::new).getPushDefault();
}
switch (pushDefault) {
case CURRENT:
refSpecs.add(new RefSpec(getCurrentBranch()));
break;
case MATCHING:
refSpecs.add(new RefSpec(":")); //$NON-NLS-1$
break;
case NOTHING:
throw new InvalidRefNameException(
JGitText.get().pushDefaultNothing);
case SIMPLE:
case UPSTREAM:
String currentBranch = getCurrentBranch();
BranchConfig branchCfg = new BranchConfig(config,
Repository.shortenRefName(currentBranch));
String fetchRemote = branchCfg.getRemote();
if (fetchRemote == null) {
fetchRemote = Constants.DEFAULT_REMOTE_NAME;
}
boolean isTriangular = !fetchRemote.equals(remote);
if (isTriangular) {
if (PushDefault.UPSTREAM.equals(pushDefault)) {
throw new InvalidRefNameException(MessageFormat.format(
JGitText.get().pushDefaultTriangularUpstream,
remote, fetchRemote));
}
// Strange, but consistent with C git: "simple" doesn't even
// check whether there is a configured upstream, and if so, that
// it is equal to the local branch name. It just becomes
// "current".
refSpecs.add(new RefSpec(currentBranch));
} else {
String trackedBranch = branchCfg.getMerge();
if (branchCfg.isRemoteLocal() || trackedBranch == null
|| !trackedBranch.startsWith(Constants.R_HEADS)) {
throw new InvalidRefNameException(MessageFormat.format(
JGitText.get().pushDefaultNoUpstream,
currentBranch));
}
if (PushDefault.SIMPLE.equals(pushDefault)
&& !trackedBranch.equals(currentBranch)) {
throw new InvalidRefNameException(MessageFormat.format(
JGitText.get().pushDefaultSimple, currentBranch,
trackedBranch));
}
refSpecs.add(new RefSpec(currentBranch + ':' + trackedBranch));
}
break;
default:
throw new InvalidRefNameException(MessageFormat
.format(JGitText.get().pushDefaultUnknown, pushDefault));
}
}
/**
* The remote (uri or name) used for the push operation. If no remote is
* set, the default value of <code>Constants.DEFAULT_REMOTE_NAME</code> will
* be used.
*
* @see Constants#DEFAULT_REMOTE_NAME
* @param remote
* the remote name
* @return {@code this}
*/
public PushCommand setRemote(String remote) {
checkCallable();
this.remote = remote;
return this;
}
/**
* Get remote name
*
* @return the remote used for the remote operation
*/
public String getRemote() {
return remote;
}
/**
* Sets a {@link PrintStream} a "pre-push" hook may write its stdout to. If
* not set, {@link System#out} will be used.
* <p>
* When pushing to several remote repositories the stream is shared for all
* pushes.
* </p>
*
* @param redirect
* {@link PrintStream} to use; if {@code null},
* {@link System#out} will be used
* @return {@code this}
* @since 6.4
*/
public PushCommand setHookOutputStream(PrintStream redirect) {
checkCallable();
hookOutRedirect = redirect;
return this;
}
/**
* Sets a {@link PrintStream} a "pre-push" hook may write its stderr to. If
* not set, {@link System#err} will be used.
* <p>
* When pushing to several remote repositories the stream is shared for all
* pushes.
* </p>
*
* @param redirect
* {@link PrintStream} to use; if {@code null},
* {@link System#err} will be used
* @return {@code this}
* @since 6.4
*/
public PushCommand setHookErrorStream(PrintStream redirect) {
checkCallable();
hookErrRedirect = redirect;
return this;
}
/**
* The remote executable providing receive-pack service for pack transports.
* If no receive-pack is set, the default value of
* <code>RemoteConfig.DEFAULT_RECEIVE_PACK</code> will be used.
*
* @see RemoteConfig#DEFAULT_RECEIVE_PACK
* @param receivePack
* name of the remote executable providing the receive-pack
* service
* @return {@code this}
*/
public PushCommand setReceivePack(String receivePack) {
checkCallable();
this.receivePack = receivePack;
return this;
}
/**
* Get the name of the remote executable providing the receive-pack service
*
* @return the receive-pack used for the remote operation
*/
public String getReceivePack() {
return receivePack;
}
/**
* Get timeout used for push operation
*
* @return the timeout used for the push operation
*/
public int getTimeout() {
return timeout;
}
/**
* Get the progress monitor
*
* @return the progress monitor for the push operation
*/
public ProgressMonitor getProgressMonitor() {
return monitor;
}
/**
* The progress monitor associated with the push operation. By default, this
* is set to <code>NullProgressMonitor</code>
*
* @see NullProgressMonitor
* @param monitor
* a {@link org.eclipse.jgit.lib.ProgressMonitor}
* @return {@code this}
*/
public PushCommand setProgressMonitor(ProgressMonitor monitor) {
checkCallable();
if (monitor == null) {
monitor = NullProgressMonitor.INSTANCE;
}
this.monitor = monitor;
return this;
}
/**
* Get the <code>RefLeaseSpec</code>s.
*
* @return the <code>RefLeaseSpec</code>s
* @since 4.7
*/
public List<RefLeaseSpec> getRefLeaseSpecs() {
return new ArrayList<>(refLeaseSpecs.values());
}
/**
* The ref lease specs to be used in the push operation, for a
* force-with-lease push operation.
*
* @param specs
* a {@link org.eclipse.jgit.transport.RefLeaseSpec} object.
* @return {@code this}
* @since 4.7
*/
public PushCommand setRefLeaseSpecs(RefLeaseSpec... specs) {
return setRefLeaseSpecs(Arrays.asList(specs));
}
/**
* The ref lease specs to be used in the push operation, for a
* force-with-lease push operation.
*
* @param specs
* list of {@code RefLeaseSpec}s
* @return {@code this}
* @since 4.7
*/
public PushCommand setRefLeaseSpecs(List<RefLeaseSpec> specs) {
checkCallable();
this.refLeaseSpecs.clear();
for (RefLeaseSpec spec : specs) {
refLeaseSpecs.put(spec.getRef(), spec);
}
return this;
}
/**
* Get {@code RefSpec}s.
*
* @return the ref specs
*/
public List<RefSpec> getRefSpecs() {
return refSpecs;
}
/**
* The ref specs to be used in the push operation
*
* @param specs a {@link org.eclipse.jgit.transport.RefSpec} object.
* @return {@code this}
*/
public PushCommand setRefSpecs(RefSpec... specs) {
checkCallable();
this.refSpecs.clear();
Collections.addAll(refSpecs, specs);
return this;
}
/**
* The ref specs to be used in the push operation
*
* @param specs
* list of {@link org.eclipse.jgit.transport.RefSpec}s
* @return {@code this}
*/
public PushCommand setRefSpecs(List<RefSpec> specs) {
checkCallable();
this.refSpecs.clear();
this.refSpecs.addAll(specs);
return this;
}
/**
* Retrieves the {@link PushDefault} currently set.
*
* @return the {@link PushDefault}, or {@code null} if not set
* @since 6.1
*/
public PushDefault getPushDefault() {
return pushDefault;
}
/**
* Sets an explicit {@link PushDefault}. The default used if this is not
* called is {@link PushDefault#CURRENT} for compatibility reasons with
* earlier JGit versions.
*
* @param pushDefault
* {@link PushDefault} to set; if {@code null} the value defined
* in the git config will be used.
*
* @return {@code this}
* @since 6.1
*/
public PushCommand setPushDefault(PushDefault pushDefault) {
checkCallable();
this.pushDefault = pushDefault;
return this;
}
/**
* Push all branches under refs/heads/*.
*
* @return {@code this}
*/
public PushCommand setPushAll() {
refSpecs.add(Transport.REFSPEC_PUSH_ALL);
return this;
}
/**
* Push all tags under refs/tags/*.
*
* @return {@code this}
*/
public PushCommand setPushTags() {
refSpecs.add(Transport.REFSPEC_TAGS);
return this;
}
/**
* Add a reference to push.
*
* @param ref
* the source reference. The remote name will match.
* @return {@code this}.
*/
public PushCommand add(Ref ref) {
refSpecs.add(new RefSpec(ref.getLeaf().getName()));
return this;
}
/**
* Add a reference to push.
*
* @param nameOrSpec
* any reference name, or a reference specification.
* @return {@code this}.
* @throws JGitInternalException
* the reference name cannot be resolved.
*/
public PushCommand add(String nameOrSpec) {
if (0 <= nameOrSpec.indexOf(':')) {
refSpecs.add(new RefSpec(nameOrSpec));
} else {
Ref src;
try {
src = repo.findRef(nameOrSpec);
} catch (IOException e) {
throw new JGitInternalException(
JGitText.get().exceptionCaughtDuringExecutionOfPushCommand,
e);
}
if (src != null)
add(src);
}
return this;
}
/**
* Whether to run the push operation as a dry run
*
* @return the dry run preference for the push operation
*/
public boolean isDryRun() {
return dryRun;
}
/**
* Sets whether the push operation should be a dry run
*
* @param dryRun a boolean.
* @return {@code this}
*/
public PushCommand setDryRun(boolean dryRun) {
checkCallable();
this.dryRun = dryRun;
return this;
}
/**
* Get the thin-pack preference
*
* @return the thin-pack preference for push operation
*/
public boolean isThin() {
return thin;
}
/**
* Set the thin-pack preference for push operation.
*
* Default setting is Transport.DEFAULT_PUSH_THIN
*
* @param thin
* the thin-pack preference value
* @return {@code this}
*/
public PushCommand setThin(boolean thin) {
checkCallable();
this.thin = thin;
return this;
}
/**
* Whether to use bitmaps for push.
*
* @return true if push use bitmaps.
* @since 6.4
*/
public boolean isUseBitmaps() {
return useBitmaps;
}
/**
* Set whether to use bitmaps for push.
*
* Default setting is {@value Transport#DEFAULT_PUSH_USE_BITMAPS}
*
* @param useBitmaps
* false to disable use of bitmaps for push, true otherwise.
* @return {@code this}
* @since 6.4
*/
public PushCommand setUseBitmaps(boolean useBitmaps) {
checkCallable();
this.useBitmaps = useBitmaps;
return this;
}
/**
* Whether this push should be executed atomically (all references updated,
* or none)
*
* @return true if all-or-nothing behavior is requested.
* @since 4.2
*/
public boolean isAtomic() {
return atomic;
}
/**
* Requests atomic push (all references updated, or no updates).
*
* Default setting is false.
*
* @param atomic
* whether to run the push atomically
* @return {@code this}
* @since 4.2
*/
public PushCommand setAtomic(boolean atomic) {
checkCallable();
this.atomic = atomic;
return this;
}
/**
* Whether to push forcefully
*
* @return the force preference for push operation
*/
public boolean isForce() {
return force;
}
/**
* Sets the force preference for push operation.
*
* @param force
* whether to push forcefully
* @return {@code this}
*/
public PushCommand setForce(boolean force) {
checkCallable();
this.force = force;
return this;
}
/**
* Sets the output stream to write sideband messages to
*
* @param out
* an {@link java.io.OutputStream}
* @return {@code this}
* @since 3.0
*/
public PushCommand setOutputStream(OutputStream out) {
this.out = out;
return this;
}
/**
* Get push options
*
* @return the option strings associated with the push operation
* @since 4.5
*/
public List<String> getPushOptions() {
return pushOptions;
}
/**
* Set the option strings associated with the push operation.
*
* @param pushOptions
* a {@link java.util.List} of push option strings
* @return {@code this}
* @since 4.5
*/
public PushCommand setPushOptions(List<String> pushOptions) {
this.pushOptions = pushOptions;
return this;
}
}
|