From e701da7cfa728290aabd90b36fb40b5f7ea78dcd Mon Sep 17 00:00:00 2001 From: kohsuke Date: Sun, 8 Feb 2009 06:28:27 +0000 Subject: [PATCH] Added a discovery support by listening to UDP. git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@15122 71c3de6d-444a-0410-be80-ed276b4c234a --- .../main/java/hudson/UDPBroadcastThread.java | 100 ++++++++++++++++++ core/src/main/java/hudson/model/Hudson.java | 7 ++ .../java/hudson/UDPBroadcastThreadTest.java | 34 ++++++ 3 files changed, 141 insertions(+) create mode 100644 core/src/main/java/hudson/UDPBroadcastThread.java create mode 100644 test/src/test/java/hudson/UDPBroadcastThreadTest.java diff --git a/core/src/main/java/hudson/UDPBroadcastThread.java b/core/src/main/java/hudson/UDPBroadcastThread.java new file mode 100644 index 0000000000..155d0af045 --- /dev/null +++ b/core/src/main/java/hudson/UDPBroadcastThread.java @@ -0,0 +1,100 @@ +/* + * The MIT License + * + * Copyright (c) 2004-2009, Sun Microsystems, Inc. + * + * 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; + +import hudson.model.Hudson; + +import java.io.IOException; +import java.net.InetSocketAddress; +import java.net.SocketAddress; +import java.nio.ByteBuffer; +import java.nio.channels.ClosedByInterruptException; +import java.nio.channels.DatagramChannel; +import java.util.logging.Level; +import java.util.logging.Logger; + +/** + * Monitors a UDP broadcast and respond with the location of the Hudson service. + * + *

+ * Useful for auto-discovery of Hudson in the network. + * + * @author Kohsuke Kawaguchi + */ +public class UDPBroadcastThread extends Thread { + private final Hudson hudson; + public UDPBroadcastThread(Hudson hudson) { + super("Hudson UDP "+PORT+" monitoring thread"); + this.hudson = hudson; + } + + @Override + public void run() { + try { + DatagramChannel ch = DatagramChannel.open(); + try { + ch.socket().bind(new InetSocketAddress(PORT)); + + ByteBuffer b = ByteBuffer.allocate(2048); + while(true) { + // the only thing that matters here is who sent it, not what was sent. + SocketAddress sender = ch.receive(b); + + // prepare a response + TcpSlaveAgentListener tal = hudson.getTcpSlaveAgentListener(); + + StringBuilder buf = new StringBuilder(""); + tag(buf,"version",Hudson.VERSION); + tag(buf,"url",hudson.getRootUrl()); + tag(buf,"slave-port",tal==null?null:tal.getPort()); + buf.append(""); + + b.clear(); + b.put(buf.toString().getBytes("UTF-8")); + b.flip(); + ch.send(b, sender); + } + } finally { + ch.close(); + } + } catch (ClosedByInterruptException e) { + // shut down + } catch (IOException e) { + LOGGER.log(Level.WARNING, "UDP handling problem",e); + } + } + + private void tag(StringBuilder buf, String tag, Object value) { + if(value==null) return; + buf.append('<').append(tag).append('>').append(value).append("'); + } + + public void shutdown() { + interrupt(); + } + + public static final int PORT = Integer.getInteger("hudson.udp",33848); + + private static final Logger LOGGER = Logger.getLogger(UDPBroadcastThread.class.getName()); +} diff --git a/core/src/main/java/hudson/model/Hudson.java b/core/src/main/java/hudson/model/Hudson.java index 8c2379e6bc..2d36dcada3 100644 --- a/core/src/main/java/hudson/model/Hudson.java +++ b/core/src/main/java/hudson/model/Hudson.java @@ -39,6 +39,7 @@ import hudson.Util; import static hudson.Util.fixEmpty; import hudson.WebAppMain; import hudson.XmlFile; +import hudson.UDPBroadcastThread; import hudson.logging.LogRecorderManager; import hudson.lifecycle.WindowsInstallerLink; import hudson.lifecycle.Lifecycle; @@ -330,6 +331,8 @@ public final class Hudson extends AbstractModelObject implements ItemGroup