rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/BrwsrMojo.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 11 Jun 2013 15:11:56 +0200
changeset 1173 aa82f9de8e33
parent 1164 a55680f825fc
child 1271 46e2b4ef85a4
permissions -rw-r--r--
Pass in location of startpage file
     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="brwsr",
    44     requiresDependencyResolution = ResolutionScope.RUNTIME,
    45     defaultPhase=LifecyclePhase.NONE
    46 )
    47 public class BrwsrMojo extends AbstractMojo {
    48     public BrwsrMojo() {
    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     @Parameter(defaultValue="${project}")
    64     private MavenProject prj;
    65     
    66     /** Root of the class files */
    67     @Parameter(defaultValue="${project.build.directory}/classes")
    68     private File classes;
    69     
    70     /** Root of all pages, and files, etc. */
    71     @Parameter
    72     private File directory;
    73 
    74     @Override
    75     public void execute() throws MojoExecutionException {
    76         if (startpage == null) {
    77             throw new MojoExecutionException("You have to provide a start page");
    78         }
    79         try {
    80             Closeable httpServer;
    81             if (directory != null) {
    82                 httpServer = Launcher.showDir(directory, startpage);
    83             } else {
    84                 URLClassLoader url = buildClassLoader(classes, prj.getArtifacts());
    85                 try {
    86                     for (Resource r : prj.getResources()) {
    87                         File f = new File(r.getDirectory(), startpage().replace('/', File.separatorChar));
    88                         if (f.exists()) {
    89                             System.setProperty("startpage.file", f.getPath());
    90                         }
    91                     }
    92                     
    93                     httpServer = Launcher.showURL(launcher, url, startpage());
    94                 } catch (Exception ex) {
    95                     throw new MojoExecutionException("Can't open " + startpage(), ex);
    96                 }
    97             }
    98             System.in.read();
    99             httpServer.close();
   100         } catch (IOException ex) {
   101             throw new MojoExecutionException("Can't show the browser", ex);
   102         }
   103     }
   104     
   105     private String startpage() {
   106         return startpage;
   107     }
   108 
   109     private static URLClassLoader buildClassLoader(File root, Collection<Artifact> deps) throws MalformedURLException {
   110         List<URL> arr = new ArrayList<URL>();
   111         arr.add(root.toURI().toURL());
   112         for (Artifact a : deps) {
   113             final File f = a.getFile();
   114             if (f != null) {
   115                 arr.add(f.toURI().toURL());
   116             }
   117         }
   118         return new URLClassLoader(arr.toArray(new URL[0]), BrwsrMojo.class.getClassLoader());
   119     }
   120 }