blob: 0044c599a8513ed58482262cbfc907171daba00e [file] [log] [blame]
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* 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.codeInsight.template.postfix.templates;
import com.intellij.codeInsight.generation.surroundWith.JavaWithTryCatchSurrounder;
import com.intellij.openapi.editor.Document;
import com.intellij.openapi.editor.Editor;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.TextRange;
import com.intellij.psi.*;
import com.intellij.psi.util.PsiTreeUtil;
import com.intellij.psi.util.PsiUtil;
import com.intellij.util.ArrayUtil;
import org.jetbrains.annotations.NotNull;
public class TryStatementPostfixTemplate extends PostfixTemplate {
protected TryStatementPostfixTemplate() {
super("try", "try { exp } catch(Exception e)");
}
@Override
public boolean isApplicable(@NotNull PsiElement context, @NotNull Document copyDocument, int newOffset) {
PsiStatement statementParent = PsiTreeUtil.getNonStrictParentOfType(context, PsiStatement.class);
if (statementParent == null ||
newOffset != statementParent.getTextRange().getEndOffset()) return false;
if (statementParent instanceof PsiDeclarationStatement) return true;
if (statementParent instanceof PsiExpressionStatement) {
PsiExpression expression = ((PsiExpressionStatement)statementParent).getExpression();
return null != expression.getType();
}
return false;
}
@Override
public void expand(@NotNull PsiElement context, @NotNull Editor editor) {
PsiStatement statement = PsiTreeUtil.getNonStrictParentOfType(context, PsiStatement.class);
assert statement != null;
PsiFile file = statement.getContainingFile();
Project project = context.getProject();
JavaWithTryCatchSurrounder surrounder = new JavaWithTryCatchSurrounder();
TextRange range = surrounder.surroundElements(project, editor, new PsiElement[]{statement});
if (range == null) {
PostfixTemplatesUtils.showErrorHint(project, editor);
return;
}
PsiElement element = file.findElementAt(range.getStartOffset());
PsiTryStatement tryStatement = PsiTreeUtil.getParentOfType(element, PsiTryStatement.class);
assert tryStatement != null;
PsiCodeBlock block = tryStatement.getTryBlock();
assert block != null;
PsiStatement statementInTry = ArrayUtil.getFirstElement(block.getStatements());
if (null != statementInTry) {
editor.getCaretModel().moveToOffset(statementInTry.getTextRange().getEndOffset());
}
}
}