com.jetbrains.python.codeInsight.intentions.PyBaseConvertCollectionLiteralIntention Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of python-community Show documentation
Show all versions of python-community Show documentation
A packaging of the IntelliJ Community Edition python-community library.
This is release number 1 of trunk branch 142.
The newest version!
/*
* Copyright 2000-2015 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.jetbrains.python.codeInsight.intentions;
import com.intellij.codeInsight.intention.impl.BaseIntentionAction;
import com.intellij.openapi.editor.Editor;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.Condition;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiFile;
import com.intellij.psi.util.PsiTreeUtil;
import com.intellij.util.IncorrectOperationException;
import com.jetbrains.python.PyBundle;
import com.jetbrains.python.PyTokenTypes;
import com.jetbrains.python.psi.*;
import org.jetbrains.annotations.Nls;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import static com.jetbrains.python.psi.PyUtil.as;
/**
* @author Mikhail Golubev
*/
public abstract class PyBaseConvertCollectionLiteralIntention extends BaseIntentionAction {
private final Class extends PySequenceExpression> myTargetCollectionClass;
private final String myTargetCollectionName;
private final String myRightBrace;
private final String myLeftBrace;
public PyBaseConvertCollectionLiteralIntention(@NotNull Class extends PySequenceExpression> targetCollectionClass,
@NotNull String targetCollectionName,
@NotNull String leftBrace, @NotNull String rightBrace) {
myTargetCollectionClass = targetCollectionClass;
myTargetCollectionName = targetCollectionName;
myLeftBrace = leftBrace;
myRightBrace = rightBrace;
}
@Nls
@NotNull
@Override
public String getFamilyName() {
return PyBundle.message("INTN.convert.collection.literal.family", myTargetCollectionName);
}
@Override
public boolean isAvailable(@NotNull Project project, Editor editor, PsiFile file) {
if (!(file instanceof PyFile)) {
return false;
}
final PySequenceExpression literal = findCollectionLiteralUnderCaret(editor, file);
if (myTargetCollectionClass.isInstance(literal)) {
return false;
}
if (literal instanceof PyTupleExpression) {
setText(PyBundle.message("INTN.convert.collection.literal.text", "tuple", myTargetCollectionName));
}
else if (literal instanceof PyListLiteralExpression) {
setText(PyBundle.message("INTN.convert.collection.literal.text", "list", myTargetCollectionName));
}
else if (literal instanceof PySetLiteralExpression) {
setText(PyBundle.message("INTN.convert.collection.literal.text", "set", myTargetCollectionName));
}
else {
return false;
}
return isAvailableForCollection(literal);
}
protected boolean isAvailableForCollection(PySequenceExpression literal) {
return true;
}
@Override
public void invoke(@NotNull Project project, Editor editor, PsiFile file) throws IncorrectOperationException {
final PySequenceExpression literal = findCollectionLiteralUnderCaret(editor, file);
assert literal != null;
final PsiElement replacedElement;
if (literal instanceof PyTupleExpression && literal.getParent() instanceof PyParenthesizedExpression) {
replacedElement = literal.getParent();
}
else {
replacedElement = literal;
}
final PyElementGenerator elementGenerator = PyElementGenerator.getInstance(project);
final PyExpression newLiteral = elementGenerator.createExpressionFromText(LanguageLevel.forElement(file),
myLeftBrace + stripLiteralBraces(literal) + myRightBrace);
replacedElement.replace(newLiteral);
}
@NotNull
private static String stripLiteralBraces(@NotNull PySequenceExpression literal) {
if (literal instanceof PyTupleExpression) {
return literal.getText().trim();
}
final PsiElement firstChild = literal.getFirstChild();
final String replacedText = literal.getText();
final int contentStartOffset;
if (PyTokenTypes.OPEN_BRACES.contains(firstChild.getNode().getElementType())) {
contentStartOffset = firstChild.getTextLength();
}
else {
contentStartOffset = 0;
}
final PsiElement lastChild = literal.getLastChild();
final int contentEndOffset;
if (PyTokenTypes.CLOSE_BRACES.contains(lastChild.getNode().getElementType())) {
contentEndOffset = replacedText.length() - lastChild.getTextLength();
}
else {
contentEndOffset = replacedText.length();
}
return literal.getText().substring(contentStartOffset, contentEndOffset).trim();
}
@Nullable
private static PySequenceExpression findCollectionLiteralUnderCaret(@NotNull Editor editor, @NotNull PsiFile psiFile) {
final int caretOffset = editor.getCaretModel().getOffset();
final PsiElement curElem = psiFile.findElementAt(caretOffset);
final PySequenceExpression seqExpr = PsiTreeUtil.getParentOfType(curElem, PySequenceExpression.class);
if (seqExpr != null) {
return seqExpr;
}
final PyParenthesizedExpression paren = (PyParenthesizedExpression)PsiTreeUtil.findFirstParent(curElem, new Condition() {
@Override
public boolean value(PsiElement element) {
final PyParenthesizedExpression parenthesizedExpr = as(element, PyParenthesizedExpression.class);
return parenthesizedExpr != null && parenthesizedExpr.getContainedExpression() instanceof PyTupleExpression;
}
});
return paren != null ? ((PyTupleExpression)paren.getContainedExpression()) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy