Package org.twodividedbyzero.idea.findbugs.actions

Source Code of org.twodividedbyzero.idea.findbugs.actions.BaseAction

/*
* Copyright 2008-2013 Andre Pfeiler
*
* This file is part of FindBugs-IDEA.
*
* FindBugs-IDEA is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FindBugs-IDEA is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with FindBugs-IDEA.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.twodividedbyzero.idea.findbugs.actions;

import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.DataContext;
import com.intellij.openapi.actionSystem.DataKeys;
import com.intellij.openapi.actionSystem.Presentation;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.ui.Messages;
import com.intellij.openapi.wm.ToolWindow;
import com.intellij.openapi.wm.ToolWindowManager;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.Nullable;
import org.twodividedbyzero.idea.findbugs.common.exception.FindBugsPluginException;
import org.twodividedbyzero.idea.findbugs.common.util.IdeaUtilImpl;
import org.twodividedbyzero.idea.findbugs.core.FindBugsPlugin;
import org.twodividedbyzero.idea.findbugs.core.FindBugsPluginImpl;

import java.util.Collections;
import java.util.HashSet;
import java.util.Set;


/**
* $Date: 2013-12-05 08:09:56 -0600 (Thu, 05 Dec 2013) $
*
* @author Andre Pfeiler<andrep@twodividedbyzero.org>
* @version $Revision: 257 $
* @since 0.0.1
*/
@SuppressWarnings({"MethodMayBeStatic"})
public abstract class BaseAction extends AnAction {

  private static final Logger LOGGER = Logger.getInstance(BaseAction.class.getName());

  private final Set<String> _registeredProjects = new HashSet<String>();


  @Override
  public void update(final AnActionEvent event) {
    try {
      final DataContext dataContext = event.getDataContext();
      final Project project = DataKeys.PROJECT.getData(dataContext);
      final Presentation presentation = event.getPresentation();

      if (isProjectNotLoaded(project, presentation)) {
        return;
      }

      isPluginAccessible(project);

      // check if tool window is registered
      final ToolWindow toolWindow = isToolWindowRegistered(project);
      if (toolWindow == null) {
        presentation.setEnabled(false);
        presentation.setVisible(false);

        return;
      }

      // enable ?
      presentation.setEnabled(toolWindow.isAvailable() && isEnabled());
      presentation.setVisible(true);

    } catch (final Throwable e) {
      final FindBugsPluginException processed = FindBugsPluginImpl.processError("Action update failed", e);
      LOGGER.error("Action update failed", processed);
    }
  }


  protected ToolWindow isToolWindowRegistered(final Project project) {
    return ToolWindowManager.getInstance(project).getToolWindow(getPluginInterface(project).getInternalToolWindowId());
  }


  protected void isPluginAccessible(final Project project) {
    final FindBugsPlugin findBugsPlugin = project.getComponent(FindBugsPlugin.class);
    if (findBugsPlugin == null) {
      Messages.showWarningDialog("Couldn't get findbugs plugin", "FindBugs");
      throw new IllegalStateException("Couldn't get findbugs plugin");
    }
  }


  protected boolean isProjectNotLoaded(@Nullable final Project project, final Presentation presentation) {
    // check a project is loaded
    if (project == null) {
      presentation.setEnabled(false);
      presentation.setVisible(false);

      return true;
    }
    return false;
  }


  protected FindBugsPlugin getPluginInterface(final Project project) {
    return IdeaUtilImpl.getPluginComponent(project);
  }


  public Set<String> getRegisteredProjects() {
    return Collections.unmodifiableSet(_registeredProjects);
  }


  public void addRegisteredProject(@NonNls final String projectName) {
    _registeredProjects.add(projectName);
  }


  public boolean isRegistered(@NonNls final String projectName) {
    return _registeredProjects.contains(projectName);
  }


  public boolean isRegistered(final Project project) {
    return isRegistered(project.getName());
  }


  public boolean isProjectEvent(final String projectName1, final String projectName2) {
    return projectName1.equals(projectName2);
  }


  protected abstract boolean isEnabled();


  protected abstract boolean setEnabled(final boolean enabled);


}
TOP

Related Classes of org.twodividedbyzero.idea.findbugs.actions.BaseAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.