blob: ea77db2f1de8a7d98a49f2c7dc9924efb6e0ba4e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2012 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. 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:
* Eugen Neufeld - initial API and implementation
*
*******************************************************************************/
package org.eclipse.emf.ecp.emfstore.core.internal;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.emf.ecp.core.ECPProvider;
import org.eclipse.emf.ecp.core.ECPRepository;
import org.eclipse.emf.ecp.core.exceptions.ECPProjectWithNameExistsException;
import org.eclipse.emf.ecp.core.util.ECPCheckoutSource;
import org.eclipse.emf.ecp.core.util.ECPProperties;
import org.eclipse.emf.ecp.spi.core.InternalRepository;
import org.eclipse.emf.emfstore.client.ESRemoteProject;
import org.eclipse.emf.emfstore.server.exceptions.ESException;
/**
* This is the EMFStore implementation of a {@link ECPCheckoutSource}.
*
* @author Eugen Neufeld
*
*/
public class EMFStoreProjectWrapper implements ECPCheckoutSource {
private final InternalRepository repository;
private final ESRemoteProject remoteProject;
/**
* The Constructor fro creating an {@link EMFStoreProjectWrapper}.
*
* @param repository the repository for this CheckoutSource
* @param remoteProject the remote project to be checked out
*/
public EMFStoreProjectWrapper(InternalRepository repository, ESRemoteProject remoteProject) {
this.repository = repository;
this.remoteProject = remoteProject;
}
/** {@inheritDoc} **/
@Override
public ECPRepository getRepository() {
return repository;
}
/** {@inheritDoc} **/
@Override
public ECPProvider getProvider() {
return repository.getProvider();
}
/** {@inheritDoc} **/
@Override
public String getDefaultCheckoutName() {
return remoteProject.getProjectName();
}
/** {@inheritDoc} **/
@Override
public void checkout(String projectName, ECPProperties projectProperties) throws ECPProjectWithNameExistsException {
try {
remoteProject.checkout(projectName, new NullProgressMonitor());
} catch (final ESException ex) {
Activator.log(ex);
}
}
/**
* This return the {@link ESRemoteProject} used in this wrapper.
*
* @return the {@link ESRemoteProject} used
*/
public ESRemoteProject getCheckoutData() {
return remoteProject;
}
}