Search in sources :

Example 1 with CompletionInterpolation

use of org.jboss.ide.eclipse.freemarker.model.CompletionInterpolation in project liferay-ide by liferay.

the class CompletionProcessor method computeCompletionProposals.

public ICompletionProposal[] computeCompletionProposals(ITextViewer viewer, int offset) {
    try {
        ItemSet directiveSet = editor.getItemSet();
        Map context = new HashMap();
        ContextValue[] values = ConfigurationManager.getInstance(editor.getProject()).getContextValues(editor.getFile(), true);
        for (int i = 0; i < values.length; i++) {
            context.put(values[i].name, values[i].objClass);
        }
        Item directive = directiveSet.getSelectedItem(offset);
        if (null != directive) {
            return directive.getCompletionProposals(offset, context);
        } else {
            // we might be starting something
            Item item = editor.getItemSet().getPreviousItem(offset);
            int topOffset = 0;
            if (null != item)
                topOffset = item.getRegion().getOffset() + item.getRegion().getLength();
            // check for directives and macro calls
            try {
                for (int i = offset - 1; i >= topOffset; i--) {
                    char c = editor.getDocument().getChar(i);
                    if (c == '>' || c == ']')
                        break;
                    if (c == '<' || c == '[') {
                        if (editor.getDocument().getLength() > i) {
                            char c2 = editor.getDocument().getChar(i + 1);
                            if (c2 == '#') {
                                CompletionDirective completionDirective = new CompletionDirective(i, offset - i, editor.getItemSet(), (ISourceViewer) viewer, (IResource) editor.getFile());
                                completionDirective.setItemSet(editor.getItemSet());
                                return completionDirective.getCompletionProposals(offset, context);
                            } else if (c2 == '@') {
                                CompletionMacroInstance completionMacroInstance = new CompletionMacroInstance(editor.getDocument().get(i, offset - i), i, editor.getItemSet(), editor.getFile());
                                completionMacroInstance.setItemSet(editor.getItemSet());
                                return completionMacroInstance.getCompletionProposals(offset, context);
                            } else if (c2 == '/') {
                                if (editor.getDocument().getLength() < i + 3 || editor.getDocument().getChar(i + 2) == ' ' || editor.getDocument().getChar(i + 2) == '\r' || editor.getDocument().getChar(i + 2) == '\n') {
                                    Item stackItem = editor.getItemSet().getPreviousStartItem(offset);
                                    StringBuffer value = new StringBuffer();
                                    if (null != stackItem && stackItem instanceof MacroInstance)
                                        // $NON-NLS-1$
                                        value.append("@");
                                    else
                                        // $NON-NLS-1$
                                        value.append("#");
                                    String name = null;
                                    if (null != stackItem)
                                        name = stackItem.getFirstToken();
                                    if (null != name)
                                        value.append(name);
                                    if (c == '<')
                                        value.append('>');
                                    else
                                        value.append(']');
                                    ICompletionProposal completionProposal = new CompletionProposal(value.toString(), offset, 0, offset + value.toString().length());
                                    return new ICompletionProposal[] { completionProposal };
                                }
                            } else {
                                return NO_COMPLETIONS;
                            }
                        }
                    }
                }
            } catch (BadLocationException e) {
                return NO_COMPLETIONS;
            }
            // check for interpolations
            try {
                for (int i = offset - 1; i >= topOffset; i--) {
                    char c = editor.getDocument().getChar(i);
                    if (c == '\n')
                        break;
                    else if (c == '$') {
                        if (editor.getDocument().getLength() > i) {
                            char c2 = editor.getDocument().getChar(i + 1);
                            if (c2 == '{') {
                                int j = offset;
                                while (editor.getDocument().getLength() > j) {
                                    char c3 = editor.getDocument().getChar(j);
                                    if (Character.isWhitespace(c3) || c3 == '(' || c3 == '.' || c3 == ')' || c3 == '}' || c3 == '?') {
                                        // j = j-1;
                                        break;
                                    }
                                    j++;
                                }
                                CompletionInterpolation interpolation = new CompletionInterpolation(editor.getDocument().get(i, j - i), i, editor.getItemSet(), editor.getFile());
                                interpolation.setParentItem(editor.getItemSet().getPreviousStartItem(offset));
                                return interpolation.getCompletionProposals(offset, context);
                            }
                        }
                    }
                }
            } catch (BadLocationException e) {
                return NO_COMPLETIONS;
            }
        }
    } catch (Exception e) {
        Plugin.log(e);
    }
    return NO_COMPLETIONS;
}
Also used : CompletionProposal(org.eclipse.jface.text.contentassist.CompletionProposal) ICompletionProposal(org.eclipse.jface.text.contentassist.ICompletionProposal) HashMap(java.util.HashMap) CompletionDirective(org.jboss.ide.eclipse.freemarker.model.CompletionDirective) CompletionMacroInstance(org.jboss.ide.eclipse.freemarker.model.CompletionMacroInstance) BadLocationException(org.eclipse.jface.text.BadLocationException) CompletionInterpolation(org.jboss.ide.eclipse.freemarker.model.CompletionInterpolation) Item(org.jboss.ide.eclipse.freemarker.model.Item) ItemSet(org.jboss.ide.eclipse.freemarker.model.ItemSet) ContextValue(org.jboss.ide.eclipse.freemarker.configuration.ContextValue) ICompletionProposal(org.eclipse.jface.text.contentassist.ICompletionProposal) CompletionMacroInstance(org.jboss.ide.eclipse.freemarker.model.CompletionMacroInstance) MacroInstance(org.jboss.ide.eclipse.freemarker.model.MacroInstance) HashMap(java.util.HashMap) Map(java.util.Map) BadLocationException(org.eclipse.jface.text.BadLocationException)

Aggregations

HashMap (java.util.HashMap)1 Map (java.util.Map)1 BadLocationException (org.eclipse.jface.text.BadLocationException)1 CompletionProposal (org.eclipse.jface.text.contentassist.CompletionProposal)1 ICompletionProposal (org.eclipse.jface.text.contentassist.ICompletionProposal)1 ContextValue (org.jboss.ide.eclipse.freemarker.configuration.ContextValue)1 CompletionDirective (org.jboss.ide.eclipse.freemarker.model.CompletionDirective)1 CompletionInterpolation (org.jboss.ide.eclipse.freemarker.model.CompletionInterpolation)1 CompletionMacroInstance (org.jboss.ide.eclipse.freemarker.model.CompletionMacroInstance)1 Item (org.jboss.ide.eclipse.freemarker.model.Item)1 ItemSet (org.jboss.ide.eclipse.freemarker.model.ItemSet)1 MacroInstance (org.jboss.ide.eclipse.freemarker.model.MacroInstance)1