From 8353a5289448eabf74f5f2249c21281d90a5dce4 Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Sun, 31 Jul 2011 19:10:18 +0200 Subject: [PATCH] open browser after starting jetty --- .../sonia/scm/maven/OpenBrowserListener.java | 164 ++++++++++++++++++ .../main/java/sonia/scm/maven/RunMojo.java | 13 ++ 2 files changed, 177 insertions(+) create mode 100644 maven/scm-maven-plugin/src/main/java/sonia/scm/maven/OpenBrowserListener.java diff --git a/maven/scm-maven-plugin/src/main/java/sonia/scm/maven/OpenBrowserListener.java b/maven/scm-maven-plugin/src/main/java/sonia/scm/maven/OpenBrowserListener.java new file mode 100644 index 0000000000..a726775a02 --- /dev/null +++ b/maven/scm-maven-plugin/src/main/java/sonia/scm/maven/OpenBrowserListener.java @@ -0,0 +1,164 @@ +/** + * Copyright (c) 2010, Sebastian Sdorra + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of SCM-Manager; nor the names of its + * contributors may be used to endorse or promote products derived from this + * software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * http://bitbucket.org/sdorra/scm-manager + * + */ + + + +package sonia.scm.maven; + +//~--- non-JDK imports -------------------------------------------------------- + +import org.apache.maven.plugin.logging.Log; + +import org.eclipse.jetty.util.component.LifeCycle; +import org.eclipse.jetty.util.component.LifeCycle.Listener; + +//~--- JDK imports ------------------------------------------------------------ + +import java.awt.Desktop; + +import java.net.URI; + +/** + * + * @author Sebastian Sdorra + */ +public class OpenBrowserListener implements Listener +{ + + /** + * Constructs ... + * + * + * @param log + * @param port + * @param contextPath + */ + public OpenBrowserListener(Log log, int port, String contextPath) + { + this.log = log; + this.port = port; + this.contextPath = contextPath; + } + + //~--- methods -------------------------------------------------------------- + + /** + * Method description + * + * + * @param event + * @param cause + */ + @Override + public void lifeCycleFailure(LifeCycle event, Throwable cause) + { + + // do nothing + } + + /** + * Method description + * + * + * @param event + */ + @Override + public void lifeCycleStarted(LifeCycle event) + { + new Thread(new Runnable() + { + @Override + public void run() + { + try + { + Desktop desktop = Desktop.getDesktop(); + + desktop.browse(new URI("http://localhost:" + port + contextPath)); + } + catch (Exception ex) + { + log.warn(ex); + } + } + }).start(); + } + + /** + * Method description + * + * + * @param event + */ + @Override + public void lifeCycleStarting(LifeCycle event) + { + + // do nothing + } + + /** + * Method description + * + * + * @param event + */ + @Override + public void lifeCycleStopped(LifeCycle event) + { + + // do nothing + } + + /** + * Method description + * + * + * @param event + */ + @Override + public void lifeCycleStopping(LifeCycle event) + { + + // do nothing + } + + //~--- fields --------------------------------------------------------------- + + /** Field description */ + private String contextPath; + + /** Field description */ + private Log log; + + /** Field description */ + private int port; +} diff --git a/maven/scm-maven-plugin/src/main/java/sonia/scm/maven/RunMojo.java b/maven/scm-maven-plugin/src/main/java/sonia/scm/maven/RunMojo.java index a34f411c7a..d626c3419c 100644 --- a/maven/scm-maven-plugin/src/main/java/sonia/scm/maven/RunMojo.java +++ b/maven/scm-maven-plugin/src/main/java/sonia/scm/maven/RunMojo.java @@ -44,6 +44,8 @@ import org.eclipse.jetty.webapp.WebAppContext; //~--- JDK imports ------------------------------------------------------------ +import java.awt.Desktop; + import java.io.File; import java.util.List; @@ -144,6 +146,12 @@ public class RunMojo extends AbstractBaseScmMojo Server server = new Server(); SelectChannelConnector connector = new SelectChannelConnector(); + if (startBrowser && Desktop.isDesktopSupported()) + { + connector.addLifeCycleListener(new OpenBrowserListener(getLog(), port, + contextPath)); + } + connector.setPort(port); server.addConnector(connector); @@ -173,4 +181,9 @@ public class RunMojo extends AbstractBaseScmMojo * @parameter */ private int port = 8081; + + /** + * @parameter expression="${startBrowser}" default-value="true" + */ + private boolean startBrowser = true; }