/** * Copyright (C) 2010-2017 Gordon Fraser, Andrea Arcuri and EvoSuite * contributors * * This file is part of EvoSuite. * * EvoSuite is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation, either version 3.0 of the License, or * (at your option) any later version. * * EvoSuite 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 * Lesser Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with EvoSuite. If not, see <http://www.gnu.org/licenses/>. */ package org.evosuite.intellij.util; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.application.ModalityState; import com.intellij.openapi.compiler.CompilerManager; import com.intellij.openapi.compiler.CompilerPaths; import com.intellij.openapi.module.Module; import com.intellij.openapi.module.ModuleManager; import com.intellij.openapi.project.Project; import com.intellij.openapi.roots.ModuleRootManager; import com.intellij.openapi.roots.OrderEnumerator; import com.intellij.openapi.vfs.VirtualFile; import org.jetbrains.annotations.Nullable; import java.io.File; import java.util.Arrays; import java.util.List; import java.util.concurrent.CountDownLatch; import java.util.concurrent.atomic.AtomicBoolean; /** * Created by Andrea Arcuri on 11/03/15. */ public class Utils { public static boolean isWindows(){ String OS = System.getProperty("os.name"); return OS.toLowerCase().contains("windows"); } public static List<String> getMvnExecutableNames(){ return isWindows() ? Arrays.asList("mvn.bat", "mvn.cmd") : Arrays.asList("mvn"); } public static boolean isMavenProject(Project project){ File pom = new File(project.getBasePath() , "pom.xml"); return pom.exists(); } @Nullable public static String getFolderLocation(Module module){ ModuleRootManager rootManager = ModuleRootManager.getInstance(module); VirtualFile[] contentRoots = rootManager.getContentRoots(); //TODO check why IntelliJ does return an array here if(contentRoots==null || contentRoots.length==0){ return null; } return new File(contentRoots[0].getCanonicalPath()).getAbsolutePath(); } public static Module getModule(Project project, String folderLocation){ for(Module m : ModuleManager.getInstance(project).getModules()){ if(folderLocation.equals(getFolderLocation(m))){ return m; } } return null; } public static String getFullClassPath(Module m){ String cp = ""; String moduleOutputPath = CompilerPaths.getModuleOutputPath(m,false); if(moduleOutputPath != null && new File(moduleOutputPath).exists()) { cp += moduleOutputPath; } for(VirtualFile vf : OrderEnumerator.orderEntries(m).recursively().getClassesRoots()){ String entry = new File(vf.getPath()).getAbsolutePath(); if(entry.endsWith("!/")){ //not sure why it happens in the returned paths entry = entry.substring(0,entry.length()-2); } if(entry.endsWith("!")){ entry = entry.substring(0,entry.length()-1); } if(entry.endsWith("zip")){ //for some reasons, Java src.zip can end up on dependencies... continue; } if(! new File(entry).exists()){ continue; } if(cp==null || cp.isEmpty()){ cp = entry; } else { cp += File.pathSeparator + entry; } } return cp; } public static boolean compileModule(Project project, AsyncGUINotifier notifier, Module module) { final AtomicBoolean ok = new AtomicBoolean(true); final CountDownLatch latch = new CountDownLatch(1); //Maybe this is not really needed if using Maven plugin? //However, would still be good to have it here to get warning if there are compilation errors ApplicationManager.getApplication().invokeAndWait( () -> CompilerManager.getInstance(project).make(module, (aborted, errors, warnings, compileContext) -> { if (errors > 0) { ok.set(false); } latch.countDown(); }), ModalityState.defaultModalityState()); try { latch.await(); } catch (InterruptedException e) { return true; } if(! ok.get()){ notifier.failed("Compilation failure. Fix the compilation issues before running EvoSuite."); return false; } return true; } }