All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jacoco.maven.InstrumentMojo Maven / Gradle / Ivy

Go to download

The JaCoCo Maven Plugin provides the JaCoCo runtime agent to your tests and allows basic report creation.

There is a newer version: 0.8.12
Show newest version
/*******************************************************************************
 * Copyright (c) 2009, 2019 Mountainminds GmbH & Co. KG and Contributors
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Evgeny Mandrikov - initial API and implementation
 *
 *******************************************************************************/
package org.jacoco.maven;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.List;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.codehaus.plexus.util.FileUtils;
import org.codehaus.plexus.util.IOUtil;
import org.jacoco.core.instr.Instrumenter;
import org.jacoco.core.runtime.OfflineInstrumentationAccessGenerator;

/**
 * Performs offline instrumentation. Note that after execution of test you must
 * restore original classes with help of "restore-instrumented-classes" goal.
 * 

* Warning: The preferred way for code coverage analysis with * JaCoCo is on-the-fly instrumentation. Offline instrumentation has several * drawbacks and should only be used if a specific scenario explicitly requires * this mode. Please consult documentation about * offline instrumentation before using this mode. *

* * @since 0.6.2 */ @Mojo(name = "instrument", defaultPhase = LifecyclePhase.PROCESS_CLASSES, threadSafe = true) public class InstrumentMojo extends AbstractJacocoMojo { /** * A list of class files to include in instrumentation. May use wildcard * characters (* and ?). When not specified everything will be included. */ @Parameter private List includes; /** * A list of class files to exclude from instrumentation. May use wildcard * characters (* and ?). When not specified nothing will be excluded. */ @Parameter private List excludes; @Override public void executeMojo() throws MojoExecutionException, MojoFailureException { final File originalClassesDir = new File(getProject().getBuild() .getDirectory(), "generated-classes/jacoco"); originalClassesDir.mkdirs(); final File classesDir = new File( getProject().getBuild().getOutputDirectory()); if (!classesDir.exists()) { getLog().info( "Skipping JaCoCo execution due to missing classes directory:" + classesDir); return; } final List fileNames; try { fileNames = new FileFilter(includes, excludes) .getFileNames(classesDir); } catch (final IOException e1) { throw new MojoExecutionException( "Unable to get list of files to instrument.", e1); } final Instrumenter instrumenter = new Instrumenter( new OfflineInstrumentationAccessGenerator()); for (final String fileName : fileNames) { if (fileName.endsWith(".class")) { final File source = new File(classesDir, fileName); final File backup = new File(originalClassesDir, fileName); InputStream input = null; OutputStream output = null; try { FileUtils.copyFile(source, backup); input = new FileInputStream(backup); output = new FileOutputStream(source); instrumenter.instrument(input, output, source.getPath()); } catch (final IOException e2) { throw new MojoExecutionException( "Unable to instrument file.", e2); } finally { IOUtil.close(input); IOUtil.close(output); } } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy