vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/LaunchSetup.java
changeset 772 d382dacfd73f
parent 771 4252bfc396fc
child 773 406faa8bc64f
     1.1 --- a/vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/LaunchSetup.java	Tue Feb 26 14:55:55 2013 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,78 +0,0 @@
     1.4 -/**
     1.5 - * Back 2 Browser Bytecode Translator
     1.6 - * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.7 - *
     1.8 - * This program is free software: you can redistribute it and/or modify
     1.9 - * it under the terms of the GNU General Public License as published by
    1.10 - * the Free Software Foundation, version 2 of the License.
    1.11 - *
    1.12 - * This program is distributed in the hope that it will be useful,
    1.13 - * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.15 - * GNU General Public License for more details.
    1.16 - *
    1.17 - * You should have received a copy of the GNU General Public License
    1.18 - * along with this program. Look for COPYING file in the top folder.
    1.19 - * If not, see http://opensource.org/licenses/GPL-2.0.
    1.20 - */
    1.21 -package org.apidesign.bck2brwsr.vmtest.impl;
    1.22 -
    1.23 -import java.io.IOException;
    1.24 -import java.util.LinkedHashMap;
    1.25 -import java.util.Map;
    1.26 -import org.apidesign.bck2brwsr.launcher.Launcher;
    1.27 -import org.testng.annotations.AfterGroups;
    1.28 -import org.testng.annotations.BeforeGroups;
    1.29 -
    1.30 -/**
    1.31 - *
    1.32 - * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.33 - */
    1.34 -public final class LaunchSetup {
    1.35 -    static LaunchSetup INSTANCE = new LaunchSetup();
    1.36 -    
    1.37 -    private Launcher js;
    1.38 -    private final Map<String,Launcher> brwsrs = new LinkedHashMap<>();
    1.39 -    
    1.40 -    private LaunchSetup() {
    1.41 -    }
    1.42 -    
    1.43 -    public Launcher javaScript() {
    1.44 -        return js(true);
    1.45 -    } 
    1.46 -    private synchronized  Launcher js(boolean create) {
    1.47 -        if (js == null && create) {
    1.48 -            js = Launcher.createJavaScript();
    1.49 -        }
    1.50 -        return js;
    1.51 -    } 
    1.52 -    
    1.53 -    public synchronized Launcher brwsr(String cmd) {
    1.54 -        Launcher s = brwsrs.get(cmd);
    1.55 -        if (s == null) {
    1.56 -            s = Launcher.createBrowser(cmd);
    1.57 -            brwsrs.put(cmd, s);
    1.58 -        }
    1.59 -        return s;
    1.60 -    }
    1.61 -
    1.62 -    @BeforeGroups("run")
    1.63 -    public void initializeLauncher() throws IOException {
    1.64 -        if (js(false) != null) {
    1.65 -            js(true).initialize();
    1.66 -        }
    1.67 -        for (Launcher launcher : brwsrs.values()) {
    1.68 -            launcher.initialize();
    1.69 -        }
    1.70 -    }
    1.71 -
    1.72 -    @AfterGroups("run")
    1.73 -    public void shutDownLauncher() throws IOException, InterruptedException {
    1.74 -        if (js(false) != null) {
    1.75 -            js(true).shutdown();
    1.76 -        }
    1.77 -        for (Launcher launcher : brwsrs.values()) {
    1.78 -            launcher.shutdown();
    1.79 -        }
    1.80 -    }
    1.81 -}