/* * 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.jetbrains.python.inspections.quickfix; import com.intellij.codeInspection.LocalQuickFix; import com.intellij.codeInspection.ProblemDescriptor; import com.intellij.openapi.project.Project; import com.intellij.psi.PsiComment; import com.intellij.psi.PsiElement; import com.intellij.psi.util.PsiTreeUtil; import com.jetbrains.python.PyBundle; import com.jetbrains.python.psi.*; import com.jetbrains.python.psi.impl.PyAugAssignmentStatementImpl; import org.jetbrains.annotations.NotNull; import java.util.List; /** * User: catherine * * QuickFix to replace assignment that can be replaced with augmented assignment. * for instance, i = i + 1 --> i +=1 */ public class AugmentedAssignmentQuickFix implements LocalQuickFix { @NotNull public String getFamilyName() { return PyBundle.message("QFIX.augment.assignment"); } public void applyFix(@NotNull Project project, @NotNull ProblemDescriptor descriptor) { PsiElement element = descriptor.getPsiElement(); if (element instanceof PyAssignmentStatement && element.isWritable()) { final PyAssignmentStatement statement = (PyAssignmentStatement)element; final PyExpression target = statement.getLeftHandSideExpression(); final PyBinaryExpression expression = (PyBinaryExpression)statement.getAssignedValue(); if (expression == null) return; PyExpression leftExpression = expression.getLeftExpression(); PyExpression rightExpression = expression.getRightExpression(); if (rightExpression instanceof PyParenthesizedExpression) rightExpression = ((PyParenthesizedExpression)rightExpression).getContainedExpression(); if (target != null && rightExpression != null) { final String targetText = target.getText(); final String rightText = rightExpression.getText(); if (rightText.equals(targetText)) { final PyExpression tmp = rightExpression; rightExpression = leftExpression; leftExpression = tmp; } final List<PsiComment> comments = PsiTreeUtil.getChildrenOfTypeAsList(statement, PsiComment.class); if ((leftExpression instanceof PyReferenceExpression || leftExpression instanceof PySubscriptionExpression)) { if (leftExpression.getText().equals(targetText)) { final PyElementGenerator elementGenerator = PyElementGenerator.getInstance(project); final StringBuilder stringBuilder = new StringBuilder(); final PsiElement psiOperator = expression.getPsiOperator(); if (psiOperator == null) return; stringBuilder.append(targetText).append(" "). append(psiOperator.getText()).append("= ").append(rightExpression.getText()); final PyAugAssignmentStatementImpl augAssignment = elementGenerator.createFromText(LanguageLevel.forElement(element), PyAugAssignmentStatementImpl.class, stringBuilder.toString()); for (PsiComment comment : comments) augAssignment.add(comment); statement.replace(augAssignment); } } } } } }