blob: 6571f7db7753697266988169d36f29cbfd56683f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2017 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ui.sdk;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob;
/**
* InstallNewSoftwareHandler invokes the install wizard
*
* @since 3.5
*/
public class InstallNewSoftwareHandler extends PreloadingRepositoryHandler {
/**
* The constructor.
*/
public InstallNewSoftwareHandler() {
super();
}
@Override
protected void doExecute(LoadMetadataRepositoryJob job) {
getProvisioningUI().openInstallWizard(null, null, job);
}
@Override
protected boolean waitForPreload() {
// If the user cannot see repositories, then we may as well wait
// for existing repos to load so that content is available.
// If the user can manipulate the repositories, then we don't wait,
// because we don't know which ones they want to work with.
return !getProvisioningUI().getPolicy().getRepositoriesVisible();
}
@Override
protected void setLoadJobProperties(Job loadJob) {
super.setLoadJobProperties(loadJob);
// If we are doing a background load, we do not wish to authenticate, as the
// user is unaware that loading was needed
if (!waitForPreload()) {
loadJob.setProperty(LoadMetadataRepositoryJob.SUPPRESS_AUTHENTICATION_JOB_MARKER, Boolean.toString(true));
loadJob.setProperty(LoadMetadataRepositoryJob.SUPPRESS_REPOSITORY_EVENTS, Boolean.toString(true));
}
}
@Override
protected String getProgressTaskName() {
return ProvSDKMessages.InstallNewSoftwareHandler_ProgressTaskName;
}
}