rt/vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/LaunchSetup.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 01 Mar 2013 17:22:14 +0100
changeset 803 dccfe152dacd
parent 800 3661b82478e0
child 1537 897d7f70c5a5
permissions -rw-r--r--
Using 'vmtest.js' property with possibly value 'brwsr' and default value 'script'
     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 Launcher js;
    35     private final Map<String,Launcher> brwsrs = new LinkedHashMap<>();
    36     
    37     private LaunchSetup() {
    38     }
    39     
    40     public Launcher javaScript() {
    41         return js(true);
    42     } 
    43     private synchronized  Launcher js(boolean create) {
    44         if (js == null && create) {
    45             final String p = System.getProperty("vmtest.js", "script"); // NOI18N
    46             switch (p) {
    47                 case "brwsr": js = Launcher.createBrowser(null); break; // NOI18N
    48                 case "script": js = Launcher.createJavaScript(); break; // NOI18N
    49                 default: throw new IllegalArgumentException(
    50                     "Unknown value of vmtest.js property: " + p
    51                 );
    52             }
    53         }
    54         return js;
    55     } 
    56     
    57     public synchronized Launcher brwsr(String cmd) {
    58         Launcher s = brwsrs.get(cmd);
    59         if (s == null) {
    60             s = Launcher.createBrowser(cmd);
    61             brwsrs.put(cmd, s);
    62         }
    63         return s;
    64     }
    65 
    66     @BeforeGroups("run")
    67     public void initializeLauncher() throws IOException {
    68         if (js(false) != null) {
    69             js(true).initialize();
    70         }
    71         for (Launcher launcher : brwsrs.values()) {
    72             launcher.initialize();
    73         }
    74     }
    75 
    76     @AfterGroups("run")
    77     public void shutDownLauncher() throws IOException, InterruptedException {
    78         if (js(false) != null) {
    79             js(true).shutdown();
    80         }
    81         for (Launcher launcher : brwsrs.values()) {
    82             launcher.shutdown();
    83         }
    84     }
    85 }