提交 d67f4c5f 编写于 作者: K Kohsuke Kawaguchi

doc improvement

上级 f10b5eb4
...@@ -218,7 +218,8 @@ public class MatrixBuild extends AbstractBuild<MatrixProject,MatrixBuild> { ...@@ -218,7 +218,8 @@ public class MatrixBuild extends AbstractBuild<MatrixProject,MatrixBuild> {
Collection<MatrixConfiguration> touchStoneConfigurations = new HashSet<MatrixConfiguration>(); Collection<MatrixConfiguration> touchStoneConfigurations = new HashSet<MatrixConfiguration>();
Collection<MatrixConfiguration> delayedConfigurations = new HashSet<MatrixConfiguration>(); Collection<MatrixConfiguration> delayedConfigurations = new HashSet<MatrixConfiguration>();
for (MatrixConfiguration c: activeConfigurations) { for (MatrixConfiguration c: activeConfigurations) {
if (!MatrixBuildListener.buildConfiguration(MatrixBuild.this, c)) continue; if (!MatrixBuildListener.buildConfiguration(MatrixBuild.this, c))
continue; // skip rebuild
if (touchStoneFilter != null && c.getCombination().evalGroovyExpression(p.getAxes(), p.getTouchStoneCombinationFilter())) { if (touchStoneFilter != null && c.getCombination().evalGroovyExpression(p.getAxes(), p.getTouchStoneCombinationFilter())) {
touchStoneConfigurations.add(c); touchStoneConfigurations.add(c);
} else { } else {
......
package hudson.matrix.listeners; /*
* The MIT License
import hudson.ExtensionList; *
import hudson.ExtensionPoint; * Copyright (c) 2011, Christian Wolfgang
import hudson.matrix.MatrixConfiguration; *
import hudson.matrix.MatrixBuild; * Permission is hereby granted, free of charge, to any person obtaining a copy
import hudson.model.Hudson; * of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
public abstract class MatrixBuildListener implements ExtensionPoint { * 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:
* Determine whether to build a given configuration or not *
* @param b * The above copyright notice and this permission notice shall be included in
* @param c * all copies or substantial portions of the Software.
* @return *
*/ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
public boolean doBuildConfiguration(MatrixBuild b, MatrixConfiguration c){return true;} * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
public static boolean buildConfiguration(MatrixBuild b, MatrixConfiguration c) { * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
for (MatrixBuildListener l : all()) { * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
if(!l.doBuildConfiguration(b, c)) { * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
return false; * THE SOFTWARE.
} */
package hudson.matrix.listeners;
}
import hudson.ExtensionList;
return true; import hudson.ExtensionPoint;
} import hudson.matrix.MatrixConfiguration;
import hudson.matrix.MatrixBuild;
/** import hudson.matrix.MatrixRun;
* Returns all the registered {@link MatrixBuildListener} descriptors. import hudson.model.Action;
*/ import hudson.model.Hudson;
public static ExtensionList<MatrixBuildListener> all() { import hudson.model.Queue;
return Hudson.getInstance().getExtensionList(MatrixBuildListener.class); import hudson.model.Queue.Task;
}
} import java.util.List;
/**
* Controls which subset of {@link MatrixRun}s to rebuild.
*
* <p>
* Plugins can implement this extension point to filter out the subset of matrix project to build.
* Most typically, such a plugin would add a custom {@link Action} to a build when it goes to the queue
* ({@link Queue#schedule(Task, int, List)}, then access this from {@link MatrixBuild} to drive
* the filtering logic.
*
* <p>
* See the matrix reloaded plugin for an example.
*
* @author Christian Wolfgang
* @since 1.413
*/
public abstract class MatrixBuildListener implements ExtensionPoint {
/**
* Determine whether to build a given configuration or not
*
* @param b
* Never null. The umbrella build.
* @param c
* The configuration whose build is being considered. If any of the {@link MatrixBuildListener}
* returns false, then the build for this configuration is skipped, and the previous build
* of this configuration will be taken as the default result.
* @return
* True to let the build happen, false to skip it.
*/
public abstract boolean doBuildConfiguration(MatrixBuild b, MatrixConfiguration c);
public static boolean buildConfiguration(MatrixBuild b, MatrixConfiguration c) {
for (MatrixBuildListener l : all()) {
if(!l.doBuildConfiguration(b, c)) {
return false;
}
}
return true;
}
/**
* Returns all the registered {@link MatrixBuildListener} descriptors.
*/
public static ExtensionList<MatrixBuildListener> all() {
return Hudson.getInstance().getExtensionList(MatrixBuildListener.class);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册