/* * 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.editor; import com.intellij.codeInsight.CodeInsightSettings; import com.intellij.codeInsight.editorActions.TypedHandlerDelegate; 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.openapi.util.text.StringUtil; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiFile; import com.intellij.psi.util.PsiTreeUtil; import com.jetbrains.python.documentation.docstrings.PyDocstringGenerator; import com.jetbrains.python.editor.PythonEnterHandler.DocstringState; import com.jetbrains.python.psi.PyDocStringOwner; import org.jetbrains.annotations.NotNull; /** * User : catherine */ public class PythonSpaceHandler extends TypedHandlerDelegate { @Override public Result charTyped(char c, Project project, @NotNull Editor editor, @NotNull PsiFile file) { CodeInsightSettings codeInsightSettings = CodeInsightSettings.getInstance(); if (c == ' ' && codeInsightSettings.JAVADOC_STUB_ON_ENTER) { int offset = editor.getCaretModel().getOffset(); PsiElement element = file.findElementAt(offset); if (element == null && offset > 1) { element = file.findElementAt(offset - 2); } if (element == null) return Result.CONTINUE; int expectedStringStart = offset - 4; // """ or ''' plus space char final Document document = editor.getDocument(); if (PythonEnterHandler.canGenerateDocstring(element, expectedStringStart, document) == DocstringState.INCOMPLETE) { final PyDocStringOwner docOwner = PsiTreeUtil.getParentOfType(element, PyDocStringOwner.class); if (docOwner != null) { final String quotes = document.getText(TextRange.from(expectedStringStart, 3)); final String docString = PyDocstringGenerator.forDocStringOwner(docOwner) .forceNewMode() .withInferredParameters(true) .withQuotes(quotes) .buildDocString(); document.insertString(offset, docString.substring(3)); if (!StringUtil.isEmptyOrSpaces(docString.substring(3, docString.length() - 3))) { editor.getCaretModel().moveCaretRelatively(100, 1, false, false, false); } return Result.STOP; } } } return Result.CONTINUE; } }