rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/ShowMojo.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 09 Jun 2014 09:38:03 +0200
branchclosure
changeset 1615 80e39583b35d
parent 1371 rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/BrwsrMojo.java@fd2d4ca28bd3
child 1787 ea12a3bb4b33
permissions -rw-r--r--
Launching the application from a fully built distrution directory structure
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.mojo;
    19 
    20 import java.io.Closeable;
    21 import org.apache.maven.plugin.AbstractMojo;
    22 
    23 import java.io.File;
    24 import java.io.IOException;
    25 import java.net.MalformedURLException;
    26 import java.net.URL;
    27 import java.net.URLClassLoader;
    28 import java.util.ArrayList;
    29 import java.util.Collection;
    30 import java.util.List;
    31 import org.apache.maven.artifact.Artifact;
    32 import org.apache.maven.model.Resource;
    33 import org.apache.maven.plugin.MojoExecutionException;
    34 import org.apache.maven.plugins.annotations.LifecyclePhase;
    35 import org.apache.maven.plugins.annotations.Mojo;
    36 import org.apache.maven.plugins.annotations.Parameter;
    37 import org.apache.maven.plugins.annotations.ResolutionScope;
    38 import org.apache.maven.project.MavenProject;
    39 import org.apidesign.bck2brwsr.launcher.Launcher;
    40 
    41 /** Executes given HTML page in a browser. */
    42 @Mojo(
    43     name="show",
    44     requiresDependencyResolution = ResolutionScope.RUNTIME,
    45     defaultPhase=LifecyclePhase.NONE
    46 )
    47 public class ShowMojo extends AbstractMojo {
    48     public ShowMojo() {
    49     }
    50     
    51     /** The identification of a launcher to use. Known values <code>fxbrwsr</code>, 
    52      * <code>bck2brwsr</code>, or 
    53      * name of an external process to execute.
    54      */
    55     @Parameter
    56     private String launcher;
    57     
    58     
    59     /** Resource to show as initial page */
    60     @Parameter
    61     private String startpage;
    62 
    63     /** Root of all pages, and files, etc. */
    64     @Parameter
    65     private File directory;
    66     
    67     @Override
    68     public void execute() throws MojoExecutionException {
    69         if (startpage == null) {
    70             throw new MojoExecutionException("You have to provide a start page");
    71         }
    72         if (directory == null) {
    73             throw new MojoExecutionException("You have to provide a root directory");
    74         }
    75         try {
    76             Closeable httpServer;
    77             httpServer = Launcher.showDir(launcher, directory, null, startpage);
    78             System.in.read();
    79             httpServer.close();
    80         } catch (IOException ex) {
    81             throw new MojoExecutionException("Can't show the browser", ex);
    82         }
    83     }
    84 }