Skip to main content
summaryrefslogtreecommitdiffstats
blob: 37c3112611b6fdf748bf8132ca71f61161bcc60b (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2009 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.internal.provisional.p2.ui.operations;

import java.net.URI;
import org.eclipse.core.runtime.*;
import org.eclipse.equinox.internal.provisional.p2.core.ProvisionException;
import org.eclipse.equinox.internal.provisional.p2.ui.ProvUI;

/**
 * Abstract class representing an operation that adds repositories,
 * using an optional nickname.
 * 
 * @since 3.5
 */
public abstract class AddRepositoryOperation extends RepositoryOperation {

	protected String[] nicknames;

	public AddRepositoryOperation(String label, URI[] locations) {
		super(label, locations);
	}

	public void setNicknames(String[] nicknames) {
		Assert.isLegal(nicknames != null && nicknames.length == locations.length);
		this.nicknames = nicknames;
	}

	public boolean runInBackground() {
		return true;
	}

	protected IStatus doExecute(IProgressMonitor monitor) throws ProvisionException {
		boolean batched = false;
		if (locations != null && locations.length > 1) {
			ProvUI.startBatchOperation();
			batched = true;
		}
		IStatus status = doBatchedExecute(monitor);
		if (nicknames != null) {
			for (int i = 0; i < nicknames.length; i++) {
				setNickname(locations[i], nicknames[i]);
			}
		}
		if (batched && notify)
			ProvUI.endBatchOperation();
		return status;
	}

	protected abstract void setNickname(URI location, String nickname) throws ProvisionException;

	protected abstract IStatus doBatchedExecute(IProgressMonitor monitor) throws ProvisionException;

	public void setNotify(boolean notify) {
		this.notify = notify;
	}

}

Back to the top