/* * Copyright 2015 The authors * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0 * * 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.intellij.lang.ognl; import com.intellij.codeInsight.CodeInsightSettings; import com.intellij.codeInsight.editorActions.TypedHandlerDelegate; import com.intellij.openapi.editor.Editor; import com.intellij.openapi.project.Project; import com.intellij.psi.PsiDocumentManager; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiFile; import com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil; import org.jetbrains.annotations.NotNull; /** * Special "completions" when typing characters. * * @author Yann Cébron */ public class OgnlTypedHandler extends TypedHandlerDelegate { @Override public Result charTyped(final char c, final Project project, @NotNull final Editor editor, @NotNull final PsiFile file) { if (c != '{') { return Result.CONTINUE; } if (!CodeInsightSettings.getInstance().AUTOINSERT_PAIR_BRACKET) { return Result.CONTINUE; } if (file.getFileType() != OgnlFileType.INSTANCE) { PsiDocumentManager.getInstance(project).commitDocument(editor.getDocument()); final int offset = editor.getCaretModel().getOffset(); final PsiElement elementAtCursor = InjectedLanguageUtil.findElementAtNoCommit(file, offset); if (elementAtCursor == null) { return Result.CONTINUE; } if (elementAtCursor.getLanguage() != OgnlLanguage.INSTANCE) { return Result.CONTINUE; } } final int offset = editor.getCaretModel().getOffset(); if (offset < OgnlLanguage.EXPRESSION_PREFIX.length()) { return Result.CONTINUE; } if (handleExpressionPrefix(editor, offset)) { return Result.STOP; } if (handleOpeningBrace(editor, offset)) { return Result.STOP; } return Result.CONTINUE; } /** * Autocomplete "%{" to "%{}". * * @param editor Current editor. * @return {@code true} if handled. */ private static boolean handleExpressionPrefix(final Editor editor, int offset) { final CharSequence sequence = editor.getDocument().getCharsSequence(); final CharSequence before = sequence.subSequence(offset - OgnlLanguage.EXPRESSION_PREFIX.length(), offset); if (!OgnlLanguage.EXPRESSION_PREFIX.equals(before.toString())) { return false; } editor.getDocument().insertString(offset, OgnlLanguage.EXPRESSION_SUFFIX); return true; } /** * Autocomplete "{" to "{}". * * @param editor Current editor. * @return {@code true} if handled. */ private static boolean handleOpeningBrace(final Editor editor, int offset) { if (offset < OgnlLanguage.EXPRESSION_PREFIX.length()) return false; editor.getDocument().insertString(editor.getCaretModel().getOffset(), "}"); return true; } }