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

hudson.maven.MavenReporter Maven / Gradle / Ivy

Go to download

This plug-in provides deep integration of Hudson and Maven. This functionality used to be part of the Hudson core. Now it is a plug-in that is installed by default, but can be disabled.

There is a newer version: 2.2.0
Show newest version
/*
 * The MIT License
 * 
 * Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package hudson.maven;

import hudson.ExtensionPoint;
import hudson.Launcher;
import hudson.model.Action;
import hudson.model.BuildListener;
import hudson.model.Describable;
import hudson.model.Hudson;
import hudson.tasks.BuildStep;
import hudson.tasks.Publisher;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.project.MavenProject;
import org.apache.maven.reporting.MavenReport;

import java.io.IOException;
import java.io.Serializable;
import java.util.Collection;
import java.util.Collections;

/**
 * Listens to the build execution of {@link MavenBuild},
 * and normally records some information and exposes thoses
 * in {@link MavenBuild} later.
 *
 * 

* {@link MavenReporter} is first instanciated on the master. * Then during the build, it is serialized and sent over into * the maven process by serialization. Reporters will then receive * event callbacks as mojo execution progresses. Those event callbacks * are the ones that take {@link MavenBuildProxy}. * *

* Once the maven build completes normally or abnormally, the reporters * will be sent back to the master by serialization again, then * have its {@link #end(MavenBuild, Launcher, BuildListener)} method invoked. * This is a good opportunity to perform the post-build action. * *

* This is the {@link MavenBuild} equivalent of {@link BuildStep}. Instances * of {@link MavenReporter}s are persisted with {@link MavenModule}/{@link MavenModuleSet}, * possibly with configuration specific to that job. * * *

Callback Firing Sequence

*

* The callback methods are invoked in the following order: * *

 * SEQUENCE := preBuild MODULE* postBuild end
 * MODULE   := enterModule MOJO+ leaveModule
 * MOJO     := preExecute postExecute
 * 
* *

* When an error happens, the call sequence could be terminated at any point * and no further callback methods may be invoked. * * *

Action

*

* {@link MavenReporter} can {@link MavenBuild#addAction(Action) contribute} * {@link Action} to {@link MavenBuild} so that the report can be displayed * in the web UI. * *

* Such action can also implement {@link AggregatableAction} if it further * wishes to contribute a separate action to {@link MavenModuleSetBuild}. * This mechanism is usually used to provide aggregated report for all the * module builds. * * @author Kohsuke Kawaguchi * @see MavenReporters */ public abstract class MavenReporter implements Describable, ExtensionPoint, Serializable, MavenProjectActionBuilder { /** * Called before the actual maven2 execution begins. * * @param pom * Represents the POM to be executed. * @return * true if the build can continue, false if there was an error * and the build needs to be aborted. * @throws InterruptedException * If the build is interrupted by the user (in an attempt to abort the build.) * Normally the {@link MavenReporter} implementations may simply forward the exception * it got from its lower-level functions. * @throws IOException * If the implementation wants to abort the processing when an {@link IOException} * happens, it can simply propagate the exception to the caller. This will cause * the build to fail, with the default error message. * Implementations are encouraged to catch {@link IOException} on its own to * provide a better error message, if it can do so, so that users have better * understanding on why it failed. */ public boolean preBuild(MavenBuildProxy build, MavenProject pom, BuildListener listener) throws InterruptedException, IOException { return true; } /** * Called when the build enters a next {@link MavenProject}. * *

* When the current build is a multi-module reactor build, every time the build * moves on to the next module, this method will be invoked. * *

* Note that as of Maven 2.0.4, Maven does not perform any smart optimization * on the order of goal executions. Therefore, the same module might be entered more than * once during the build. * * @return * See {@link #preBuild} * @throws InterruptedException * See {@link #preBuild} * @throws IOException * See {@link #preBuild} */ public boolean enterModule(MavenBuildProxy build, MavenProject pom, BuildListener listener) throws InterruptedException, IOException { return true; } /** * Called when the build leaves the current {@link MavenProject}. * * @see #enterModule */ public boolean leaveModule(MavenBuildProxy build, MavenProject pom, BuildListener listener) throws InterruptedException, IOException { return true; } /** * Called before execution of a single mojo. * *

* When this method is invoked, {@link MojoInfo#mojo} is fully injected with its configuration values. * * @return * See {@link #preBuild} * @throws InterruptedException * See {@link #preBuild} * @throws IOException * See {@link #preBuild} */ public boolean preExecute(MavenBuildProxy build, MavenProject pom, MojoInfo mojo, BuildListener listener) throws InterruptedException, IOException { return true; } /** * Called after execution of a single mojo. *

* See {@link #preExecute} for the contract. * * @param error * If mojo execution failed with {@link MojoFailureException} or * {@link MojoExecutionException}, this method is still invoked * with those error objects. * If mojo executed successfully, this parameter is null. */ public boolean postExecute(MavenBuildProxy build, MavenProject pom, MojoInfo mojo, BuildListener listener, Throwable error) throws InterruptedException, IOException { return true; } /** * Called after a build of one maven2 module is completed. * *

* Note that at this point the build result is still not determined. * * @return * See {@link #preBuild} * @throws InterruptedException * See {@link #preBuild} * @throws IOException * See {@link #preBuild} */ public boolean postBuild(MavenBuildProxy build, MavenProject pom, BuildListener listener) throws InterruptedException, IOException { return true; } /** * Called after the maven execution finished and the result is determined. * *

* This method fires after {@link #postBuild(MavenBuildProxy, MavenProject, BuildListener)}. * Works like {@link Publisher#perform(Build, Launcher, BuildListener)}. */ public boolean end(MavenBuild build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException { return true; } /** * Called after a {@link MavenReport} is successfully generated. * *

* {@link MavenReport} is an execution unit inside the Maven site plugin mojos, * such as site:generate. These are what's configured through * <reporting> tag inside POM, although there's normally more * {@link MavenReport}s than what's specified explicitly, due to defaulting * and inheritance and all the other Maven processing. * *

* This provides an opportunity for * plugins to auto-perform some action when a certain reporting is generated. * *

* This method is invoked during the execution of site mojos, between its * {@link #preExecute(MavenBuildProxy, MavenProject, MojoInfo, BuildListener)} * and {@link #postExecute(MavenBuildProxy, MavenProject, MojoInfo, BuildListener, Throwable)} * * @return * See {@link #preBuild} * @throws InterruptedException * See {@link #preBuild} * @throws IOException * See {@link #preBuild} * @since 1.237 */ public boolean reportGenerated(MavenBuildProxy build, MavenProject pom, MavenReportInfo report, BuildListener listener) throws InterruptedException, IOException { return true; } /** * Equivalent of {@link BuildStep#getProjectAction(AbstractProject)} * for {@link MavenReporter}. * *

* Registers a transient action to {@link MavenModule} when it's rendered. * This is useful if you'd like to display an action at the module level. * *

* Since this contributes a transient action, the returned {@link Action} * will not be serialized. * *

* For this method to be invoked, your {@link MavenReporter} has to invoke * {@link MavenBuildProxy#registerAsProjectAction(MavenReporter)} during the build. * * @return * null not to contribute an action, which is the default. * @deprecated as of 1.341 * Use {@link #getProjectActions(MavenModule)} instead. */ public Action getProjectAction(MavenModule module) { return null; } /** * Equivalent of {@link BuildStep#getProjectActions(AbstractProject)} * for {@link MavenReporter}. * *

* Registers a transient action to {@link MavenModule} when it's rendered. * This is useful if you'd like to display an action at the module level. * *

* Since this contributes a transient action, the returned {@link Action} * will not be serialized. * *

* For this method to be invoked, your {@link MavenReporter} has to invoke * {@link MavenBuildProxy#registerAsProjectAction(MavenReporter)} during the build. * * @return * can be empty but never null. * @since 1.341 */ public Collection getProjectActions(MavenModule module) { // delegate to getProjectAction (singular) for backward compatible behavior Action a = getProjectAction(module); if (a==null) return Collections.emptyList(); return Collections.singletonList(a); } /** * Works like {@link #getProjectAction(MavenModule)} but * works at {@link MavenModuleSet} level. * *

* For this method to be invoked, your {@link MavenReporter} has to invoke * {@link MavenBuildProxy#registerAsAggregatedProjectAction(MavenReporter)} during the build. * * @return * null not to contribute an action, which is the default. */ public Action getAggregatedProjectAction(MavenModuleSet project) { return null; } public MavenReporterDescriptor getDescriptor() { return (MavenReporterDescriptor)Hudson.getInstance().getDescriptorOrDie(getClass()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy