aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Gc.java
blob: 35ac7a162a01838934c923e3e7bc7fbc5ff7bb57 (plain)
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
/*
 * Copyright (C) 2012, Christian Halstrick <christian.halstrick@sap.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.pgm;

import org.eclipse.jgit.api.GarbageCollectCommand;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.lib.TextProgressMonitor;
import org.kohsuke.args4j.Option;

@Command(common = true, usage = "usage_Gc")
class Gc extends TextBuiltin {
	@Option(name = "--aggressive", usage = "usage_Aggressive")
	private boolean aggressive;

	@Option(name = "--preserve-oldpacks", usage = "usage_PreserveOldPacks")
	private Boolean preserveOldPacks;

	@Option(name = "--prune-preserved", usage = "usage_PrunePreserved")
	private Boolean prunePreserved;

	@Option(name = "--pack-kept-objects", usage = "usage_PackKeptObjects")
	private Boolean packKeptObjects;

	/** {@inheritDoc} */
	@Override
	protected void run() {
		Git git = Git.wrap(db);
		try {
			GarbageCollectCommand command = git.gc().setAggressive(aggressive)
					.setProgressMonitor(new TextProgressMonitor(errw));
			if (preserveOldPacks != null) {
				command.setPreserveOldPacks(preserveOldPacks.booleanValue());
			}
			if (prunePreserved != null) {
				command.setPrunePreserved(prunePreserved.booleanValue());
			}
			if (packKeptObjects != null) {
				command.setPackKeptObjects(packKeptObjects.booleanValue());
			}
			command.call();
		} catch (GitAPIException e) {
			throw die(e.getMessage(), e);
		}
	}
}