/*******************************************************************************
* Copyright (c) 2015 Bruno Medeiros and other Contributors.
* 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:
* Bruno Medeiros - initial API and implementation
*******************************************************************************/
package melnorme.lang.ide.ui.text.completion;
import static melnorme.utilbox.core.CoreUtil.array;
import org.eclipse.jface.text.ITextViewer;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.eclipse.jface.text.contentassist.IContentAssistProcessor;
import org.eclipse.jface.text.contentassist.IContextInformation;
import org.eclipse.jface.text.contentassist.IContextInformationValidator;
import melnorme.lang.ide.ui.LangUIMessages;
public abstract class ContenAssistProcessorExt implements IContentAssistProcessor {
public ContenAssistProcessorExt() {
super();
}
/* ----------------- ----------------- */
protected char[] completionAutoActivationCharacters;
@Override
public char[] getCompletionProposalAutoActivationCharacters() {
return completionAutoActivationCharacters;
}
public void setCompletionProposalAutoActivationCharacters(char[] activationSet) {
completionAutoActivationCharacters= activationSet;
}
@Override
public char[] getContextInformationAutoActivationCharacters() {
return null;
}
/* ----------------- ----------------- */
protected String errorMessage;
protected void resetComputeState() {
errorMessage = null;
}
@Override
public String getErrorMessage() {
if(errorMessage != null)
return errorMessage;
return LangUIMessages.ContentAssistProcessor_emptyDefaultProposals;
}
@Override
public final ICompletionProposal[] computeCompletionProposals(ITextViewer viewer, int offset) {
resetComputeState();
// The code below has been commented, it causes a bug with templates with "${word_selection} " usage,
// and it's not clear this functionality made sense in the first place.
// if(viewer instanceof LangSourceViewer) {
// LangSourceViewer sourceViewer = (LangSourceViewer) viewer;
// if(sourceViewer.getSelectedRange().y > 0) {
// // Correct the invocation offset for content assist.
// // The issue is that if text is selected, the cursor can either be on the left, or the right
// // but the offset used will always be the left side of the selection, unless we correct it.
//
// int caretOffset = sourceViewer.getTextWidget().getCaretOffset();
// offset = sourceViewer.widgetOffset2ModelOffset(caretOffset);
// }
// }
return doComputeCompletionProposals(viewer, offset);
}
protected abstract ICompletionProposal[] doComputeCompletionProposals(ITextViewer viewer, int offset);
@Override
public IContextInformation[] computeContextInformation(ITextViewer viewer, int offset) {
resetComputeState();
return doComputeContextInformation(viewer, offset);
}
protected abstract IContextInformation[] doComputeContextInformation(ITextViewer viewer, int offset);
/* ----------------- ----------------- */
public static class NullContentAssistProcessorExt extends ContenAssistProcessorExt {
@Override
public IContextInformationValidator getContextInformationValidator() {
return null;
}
@Override
protected IContextInformation[] doComputeContextInformation(ITextViewer viewer, int offset) {
return array();
}
@Override
protected ICompletionProposal[] doComputeCompletionProposals(ITextViewer viewer, int offset) {
return array();
}
}
}