/* * 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.ide.actions; import com.intellij.ide.IdeView; import com.intellij.openapi.actionSystem.*; import com.intellij.openapi.project.DumbService; import com.intellij.openapi.project.Project; import com.intellij.openapi.ui.InputValidator; import com.intellij.psi.PsiDirectory; import com.intellij.psi.PsiElement; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import consulo.annotations.RequiredDispatchThread; import javax.swing.*; /** * The base class for actions which create new file elements. * * @since 5.1 */ public abstract class CreateElementActionBase extends AnAction { protected CreateElementActionBase() { } protected CreateElementActionBase(String text, String description, Icon icon) { super(text, description, icon); } /** * @return created elements. Never null. */ @NotNull protected abstract PsiElement[] invokeDialog(Project project, PsiDirectory directory); /** * @return created elements. Never null. */ @NotNull protected abstract PsiElement[] create(String newName, PsiDirectory directory) throws Exception; protected abstract String getErrorTitle(); protected abstract String getCommandName(); protected abstract String getActionName(PsiDirectory directory, String newName); @RequiredDispatchThread @Override public final void actionPerformed(@NotNull final AnActionEvent e) { final IdeView view = e.getData(LangDataKeys.IDE_VIEW); if (view == null) { return; } final Project project = e.getProject(); final PsiDirectory dir = view.getOrChooseDirectory(); if (dir == null) return; final PsiElement[] createdElements = invokeDialog(project, dir); for (PsiElement createdElement : createdElements) { view.selectElement(createdElement); } } @RequiredDispatchThread @Override public void update(@NotNull final AnActionEvent e) { if(!e.getPresentation().isVisible()) { return; } final DataContext dataContext = e.getDataContext(); final Presentation presentation = e.getPresentation(); final boolean enabled = isAvailable(dataContext); presentation.setVisible(enabled); presentation.setEnabled(enabled); } @Override public boolean isDumbAware() { return false; } protected boolean isAvailable(final DataContext dataContext) { final Project project = CommonDataKeys.PROJECT.getData(dataContext); if (project == null) { return false; } if (DumbService.getInstance(project).isDumb() && !isDumbAware()) { return false; } final IdeView view = LangDataKeys.IDE_VIEW.getData(dataContext); if (view == null || view.getDirectories().length == 0) { return false; } return true; } public static String filterMessage(String message) { if (message == null) return null; @NonNls final String ioExceptionPrefix = "java.io.IOException:"; if (message.startsWith(ioExceptionPrefix)) { message = message.substring(ioExceptionPrefix.length()); } return message; } protected class MyInputValidator extends ElementCreator implements InputValidator { private final PsiDirectory myDirectory; private PsiElement[] myCreatedElements = PsiElement.EMPTY_ARRAY; public MyInputValidator(final Project project, final PsiDirectory directory) { super(project, getErrorTitle()); myDirectory = directory; } public PsiDirectory getDirectory() { return myDirectory; } @Override public boolean checkInput(final String inputString) { return true; } @Override public PsiElement[] create(String newName) throws Exception { return CreateElementActionBase.this.create(newName, myDirectory); } @Override public String getActionName(String newName) { return CreateElementActionBase.this.getActionName(myDirectory, newName); } @Override public boolean canClose(final String inputString) { myCreatedElements = tryCreate(inputString); return myCreatedElements.length > 0; } public final PsiElement[] getCreatedElements() { return myCreatedElements; } } }