vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Launchers.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 25 Dec 2012 13:31:35 +0100
changeset 380 4ce33ad7d507
parent 372 3485327d3080
child 382 57fc3a0563c9
permissions -rw-r--r--
Removing unused imports
     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.vmtest.impl;
    19 
    20 import java.io.IOException;
    21 import org.apidesign.bck2brwsr.launcher.Bck2BrwsrLauncher;
    22 import org.apidesign.bck2brwsr.launcher.JSLauncher;
    23 import org.apidesign.bck2brwsr.launcher.MethodInvocation;
    24 import org.apidesign.vm4brwsr.Bck2Brwsr;
    25 import org.testng.annotations.AfterGroups;
    26 import org.testng.annotations.BeforeGroups;
    27 
    28 /**
    29  *
    30  * @author Jaroslav Tulach <jtulach@netbeans.org>
    31  */
    32 public final class Launchers {
    33     public static final Launchers INSTANCE = new Launchers();
    34     
    35     private JSLauncher jsl;
    36     private Bck2BrwsrLauncher brwsr;
    37     
    38     private Launchers() {
    39     }
    40 
    41     @BeforeGroups("run")
    42     public void initializeLauncher() throws IOException {
    43         jsl = new JSLauncher();
    44         jsl.addClassLoader(Bck2Brwsr.class.getClassLoader());
    45         jsl.initialize();
    46         Bck2BrwsrLauncher l = new Bck2BrwsrLauncher();
    47         l.addClassLoader(Bck2Brwsr.class.getClassLoader());
    48         l.initialize();
    49         l.setTimeout(180000);
    50         brwsr = l;
    51     }
    52 
    53     @AfterGroups("run")
    54     public void shutDownLauncher() throws IOException, InterruptedException {
    55         brwsr.shutdown();
    56     }
    57 
    58     public MethodInvocation addMethod(Class<?> clazz, String name, boolean inBrwsr) throws IOException {
    59         if (!inBrwsr) {
    60             return jsl.addMethod(clazz, name);
    61         } else {
    62             return brwsr.addMethod(clazz, name);
    63         }
    64     }
    65 }