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

com.atlassian.maven.plugin.clover.CloverAggregateMojo Maven / Gradle / Ivy

package com.atlassian.maven.plugin.clover;

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.
 */

import com.atlassian.maven.plugin.clover.internal.AbstractCloverMojo;
import com.atlassian.clover.CloverMerge;
import com.atlassian.clover.cfg.Interval;
import com.google.common.collect.Iterables;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.project.MavenProject;

import java.io.File;
import java.util.ArrayList;
import java.util.List;

/**
 * Aggregate children module Clover databases if there are any. This mojo should not exist. It's only there because
 * the site plugin doesn't handle @aggregators properly at the moment...
 *
 * @goal aggregate
 * @aggregator
 */
public class CloverAggregateMojo extends AbstractCloverMojo {
    /**
     * Time span that will be used when generating aggregated database. Check
     * http://openclover.org/doc/manual/4.2.0/ant--using-spans.html and
     * http://openclover.org/doc/manual/4.2.0/ant--clover-merge.html
     *
     * @parameter expression="${maven.clover.span}"
     */
    private String span = Interval.DEFAULT_SPAN.toString();

    /**
     * {@inheritDoc}
     *
     * @see com.atlassian.maven.plugin.clover.internal.AbstractCloverMojo#execute()
     */
    public void execute() throws MojoExecutionException {
        if (skip) {
            getLog().debug("Skipping clover aggregate.");
            return;
        }

        // If we're in a module with children modules, then aggregate the children clover databases.
        if (getProject().getModules() != null && getProject().getModules().size() > 0) {
            super.execute();
            getLog().debug("Project " + getProject().getId() + " (" + getProject().getBasedir()
                    + ") has " + getProject().getModules().size() + " child modules");

            // Ensure all databases are flushed
            AbstractCloverMojo.waitForFlush(getWaitForFlush(), getFlushInterval());

            final List childrenDatabases = getChildrenCloverDatabases();
            if (childrenDatabases.size() > 0) {
                // Ensure the merged database output directory exists
                new File(getCloverMergeDatabase()).getParentFile().mkdirs();

                // Merge the databases
                mergeCloverDatabases(childrenDatabases);
            } else {
                getLog().warn("No Clover databases found in children projects, no merge done. Run a build with debug logging for more details.");
            }
        }
    }

    private List getChildrenCloverDatabases() {
        // Ideally we'd need to find out where each module stores its Clover
        // database. However that's not
        // currently possible in m2 (see
        // http://jira.codehaus.org/browse/MNG-2180). Thus we'll assume for now
        // that all modules use the cloverDatabase configuration from the top
        // level module.

        // Find out the location of the clover DB relative to the root module.
        // Note: This is a pretty buggy algorithm and we really need a proper
        // solution (see MNG-2180)
        final String resolvedCloverDb = resolveCloverDatabase();
        final String projectBaseDir = getProject().getBasedir().getPath();
        getLog().debug("Calculating relative database path of '" + resolvedCloverDb
                + "' against the project base directory '" + projectBaseDir + "'");
        final String relativeCloverDatabasePath = resolvedCloverDb.substring(projectBaseDir.length());
        getLog().debug("Relative path is '" + relativeCloverDatabasePath + "'");
        final List dbFiles = new ArrayList();
        final List projects = getDescendantModuleProjects(getProject());

        for (MavenProject childProject : projects) {
            getLog().debug("Looking for Clover database for module " + childProject.getId() + " (" + childProject.getBasedir() + ")");
            final File cloverDb = new File(childProject.getBasedir(), relativeCloverDatabasePath);
            if (cloverDb.exists()) {
                getLog().debug("Database found at " + cloverDb.getAbsolutePath() + " . Adding for merge.");
                dbFiles.add(cloverDb.getPath());
            } else {
                getLog().debug("No database at " + cloverDb.getAbsolutePath());
            }
        }

        return dbFiles;
    }

    private void mergeCloverDatabases(final List dbFiles) throws MojoExecutionException {
        final List parameters = new ArrayList();

        parameters.add("-s");
        parameters.add(span);

        parameters.add("-i");
        parameters.add(getCloverMergeDatabase());

        if (getLog().isDebugEnabled()) {
            parameters.add("-d");
        }

        parameters.addAll(dbFiles);

        int mergeResult = CloverMerge.mainImpl(Iterables.toArray(parameters, String.class));
        if (mergeResult != 0) {
            throw new MojoExecutionException("Clover has failed to merge the children module databases");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy