ComputerLauncher.java 8.3 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;
28
import hudson.model.*;
K
kohsuke 已提交
29
import hudson.remoting.Channel;
30 31 32
import hudson.util.DescriptorList;
import hudson.util.StreamTaskListener;

33
import java.io.*;
34 35 36
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.tools.ant.util.DeweyDecimal;
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, Channel.Listener)}
68 69 70
     * 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}.)
K
Kohsuke Kawaguchi 已提交
71 72 73
     * Also note that the normal return of this method call does not necessarily signify a successful launch.
     * If someone programmatically calls this method and wants to find out if the launch was a success,
     * use {@link SlaveComputer#isOnline()} at the end.
74
     *
75 76 77 78
     * <p>
     * This method must operate synchronously. Asynchrony is provided by {@link Computer#connect(boolean)} and
     * its correct operation depends on this. 
     *
79 80
     * @param listener
     *      The progress of the launch, as well as any error, should be sent to this listener.
K
kohsuke 已提交
81 82 83 84 85
     *
     * @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.
86
     */
87
    public void launch(SlaveComputer computer, TaskListener listener) throws IOException , InterruptedException {
K
kohsuke 已提交
88
        // to remain compatible with the legacy implementation that overrides the old signature
89 90 91 92 93 94 95 96 97 98
        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");
    }
99 100 101

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

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

    /**
     * Allows the {@link ComputerLauncher} to prepare for a disconnect.
K
kohsuke 已提交
125 126
     *
     * <p>
K
kohsuke 已提交
127 128 129 130
     * 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 已提交
131 132 133 134 135
     *
     * <p>
     * Disconnect operation is performed asynchronously, so there's no guarantee
     * that the corresponding {@link SlaveComputer} exists for the duration of the
     * operation.
136
     */
137
    public void beforeDisconnect(SlaveComputer computer, TaskListener listener) {
K
kohsuke 已提交
138
        // to remain compatible with the legacy implementation that overrides the old signature
139 140 141 142 143 144 145
        beforeDisconnect(computer,cast(listener));
    }

    /**
     * @deprecated as of 1.304
     *  Use {@link #beforeDisconnect(SlaveComputer, TaskListener)} 
     */
146 147 148
    public void beforeDisconnect(SlaveComputer computer, StreamTaskListener listener) {
    }

149 150 151 152 153 154
    private StreamTaskListener cast(TaskListener listener) {
        if (listener instanceof StreamTaskListener)
            return (StreamTaskListener) listener;
        return new StreamTaskListener(listener.getLogger());
    }

155 156
    /**
     * All registered {@link ComputerLauncher} implementations.
157 158 159
     *
     * @deprecated as of 1.281
     *      Use {@link Extension} for registration, and use
160
     *      {@link jenkins.model.Jenkins#getDescriptorList(Class)} for read access.
161
     */
162
    public static final DescriptorList<ComputerLauncher> LIST = new DescriptorList<ComputerLauncher>(ComputerLauncher.class);
163 164 165 166 167 168 169 170 171 172 173 174

    /**
     * Given the output of "java -version" in <code>r</code>, determine if this
     * version of Java is supported, or throw {@link IOException}.
     *
     * @param logger
     *            where to log the output
     * @param javaCommand
     *            the command executed, used for logging
     * @param r
     *            the output of "java -version"
     */
J
Jesse Glick 已提交
175
    protected static void checkJavaVersion(final PrintStream logger, String javaCommand,
176 177 178
                                    final BufferedReader r)
            throws IOException {
        String line;
179
        Pattern p = Pattern.compile("(?i)(?:java|openjdk) version \"([0-9.]+).*\"");
180
        while (null != (line = r.readLine())) {
181 182 183
            Matcher m = p.matcher(line);
            if (m.matches()) {
                final String versionStr = m.group(1);
184 185
                logger.println(Messages.ComputerLauncher_JavaVersionResult(javaCommand, versionStr));
                try {
186
                    if (new DeweyDecimal(versionStr).isLessThan(new DeweyDecimal("1.6"))) {
187 188 189
                        throw new IOException(Messages
                                .ComputerLauncher_NoJavaFound(line));
                    }
190
                } catch (NumberFormatException x) {
191 192 193 194 195 196 197 198
                    throw new IOException(Messages.ComputerLauncher_NoJavaFound(line));
                }
                return;
            }
        }
        logger.println(Messages.ComputerLauncher_UknownJavaVersion(javaCommand));
        throw new IOException(Messages.ComputerLauncher_UknownJavaVersion(javaCommand));
    }
199
}