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

hudson.maven.MavenBuildProxy 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.FilePath;
import hudson.model.Result;
import hudson.remoting.Callable;
import hudson.remoting.DelegatingCallable;

import java.io.IOException;
import java.io.Serializable;
import java.util.Calendar;
import java.util.List;

/**
 * Remoting proxy interface for {@link MavenReporter}s to talk to {@link MavenBuild}
 * during the build.
 *
 * @author Kohsuke Kawaguchi
 */
public interface MavenBuildProxy {
    /**
     * Executes the given {@link BuildCallable} on the master, where one
     * has access to {@link MavenBuild} and all the other Hudson objects.
     *
     * 

* The parameter, return value, and exception are all transfered by using * Java serialization. * * @return * the value that {@link BuildCallable} returned. * @throws T * if {@link BuildCallable} throws this exception. * @throws IOException * if the remoting failed. * @throws InterruptedException * if the remote execution is aborted. * @see #executeAsync(BuildCallable) */ V execute( BuildCallable program ) throws T, IOException, InterruptedException; /** * Executes the given {@link BuildCallable} asynchronously on the master. *

* This method works like {@link #execute(BuildCallable)} except that * the method returns immediately and doesn't wait for the completion of the program. *

* The completions of asynchronous executions are accounted for before * the build completes. If they throw exceptions, they'll be reported * and the build will be marked as a failure. */ void executeAsync( BuildCallable program ) throws IOException; /** * Root directory of the build. * * @see MavenBuild#getRootDir() */ FilePath getRootDir(); /** * Root directory of the parent of this build. */ FilePath getProjectRootDir(); /** * Root directory of the owner {@link MavenModuleSet} */ FilePath getModuleSetRootDir(); /** * @see MavenBuild#getArtifactsDir() */ FilePath getArtifactsDir(); /** * @see MavenBuild#setResult(Result) */ void setResult(Result result); /** * @see MavenBuild#getTimestamp() */ Calendar getTimestamp(); /** * # of milliseconds elapsed since {@link #getTimestamp()}. * * Where the clock skew is involved between the master and the Maven JVM, comparing * current time on Maven JVM with {@link #getTimestamp()} could be problematic, * but this value is more robust. */ long getMilliSecsSinceBuildStart(); /** * If true, artifacts will not actually be archived to master. Calls {@link MavenModuleSet#isArchivingDisabled()}. */ boolean isArchivingDisabled(); /** * Nominates that the reporter will contribute a project action * for this build by using {@link MavenReporter#getProjectActions(MavenModule)}. * *

* The specified {@link MavenReporter} object will be transfered to the master * and will become a persisted part of the {@link MavenBuild}. */ void registerAsProjectAction(MavenReporter reporter); /** * Nominates that the reporter will contribute a project action * for this build by using {@link MavenReporter#getProjectActions(MavenModule)}. * *

* The specified {@link MavenReporter} object will be transferred to the master * and will become a persisted part of the {@link MavenBuild}. * * @since 1.372 */ void registerAsProjectAction(MavenProjectActionBuilder builder); /** * Nominates that the reporter will contribute a project action * for this build by using {@link MavenReporter#getAggregatedProjectAction(MavenModuleSet)}. * *

* The specified {@link MavenReporter} object will be transfered to the master * and will become a persisted part of the {@link MavenModuleSetBuild}. */ void registerAsAggregatedProjectAction(MavenReporter reporter); /** * Called at the end of the build to record what mojos are executed. */ void setExecutedMojos(List executedMojos); public interface BuildCallable extends Serializable { /** * Performs computation and returns the result, * or throws some exception. * * @throws InterruptedException * if the processing is interrupted in the middle. Exception will be * propagated to the caller. * @throws IOException * if the program simply wishes to propage the exception, it may throw * {@link IOException}. */ V call(MavenBuild build) throws T, IOException, InterruptedException; } MavenBuildInformation getMavenBuildInformation(); /** * Filter for {@link MavenBuildProxy}. * * Meant to be useful as the base class for other filters. */ /*package*/ static abstract class Filter implements MavenBuildProxy, Serializable { protected final CORE core; protected Filter(CORE core) { this.core = core; } public V execute(BuildCallable program) throws T, IOException, InterruptedException { return core.execute(program); } public void executeAsync(BuildCallable program) throws IOException { core.executeAsync(program); } public FilePath getRootDir() { return core.getRootDir(); } public FilePath getProjectRootDir() { return core.getProjectRootDir(); } public FilePath getModuleSetRootDir() { return core.getModuleSetRootDir(); } public FilePath getArtifactsDir() { return core.getArtifactsDir(); } public void setResult(Result result) { core.setResult(result); } public Calendar getTimestamp() { return core.getTimestamp(); } public long getMilliSecsSinceBuildStart() { return core.getMilliSecsSinceBuildStart(); } public boolean isArchivingDisabled() { return core.isArchivingDisabled(); } public void registerAsProjectAction(MavenReporter reporter) { core.registerAsProjectAction(reporter); } public void registerAsProjectAction(MavenProjectActionBuilder builder) { core.registerAsProjectAction(builder); } public void registerAsAggregatedProjectAction(MavenReporter reporter) { core.registerAsAggregatedProjectAction(reporter); } public void setExecutedMojos(List executedMojos) { core.setExecutedMojos(executedMojos); } private static final long serialVersionUID = 1L; /** * {@link Callable} for invoking {@link BuildCallable} asynchronously. */ protected static final class AsyncInvoker implements DelegatingCallable { private final MavenBuildProxy proxy; private final BuildCallable program; public AsyncInvoker(MavenBuildProxy proxy, BuildCallable program) { this.proxy = proxy; this.program = program; } public ClassLoader getClassLoader() { return program.getClass().getClassLoader(); } public Object call() throws Throwable { // by the time this method is invoked on the master, proxy points to a real object proxy.execute(program); return null; // ignore the result, as there's no point in sending it back } private static final long serialVersionUID = 1L; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy