/******************************************************************************* * Copyright (c) 2012, 2013 VMware, Inc. * 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: * VMware, Inc. - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.wizard.template.infrastructure.processor; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import org.eclipse.core.resources.IProject; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.swt.widgets.Shell; /** * @author Terry Denney * @author Leo Dos Santos * @author Christian Dupuis */ public class DirectoryProcessor { private final ProcessingInfo processingInfo; private final TemplateProcessor templateProcessor; private final TemplateProcessor fileNameProcessor; private final IProject project; // private final IProjectDescription projectDescription; private final URI projectPath; public DirectoryProcessor(ProcessingInfo processingInfo, IProject project, URI projectPath) { this.project = project; this.projectPath = projectPath; // this.projectDescription = projectDescription; templateProcessor = new TemplateProcessor(processingInfo.getTemplateReplacementContext(), processingInfo.getSpringVersion()); fileNameProcessor = new TemplateProcessor(processingInfo.getResourceReplacementContext()); this.processingInfo = processingInfo; } public IProject process(URL zipPath, Shell shell, IProgressMonitor monitor) throws IOException, URISyntaxException, CoreException { TemplateProjectCreator projectCreator = new TemplateProjectCreator(project, projectPath, zipPath, shell, templateProcessor, fileNameProcessor, processingInfo); return projectCreator.createProject(monitor); } }