ComputerLauncher.java 6.4 KB
Newer Older
K
kohsuke 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * The MIT License
 * 
 * Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Stephen Connolly
 * 
 * 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.
 */
24 25 26
package hudson.slaves;

import hudson.ExtensionPoint;
27
import hudson.Extension;
S
sogabe 已提交
28 29 30 31
import hudson.model.AbstractDescribableImpl;
import hudson.model.Computer;
import hudson.model.Hudson;
import hudson.model.TaskListener;
K
kohsuke 已提交
32
import hudson.remoting.Channel;
33 34 35
import hudson.util.DescriptorList;
import hudson.util.StreamTaskListener;

K
kohsuke 已提交
36
import java.io.IOException;
37 38 39 40 41

/**
 * Extension point to allow control over how {@link Computer}s are "launched",
 * meaning how they get connected to their slave agent program.
 *
K
kohsuke 已提交
42 43 44 45 46 47 48 49
 * <h2>Associated View</h2>
 * <dl>
 * <dt>main.jelly</dt>
 * <dd>
 * This page will be rendered into the top page of the computer (/computer/NAME/)
 * Useful for showing launch related commands and status reports.
 * </dl>
 *
50 51
 * @author Stephen Connolly
 * @since 24-Apr-2008 22:12:35
52
 * @see ComputerConnector
53
 */
K
kohsuke 已提交
54
public abstract class ComputerLauncher extends AbstractDescribableImpl<ComputerLauncher> implements ExtensionPoint {
55 56 57 58 59 60 61 62 63 64 65 66
    /**
     * Returns true if this {@link ComputerLauncher} supports
     * programatic launch of the slave agent in the target {@link Computer}.
     */
    public boolean isLaunchSupported() {
        return true;
    }

    /**
     * Launches the slave agent for the given {@link Computer}.
     *
     * <p>
67
     * If the slave agent is launched successfully, {@link SlaveComputer#setChannel(InputStream, OutputStream, TaskListener, Listener)}
68 69 70 71
     * should be invoked in the end to notify Hudson of the established connection.
     * The operation could also fail, in which case there's no need to make any callback notification,
     * (except to notify the user of the failure through {@link StreamTaskListener}.)
     *
72 73 74 75
     * <p>
     * This method must operate synchronously. Asynchrony is provided by {@link Computer#connect(boolean)} and
     * its correct operation depends on this. 
     *
76 77
     * @param listener
     *      The progress of the launch, as well as any error, should be sent to this listener.
K
kohsuke 已提交
78 79 80 81 82
     *
     * @throws IOException
     *      if the method throws an {@link IOException} or {@link InterruptedException}, the launch was considered
     *      a failure and the stack trace is reported into the listener. This handling is just so that the implementation
     *      of this method doesn't have to dilligently catch those exceptions.
83
     */
84
    public void launch(SlaveComputer computer, TaskListener listener) throws IOException , InterruptedException {
K
kohsuke 已提交
85
        // to remain compatible with the legacy implementation that overrides the old signature
86 87 88 89 90 91 92 93 94 95
        launch(computer,cast(listener));
    }

    /**
     * @deprecated as of 1.304
     *  Use {@link #launch(SlaveComputer, TaskListener)}
     */
    public void launch(SlaveComputer computer, StreamTaskListener listener) throws IOException , InterruptedException {
        throw new UnsupportedOperationException(getClass()+" must implement the launch method");
    }
96 97 98

    /**
     * Allows the {@link ComputerLauncher} to tidy-up after a disconnect.
K
kohsuke 已提交
99 100 101
     *
     * <p>
     * This method is invoked after the {@link Channel} to this computer is terminated.
K
kohsuke 已提交
102 103 104 105 106
     *
     * <p>
     * Disconnect operation is performed asynchronously, so there's no guarantee
     * that the corresponding {@link SlaveComputer} exists for the duration of the
     * operation.
107
     */
108
    public void afterDisconnect(SlaveComputer computer, TaskListener listener) {
K
kohsuke 已提交
109
        // to remain compatible with the legacy implementation that overrides the old signature
110 111 112 113 114 115 116
        afterDisconnect(computer,cast(listener));
    }

    /**
     * @deprecated as of 1.304
     *  Use {@link #afterDisconnect(SlaveComputer, TaskListener)}
     */
117 118 119 120 121
    public void afterDisconnect(SlaveComputer computer, StreamTaskListener listener) {
    }

    /**
     * Allows the {@link ComputerLauncher} to prepare for a disconnect.
K
kohsuke 已提交
122 123
     *
     * <p>
K
kohsuke 已提交
124 125 126 127
     * This method is invoked before the {@link Channel} to this computer is terminated,
     * thus the channel is still accessible from {@link SlaveComputer#getChannel()}.
     * If the channel is terminated unexpectedly, this method will not be invoked,
     * as the channel is already gone.
K
kohsuke 已提交
128 129 130 131 132
     *
     * <p>
     * Disconnect operation is performed asynchronously, so there's no guarantee
     * that the corresponding {@link SlaveComputer} exists for the duration of the
     * operation.
133
     */
134
    public void beforeDisconnect(SlaveComputer computer, TaskListener listener) {
K
kohsuke 已提交
135
        // to remain compatible with the legacy implementation that overrides the old signature
136 137 138 139 140 141 142
        beforeDisconnect(computer,cast(listener));
    }

    /**
     * @deprecated as of 1.304
     *  Use {@link #beforeDisconnect(SlaveComputer, TaskListener)} 
     */
143 144 145
    public void beforeDisconnect(SlaveComputer computer, StreamTaskListener listener) {
    }

146 147 148 149 150 151
    private StreamTaskListener cast(TaskListener listener) {
        if (listener instanceof StreamTaskListener)
            return (StreamTaskListener) listener;
        return new StreamTaskListener(listener.getLogger());
    }

152 153
    /**
     * All registered {@link ComputerLauncher} implementations.
154 155 156 157
     *
     * @deprecated as of 1.281
     *      Use {@link Extension} for registration, and use
     *      {@link Hudson#getDescriptorList(Class)} for read access.
158
     */
159
    public static final DescriptorList<ComputerLauncher> LIST = new DescriptorList<ComputerLauncher>(ComputerLauncher.class);
160
}