rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/BrswrMojo.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Feb 2013 16:54:16 +0100
changeset 772 d382dacfd73f
parent 726 mojo/src/main/java/org/apidesign/bck2brwsr/mojo/BrswrMojo.java@013f06feb50f
child 1043 bd80952bfd11
permissions -rw-r--r--
Moving modules around so the runtime is under one master pom and can be built without building other modules that are in the repository
     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.plugin.MojoExecutionException;
    33 import org.apache.maven.plugins.annotations.LifecyclePhase;
    34 import org.apache.maven.plugins.annotations.Mojo;
    35 import org.apache.maven.plugins.annotations.Parameter;
    36 import org.apache.maven.project.MavenProject;
    37 import org.apidesign.bck2brwsr.launcher.Launcher;
    38 
    39 /** Executes given HTML page in a browser. */
    40 @Mojo(name="brwsr", defaultPhase=LifecyclePhase.NONE)
    41 public class BrswrMojo extends AbstractMojo {
    42     public BrswrMojo() {
    43     }
    44     /** Resource to show as initial page */
    45     @Parameter
    46     private String startpage;
    47 
    48     @Parameter(defaultValue="${project}")
    49     private MavenProject prj;
    50     
    51     /** Root of the class files */
    52     @Parameter(defaultValue="${project.build.directory}/classes")
    53     private File classes;
    54     
    55     /** Root of all pages, and files, etc. */
    56     @Parameter
    57     private File directory;
    58 
    59     @Override
    60     public void execute() throws MojoExecutionException {
    61         if (startpage == null) {
    62             throw new MojoExecutionException("You have to provide a start page");
    63         }
    64         
    65         try {
    66             Closeable httpServer;
    67             if (directory != null) {
    68                 httpServer = Launcher.showDir(directory, startpage);
    69             } else {
    70                 URLClassLoader url = buildClassLoader(classes, prj.getDependencyArtifacts());
    71                 try {
    72                     httpServer = Launcher.showURL(url, startpage());
    73                 } catch (Exception ex) {
    74                     throw new MojoExecutionException("Can't open " + startpage(), ex);
    75                 }
    76             }
    77             System.in.read();
    78             httpServer.close();
    79         } catch (IOException ex) {
    80             throw new MojoExecutionException("Can't show the browser", ex);
    81         }
    82     }
    83     
    84     private String startpage() {
    85         return startpage;
    86     }
    87 
    88     private static URLClassLoader buildClassLoader(File root, Collection<Artifact> deps) throws MalformedURLException {
    89         List<URL> arr = new ArrayList<URL>();
    90         arr.add(root.toURI().toURL());
    91         for (Artifact a : deps) {
    92             final File f = a.getFile();
    93             if (f != null) {
    94                 arr.add(f.toURI().toURL());
    95             }
    96         }
    97         return new URLClassLoader(arr.toArray(new URL[0]), BrswrMojo.class.getClassLoader());
    98     }
    99 }