提交 f3ddb285 编写于 作者: W wolfgarnet

[JENKINS-14178] Adding SCM poll listener

上级 182f7bee
......@@ -51,6 +51,7 @@ import hudson.model.Queue.WaitingItem;
import hudson.model.RunMap.Constructor;
import hudson.model.labels.LabelAtom;
import hudson.model.labels.LabelExpression;
import hudson.model.listeners.SCMPollListener;
import hudson.model.queue.CauseOfBlockage;
import hudson.model.queue.SubTaskContributor;
import hudson.scm.ChangeLogSet;
......@@ -1317,6 +1318,11 @@ public abstract class AbstractProject<P extends AbstractProject<P,R>,R extends A
}
try {
try {
SCMPollListener.fireBeforePolling(this, listener);
} catch( Exception e ) {
/* Make sure, that the listeners do not have any impact on the actual poll */
}
if (scm.requiresWorkspaceForPolling()) {
// lock the workspace of the last build
FilePath ws=lb.getWorkspace();
......@@ -1382,6 +1388,13 @@ public abstract class AbstractProject<P extends AbstractProject<P,R>,R extends A
} catch (InterruptedException e) {
e.printStackTrace(listener.fatalError(Messages.AbstractProject_PollingABorted()));
return NO_CHANGES;
} finally {
/* Do this no matter what */
try {
SCMPollListener.fireAfterPolling(this, listener);
} catch( Exception e ) {
/* Make sure, that the listeners do not have any impact on the actual poll */
}
}
}
......
/*
* The MIT License
*
* Copyright (c) 2011, Christian Wolfgang
*
* 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.model.listeners;
import hudson.ExtensionList;
import hudson.ExtensionPoint;
import jenkins.model.Jenkins;
import hudson.model.AbstractProject;
import hudson.model.TaskListener;
public abstract class SCMPollListener implements ExtensionPoint {
public void onBeforePolling( AbstractProject<?, ?> project, TaskListener listener ) {}
public void onAfterPolling( AbstractProject<?, ?> project, TaskListener listener ) {}
public static void fireBeforePolling( AbstractProject<?, ?> project, TaskListener listener ) {
for( SCMPollListener l : all() ) {
l.onBeforePolling( project, listener );
}
}
public static void fireAfterPolling( AbstractProject<?, ?> project, TaskListener listener ) {
for( SCMPollListener l : all() ) {
l.onAfterPolling( project, listener );
}
}
/**
* Returns all the registered {@link SCMPollListener}s.
*/
public static ExtensionList<SCMPollListener> all() {
return Jenkins.getInstance().getExtensionList( SCMPollListener.class );
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册