blob: 164377bd864d91f006004cc5f8bebaa8cec88d1b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2015 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.ui.texteditor.spelling;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import org.eclipse.jface.text.Position;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.eclipse.jface.text.quickassist.IQuickAssistInvocationContext;
import org.eclipse.jface.text.quickassist.IQuickAssistProcessor;
import org.eclipse.jface.text.source.Annotation;
import org.eclipse.jface.text.source.IAnnotationModel;
import org.eclipse.jface.text.source.ISourceViewer;
import org.eclipse.jface.text.source.TextInvocationContext;
import org.eclipse.ui.internal.texteditor.spelling.NoCompletionsProposal;
/**
* Spelling correction processor used to show quick
* fixes for spelling problems.
*
* @since 3.3
*/
public final class SpellingCorrectionProcessor implements IQuickAssistProcessor {
private static final ICompletionProposal[] fgNoSuggestionsProposal= new ICompletionProposal[] { new NoCompletionsProposal() };
/*
* @see IContentAssistProcessor#computeCompletionProposals(ITextViewer, int)
*/
@Override
public ICompletionProposal[] computeQuickAssistProposals(IQuickAssistInvocationContext quickAssistContext) {
ISourceViewer viewer= quickAssistContext.getSourceViewer();
int documentOffset= quickAssistContext.getOffset();
int length= viewer != null ? viewer.getSelectedRange().y : -1;
TextInvocationContext context= new TextInvocationContext(viewer, documentOffset, length);
IAnnotationModel model= viewer.getAnnotationModel();
if (model == null)
return fgNoSuggestionsProposal;
List<ICompletionProposal> proposals= computeProposals(context, model);
if (proposals.isEmpty())
return fgNoSuggestionsProposal;
return proposals.toArray(new ICompletionProposal[proposals.size()]);
}
private boolean isAtPosition(int offset, Position pos) {
return (pos != null) && (offset >= pos.getOffset() && offset <= (pos.getOffset() + pos.getLength()));
}
private List<ICompletionProposal> computeProposals(IQuickAssistInvocationContext context, IAnnotationModel model) {
int offset= context.getOffset();
ArrayList<SpellingProblem> annotationList= new ArrayList<>();
Iterator<Annotation> iter= model.getAnnotationIterator();
while (iter.hasNext()) {
Annotation annotation= iter.next();
if (canFix(annotation)) {
Position pos= model.getPosition(annotation);
if (isAtPosition(offset, pos)) {
collectSpellingProblems(annotation, annotationList);
}
}
}
SpellingProblem[] spellingProblems= annotationList.toArray(new SpellingProblem[annotationList.size()]);
return computeProposals(context, spellingProblems);
}
private void collectSpellingProblems(Annotation annotation, List<SpellingProblem> problems) {
if (annotation instanceof SpellingAnnotation)
problems.add(((SpellingAnnotation)annotation).getSpellingProblem());
}
private List<ICompletionProposal> computeProposals(IQuickAssistInvocationContext context, SpellingProblem[] spellingProblems) {
List<ICompletionProposal> proposals= new ArrayList<>();
for (int i= 0; i < spellingProblems.length; i++)
proposals.addAll(Arrays.asList(spellingProblems[i].getProposals(context)));
return proposals;
}
@Override
public String getErrorMessage() {
return null;
}
@Override
public boolean canFix(Annotation annotation) {
return annotation instanceof SpellingAnnotation && !annotation.isMarkedDeleted();
}
@Override
public boolean canAssist(IQuickAssistInvocationContext invocationContext) {
return false;
}
}