use of org.jboss.ide.eclipse.freemarker.model.CompletionMacroInstance 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;
}
Aggregations