Package org.twodividedbyzero.idea.findbugs.common.util

Source Code of org.twodividedbyzero.idea.findbugs.common.util.CompileManagerFacade

/*
* 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.common.util;

import com.intellij.openapi.compiler.CompileStatusNotification;
import com.intellij.openapi.compiler.CompilerManager;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.vfs.VirtualFile;
import org.jetbrains.annotations.Nullable;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;


/**
* $Date: 2013-12-05 08:09:56 -0600 (Thu, 05 Dec 2013) $
*
* @author Andre Pfeiler<andrep@dev.java.net>
* @version $Revision: 257 $
* @since 0.9.97
*/
public class CompileManagerFacade {

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


  private final Project _project;


  public CompileManagerFacade(final Project project) {
    _project = project;
  }


  public void compile(final VirtualFile[] virtualFiles, @Nullable final CompileStatusNotification notification) {
    final CompilerManager compilerManager = CompilerManager.getInstance(_project);
    try {
      if (IdeaUtilImpl.isVersionGreaterThanIdea9()) {
        final Method method = compilerManager.getClass().getDeclaredMethod("compile", VirtualFile[].class, CompileStatusNotification.class);
        method.invoke(virtualFiles, notification);
      } else {
        final Method method = compilerManager.getClass().getDeclaredMethod("compile", VirtualFile[].class, CompileStatusNotification.class, boolean.class);
        method.invoke(virtualFiles, notification, false);
      }
    } catch (final NoSuchMethodException e) {
      LOGGER.debug(e);
    } catch (final InvocationTargetException e) {
      LOGGER.debug(e.getTargetException());
    } catch (final IllegalAccessException e) {
      LOGGER.debug(e);
    } catch (final IllegalArgumentException e) {
      LOGGER.debug(e);
    }
  }

}
TOP

Related Classes of org.twodividedbyzero.idea.findbugs.common.util.CompileManagerFacade

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.