Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fe359bd20b3ae4791131e97b9786182a60882343 (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
/*******************************************************************************
 *  Copyright (c) 2010, 2017 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.p2.operations;

import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.runtime.*;
import org.eclipse.equinox.internal.p2.director.ProfileChangeRequest;
import org.eclipse.equinox.p2.engine.ProvisioningContext;
import org.eclipse.equinox.p2.operations.ProvisioningSession;
import org.eclipse.equinox.p2.operations.UpdateOperation;
import org.eclipse.equinox.p2.repository.IRunnableWithProgress;

public class SearchForUpdatesResolutionJob extends PlannerResolutionJob {

	IRunnableWithProgress searchForUpdatesRunnable;
	ProfileChangeRequest[] requestHolder;
	UpdateOperation operation;

	public SearchForUpdatesResolutionJob(String label, ProvisioningSession session, String profileId, ProfileChangeRequest request, ProvisioningContext context, IFailedStatusEvaluator evaluator, MultiStatus additionalStatus, IRunnableWithProgress searchForUpdatesRunnable, ProfileChangeRequest[] requestHolder, UpdateOperation operation) {
		super(label, session, profileId, request, context, evaluator, additionalStatus);
		this.searchForUpdatesRunnable = searchForUpdatesRunnable;
		this.requestHolder = requestHolder;
		this.operation = operation;
	}

	@Override
	public IStatus runModal(IProgressMonitor monitor) {
		SubMonitor sub = SubMonitor.convert(monitor);
		try {
			searchForUpdatesRunnable.run(sub.newChild(500));
			if (requestHolder.length > 0)
				this.request = requestHolder[0];
		} catch (OperationCanceledException e) {
			return Status.CANCEL_STATUS;
		} catch (InvocationTargetException e) {
			// ignore, we don't actually throw this in the supplied runnable
		}
		if (request != null)
			return super.runModal(sub.newChild(500));
		return operation.getResolutionResult();
	}

	// This is made public for the automated tests
	@Override
	public ProfileChangeRequest getProfileChangeRequest() {
		return request;
	}
}

Back to the top