rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/BrwsrMojo.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 09 Sep 2013 06:08:00 +0200
changeset 1271 46e2b4ef85a4
parent 1173 aa82f9de8e33
child 1371 fd2d4ca28bd3
permissions -rw-r--r--
Can mix static pages and generated bck2brwsr.js
     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                 URLClassLoader url = buildClassLoader(classes, prj.getArtifacts());
    83                 httpServer = Launcher.showDir(launcher, directory, url, startpage);
    84             } else {
    85                 URLClassLoader url = buildClassLoader(classes, prj.getArtifacts());
    86                 try {
    87                     for (Resource r : prj.getResources()) {
    88                         File f = new File(r.getDirectory(), startpage().replace('/', File.separatorChar));
    89                         if (f.exists()) {
    90                             System.setProperty("startpage.file", f.getPath());
    91                         }
    92                     }
    93                     
    94                     httpServer = Launcher.showURL(launcher, url, startpage());
    95                 } catch (Exception ex) {
    96                     throw new MojoExecutionException("Can't open " + startpage(), ex);
    97                 }
    98             }
    99             System.in.read();
   100             httpServer.close();
   101         } catch (IOException ex) {
   102             throw new MojoExecutionException("Can't show the browser", ex);
   103         }
   104     }
   105     
   106     private String startpage() {
   107         return startpage;
   108     }
   109 
   110     private static URLClassLoader buildClassLoader(File root, Collection<Artifact> deps) throws MalformedURLException {
   111         List<URL> arr = new ArrayList<URL>();
   112         arr.add(root.toURI().toURL());
   113         for (Artifact a : deps) {
   114             final File f = a.getFile();
   115             if (f != null) {
   116                 arr.add(f.toURI().toURL());
   117             }
   118         }
   119         return new URLClassLoader(arr.toArray(new URL[0]), BrwsrMojo.class.getClassLoader());
   120     }
   121 }