/* * Copyright (c) 2012, the Dart project authors. * * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.eclipse.org/legal/epl-v10.html * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.dart.tools.ui.web.yaml; import org.eclipse.jface.text.BadLocationException; import org.eclipse.jface.text.IDocument; import org.eclipse.jface.text.IRegion; import org.eclipse.jface.text.ITextViewer; import org.eclipse.jface.text.contentassist.CompletionProposal; 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 java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; class YamlContentAssistProcessor implements IContentAssistProcessor { public YamlContentAssistProcessor() { } @Override public ICompletionProposal[] computeCompletionProposals(ITextViewer viewer, int offset) { String prefix = getValidPrefix(viewer, offset); if (prefix == null) { return null; } List<ICompletionProposal> completions = new ArrayList<ICompletionProposal>(); for (String keyword : YamlKeywords.getKeywords()) { if (keyword.startsWith(prefix)) { String textToInsert = keyword + ": "; completions.add(new CompletionProposal( textToInsert, offset - prefix.length(), prefix.length(), textToInsert.length(), null, keyword, null, null)); } } Collections.sort(completions, new Comparator<ICompletionProposal>() { @Override public int compare(ICompletionProposal proposal1, ICompletionProposal proposal2) { return proposal1.getDisplayString().compareToIgnoreCase(proposal2.getDisplayString()); } }); return completions.toArray(new ICompletionProposal[completions.size()]); } @Override public IContextInformation[] computeContextInformation(ITextViewer viewer, int offset) { return null; } @Override public char[] getCompletionProposalAutoActivationCharacters() { return new char[] {}; } @Override public char[] getContextInformationAutoActivationCharacters() { return null; } @Override public IContextInformationValidator getContextInformationValidator() { return null; } @Override public String getErrorMessage() { return null; } private String getValidPrefix(ITextViewer viewer, int offset) { try { IDocument doc = viewer.getDocument(); IRegion lineInfo = doc.getLineInformationOfOffset(offset); String line = doc.get(lineInfo.getOffset(), offset - lineInfo.getOffset()); for (char c : line.toCharArray()) { if (!Character.isJavaIdentifierPart(c)) { return null; } } return line; } catch (BadLocationException ex) { return null; } } }