blob: ac9e44b161d49c36193b9b0294e6d3c80a3f11b5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.ui.text.java;
import java.util.LinkedList;
import java.util.Map;
import org.eclipse.text.edits.MalformedTreeException;
import org.eclipse.text.edits.TextEdit;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IDocumentPartitioner;
import org.eclipse.jface.text.TextUtilities;
import org.eclipse.jface.text.TypedPosition;
import org.eclipse.jface.text.formatter.ContextBasedFormattingStrategy;
import org.eclipse.jface.text.formatter.FormattingContextProperties;
import org.eclipse.jface.text.formatter.IFormattingContext;
import org.eclipse.jdt.core.formatter.CodeFormatter;
import org.eclipse.jdt.internal.corext.util.CodeFormatterUtil;
import org.eclipse.jdt.internal.corext.util.JavaModelUtil;
import org.eclipse.jdt.internal.ui.JavaPlugin;
/**
* Formatting strategy for java source code.
*
* @since 3.0
*/
public class JavaFormattingStrategy extends ContextBasedFormattingStrategy {
/** Documents to be formatted by this strategy */
private final LinkedList<IDocument> fDocuments= new LinkedList<>();
/** Partitions to be formatted by this strategy */
private final LinkedList<TypedPosition> fPartitions= new LinkedList<>();
/** Paths of compilation units to be formatted (not obligatory, used to recognize module-infos) */
private final LinkedList<String> fPaths= new LinkedList<>();
/**
* Creates a new java formatting strategy.
*/
public JavaFormattingStrategy() {
super();
}
/*
* @see org.eclipse.jface.text.formatter.ContextBasedFormattingStrategy#format()
*/
@Override
public void format() {
super.format();
final IDocument document= fDocuments.removeFirst();
final TypedPosition partition= fPartitions.removeFirst();
final String path= fPaths.removeFirst();
if (document != null && partition != null) {
Map<String, IDocumentPartitioner> partitioners= null;
try {
final boolean isModuleInfo= path != null && path.endsWith(JavaModelUtil.MODULE_INFO_JAVA);
final int kind= (isModuleInfo ? CodeFormatter.K_MODULE_INFO : CodeFormatter.K_COMPILATION_UNIT) | CodeFormatter.F_INCLUDE_COMMENTS;
final TextEdit edit= CodeFormatterUtil.reformat(kind, document.get(), partition.getOffset(), partition.getLength(), 0, TextUtilities.getDefaultLineDelimiter(document), getPreferences());
if (edit != null) {
if (edit.getChildrenSize() > 20)
partitioners= TextUtilities.removeDocumentPartitioners(document);
edit.apply(document);
}
} catch (MalformedTreeException | BadLocationException exception) {
// Can only happen on concurrent document modification - log and bail out
JavaPlugin.log(exception);
} finally {
if (partitioners != null)
TextUtilities.addDocumentPartitioners(document, partitioners);
}
}
}
/*
* @see org.eclipse.jface.text.formatter.ContextBasedFormattingStrategy#formatterStarts(org.eclipse.jface.text.formatter.IFormattingContext)
*/
@Override
public void formatterStarts(final IFormattingContext context) {
super.formatterStarts(context);
fPartitions.addLast((TypedPosition) context.getProperty(FormattingContextProperties.CONTEXT_PARTITION));
fDocuments.addLast((IDocument) context.getProperty(FormattingContextProperties.CONTEXT_MEDIUM));
fPaths.addLast((String) context.getProperty(JavaFormattingContext.KEY_SOURCE_PATH));
}
/*
* @see org.eclipse.jface.text.formatter.ContextBasedFormattingStrategy#formatterStops()
*/
@Override
public void formatterStops() {
super.formatterStops();
fPartitions.clear();
fDocuments.clear();
}
}