vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/LaunchSetup.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 25 Dec 2012 17:46:21 +0100
changeset 384 269d99fd6421
parent 383 88ed1f51eb22
child 681 93196a859fc5
permissions -rw-r--r--
Keeping single instance of LaunchSetup
     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 java.util.LinkedHashMap;
    22 import java.util.Map;
    23 import org.apidesign.bck2brwsr.launcher.Launcher;
    24 import org.testng.annotations.AfterGroups;
    25 import org.testng.annotations.BeforeGroups;
    26 
    27 /**
    28  *
    29  * @author Jaroslav Tulach <jtulach@netbeans.org>
    30  */
    31 public final class LaunchSetup {
    32     static LaunchSetup INSTANCE = new LaunchSetup();
    33     
    34     private final Launcher js = Launcher.createJavaScript();
    35     private final Map<String,Launcher> brwsrs = new LinkedHashMap<>();
    36     
    37     private LaunchSetup() {
    38     }
    39     
    40     public  Launcher javaScript() {
    41         return js;
    42     } 
    43     
    44     public synchronized Launcher brwsr(String cmd) {
    45         Launcher s = brwsrs.get(cmd);
    46         if (s == null) {
    47             s = Launcher.createBrowser(cmd);
    48             brwsrs.put(cmd, s);
    49         }
    50         return s;
    51     }
    52 
    53     @BeforeGroups("run")
    54     public void initializeLauncher() throws IOException {
    55         js.initialize();
    56         for (Launcher launcher : brwsrs.values()) {
    57             launcher.initialize();
    58         }
    59     }
    60 
    61     @AfterGroups("run")
    62     public void shutDownLauncher() throws IOException, InterruptedException {
    63         js.shutdown();
    64         for (Launcher launcher : brwsrs.values()) {
    65             launcher.shutdown();
    66         }
    67     }
    68 }