blob: 3677512266eb4bf313583a8115ecdcec1c3df1f9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 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.wst.common.componentcore.internal.operation;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Path;
import org.eclipse.jem.util.emf.workbench.ProjectUtilities;
import org.eclipse.jem.util.logger.proxy.Logger;
import org.eclipse.wst.common.componentcore.datamodel.properties.IFacetDataModelProperties;
import org.eclipse.wst.common.componentcore.datamodel.properties.IFacetProjectCreationDataModelProperties;
import org.eclipse.wst.common.frameworks.datamodel.AbstractDataModelOperation;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
import org.eclipse.wst.common.frameworks.internal.operations.IProjectCreationPropertiesNew;
import org.eclipse.wst.common.project.facet.core.IFacetedProject;
import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
import org.eclipse.wst.common.project.facet.core.ProjectFacetsManager;
import org.eclipse.wst.common.project.facet.core.runtime.IRuntime;
public class FacetProjectCreationOperation extends AbstractDataModelOperation {
public FacetProjectCreationOperation() {
super();
}
public FacetProjectCreationOperation(IDataModel model) {
super(model);
}
public IStatus execute(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
try {
IProject project = ProjectUtilities.getProject((String) model.getProperty(IFacetProjectCreationDataModelProperties.FACET_PROJECT_NAME));
IFacetedProject facetProj = null;
if (project.exists()) {
facetProj = ProjectFacetsManager.create(project, true, monitor);
} else {
String location = (String) model.getProperty(IProjectCreationPropertiesNew.PROJECT_LOCATION);
IPath locationPath = null == location ? null : new Path(location);
facetProj = ProjectFacetsManager.create(model.getStringProperty(IFacetProjectCreationDataModelProperties.FACET_PROJECT_NAME), locationPath, monitor);
}
Map dmMap = (Map) model.getProperty(IFacetProjectCreationDataModelProperties.FACET_DM_MAP);
Set actions = new HashSet();
IDataModel facetDM = null;
for (Iterator iterator = dmMap.values().iterator(); iterator.hasNext();) {
facetDM = (IDataModel) iterator.next();
if(facetDM.getBooleanProperty(IFacetDataModelProperties.SHOULD_EXECUTE)){
actions.add(facetDM.getProperty(IFacetDataModelProperties.FACET_ACTION));
}
}
facetProj.modify(actions, monitor);
Set fixedFacets = new HashSet(), newFacetVersions = facetProj.getProjectFacets();
for (Iterator iter = newFacetVersions.iterator(); iter.hasNext();) {
IProjectFacetVersion facetVersion = (IProjectFacetVersion) iter.next();
fixedFacets.add(facetVersion.getProjectFacet());
}
facetProj.setFixedProjectFacets(fixedFacets);
IRuntime runtime = (IRuntime) model.getProperty(IFacetProjectCreationDataModelProperties.FACET_RUNTIME);
if (runtime != null)
facetProj.setRuntime(runtime, null);
} catch (CoreException e) {
Logger.getLogger().logError(e);
throw new ExecutionException(e.getMessage(), e);
} catch (Exception e) {
Logger.getLogger().logError(e);
}
return OK_STATUS;
}
}