blob: a36bf8d8e4a96e56728d9a03adc9b9097f14768c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 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.jdt.internal.corext.refactoring.binary;
import java.net.URI;
import java.util.List;
import org.eclipse.core.filesystem.IFileStore;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jdt.core.IClassFile;
import org.eclipse.jdt.core.IModularClassFile;
import org.eclipse.jdt.core.IOrdinaryClassFile;
import org.eclipse.jdt.core.IPackageFragment;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.internal.corext.refactoring.RefactoringCoreMessages;
import org.eclipse.jdt.internal.corext.util.JavaModelUtil;
/**
* Operation, which run, creates source code for a list of binary package
* fragments with attached source.
*
* @since 3.2
*/
public class SourceCreationOperation extends AbstractCodeCreationOperation {
/**
* Creates a new source creation operation.
*
* @param uri
* the URI where to output the source
* @param packages
* the list of packages to create source for
*/
public SourceCreationOperation(final URI uri, final List<IPackageFragment> packages) {
super(uri, packages);
}
/**
* Returns the operation label.
*
* @return the operation label
*/
@Override
protected String getOperationLabel() {
return RefactoringCoreMessages.SourceCreationOperation_creating_source_folder;
}
/**
* Runs the stub generation on the specified class file.
*
* @param file
* the class file
* @param parent
* the parent store
* @param monitor
* the progress monitor to use
* @throws CoreException
* if an error occurs
*/
@Override
protected void run(final IClassFile file, final IFileStore parent, final IProgressMonitor monitor) throws CoreException {
try {
monitor.beginTask(getOperationLabel(), 2);
final String source= file.getSource();
if (file instanceof IModularClassFile) {
createCompilationUnit(parent, JavaModelUtil.MODULE_INFO_JAVA, source != null ? source : "", monitor); //$NON-NLS-1$
} else {
final IType type= ((IOrdinaryClassFile) file).getType();
if (type.isAnonymous() || type.isLocal() || type.isMember())
return;
createCompilationUnit(parent, type.getElementName() + JavaModelUtil.DEFAULT_CU_SUFFIX, source != null ? source : "", monitor); //$NON-NLS-1$
}
} finally {
monitor.done();
}
}
}