blob: 14b391a8de58478c31aa9f533372deebe9a9eeba [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 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.touchpoint.eclipse.actions;
import java.util.Map;
import org.eclipse.core.runtime.*;
import org.eclipse.equinox.internal.provisional.p2.repository.RepositoryEvent;
import org.eclipse.equinox.p2.core.IAgentLocation;
import org.eclipse.equinox.p2.core.IProvisioningAgent;
import org.eclipse.equinox.p2.engine.IProfile;
import org.eclipse.equinox.p2.engine.IProfileRegistry;
/**
* An action that adds a repository to the list of known repositories.
*/
public class AddRepositoryAction extends RepositoryAction {
public static final String ID = "addRepository"; //$NON-NLS-1$
@Override
public IStatus execute(Map<String, Object> parameters) {
try {
IProvisioningAgent agent = getAgent(parameters);
IProfileRegistry registry = agent.getService(IProfileRegistry.class);
IAgentLocation agentLocation = agent.getService(IAgentLocation.class);
final RepositoryEvent event = createEvent(parameters);
IProfile profile = (IProfile) parameters.get(ActionConstants.PARM_PROFILE);
if (profile != null)
addRepositoryToProfile(agentLocation, profile, event.getRepositoryLocation(),
event.getRepositoryNickname(), event.getRepositoryType(), event.isRepositoryEnabled());
// if provisioning into the current profile, broadcast an event to add this
// repository directly to the current repository managers.
if (isSelfProfile(registry, profile))
addToSelf(agent, agentLocation, event);
return Status.OK_STATUS;
} catch (CoreException e) {
return e.getStatus();
}
}
@Override
protected String getId() {
return ID;
}
@Override
public IStatus undo(Map<String, Object> parameters) {
try {
IProvisioningAgent agent = getAgent(parameters);
IProfileRegistry registry = agent.getService(IProfileRegistry.class);
IAgentLocation agentLocation = agent.getService(IAgentLocation.class);
final RepositoryEvent event = createEvent(parameters);
IProfile profile = (IProfile) parameters.get(ActionConstants.PARM_PROFILE);
if (profile != null)
removeRepositoryFromProfile(agentLocation, profile, event.getRepositoryLocation(),
event.getRepositoryType());
// if provisioning into the current profile, broadcast an event to add this
// repository directly to the current repository managers.
if (isSelfProfile(registry, profile))
removeFromSelf(agent, agentLocation, event);
return Status.OK_STATUS;
} catch (CoreException e) {
return e.getStatus();
}
}
}