minesweeper/src/main/java/org/apidesign/demo/minesweeper/Main.java
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 11 Mar 2014 18:44:57 +0100
branchxtrnlbrwsr
changeset 103 60c37de4163a
parent 99 ae4e3694c2d3
permissions -rw-r--r--
Adding dependency on XtrnlBrwsrPrsntr
jtulach@63
     1
/**
jtulach@63
     2
 * The MIT License (MIT)
jtulach@63
     3
 *
jtulach@63
     4
 * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@63
     5
 *
jtulach@63
     6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
jtulach@63
     7
 * of this software and associated documentation files (the "Software"), to deal
jtulach@63
     8
 * in the Software without restriction, including without limitation the rights
jtulach@63
     9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
jtulach@63
    10
 * copies of the Software, and to permit persons to whom the Software is
jtulach@63
    11
 * furnished to do so, subject to the following conditions:
jtulach@63
    12
 *
jtulach@63
    13
 * The above copyright notice and this permission notice shall be included in
jtulach@63
    14
 * all copies or substantial portions of the Software.
jtulach@63
    15
 *
jtulach@63
    16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
jtulach@63
    17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
jtulach@63
    18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
jtulach@63
    19
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
jtulach@63
    20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jtulach@63
    21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
jtulach@63
    22
 * THE SOFTWARE.
jtulach@63
    23
 */
jtulach@63
    24
package org.apidesign.demo.minesweeper;
jtulach@63
    25
jtulach@89
    26
import java.io.IOException;
jtulach@89
    27
import java.net.URI;
jtulach@89
    28
import java.util.Arrays;
jtulach@96
    29
import java.util.logging.ConsoleHandler;
jtulach@89
    30
import java.util.logging.Level;
jtulach@89
    31
import java.util.logging.Logger;
jtulach@63
    32
import net.java.html.boot.BrowserBuilder;
jtulach@103
    33
import org.apidesign.html.brwsr.XtrnlBrwsrPrsntr;
jtulach@63
    34
jtulach@63
    35
jtulach@63
    36
/** Bootstrap and initialization. */
jtulach@63
    37
public final class Main {
jtulach@89
    38
    private static final Logger LOG = Logger.getLogger(Main.class.getName());
jtulach@63
    39
    private Main() {
jtulach@63
    40
    }
jtulach@89
    41
jtulach@89
    42
    static Object[] showBrwsr(URI uri, String cmd) throws IOException {
jtulach@89
    43
        LOG.log(Level.INFO, "Showing {0}", uri);
jtulach@89
    44
        if (cmd == null) {
jtulach@89
    45
            try {
jtulach@89
    46
                LOG.log(Level.INFO, "Trying Desktop.browse on {0} {2} by {1}", new Object[]{
jtulach@89
    47
                    System.getProperty("java.vm.name"),
jtulach@89
    48
                    System.getProperty("java.vm.vendor"),
jtulach@89
    49
                    System.getProperty("java.vm.version"),});
jtulach@89
    50
                java.awt.Desktop.getDesktop().browse(uri);
jtulach@89
    51
                LOG.log(Level.INFO, "Desktop.browse successfully finished");
jtulach@89
    52
                return null;
jtulach@89
    53
            } catch (UnsupportedOperationException ex) {
jtulach@89
    54
                LOG.log(Level.INFO, "Desktop.browse not supported: {0}", ex.getMessage());
jtulach@89
    55
                LOG.log(Level.FINE, null, ex);
jtulach@89
    56
            }
jtulach@89
    57
        }
jtulach@89
    58
        {
jtulach@89
    59
            String cmdName = cmd == null ? "xdg-open" : cmd;
jtulach@89
    60
            String[] cmdArr = {
jtulach@89
    61
                cmdName, uri.toString()
jtulach@89
    62
            };
jtulach@89
    63
            LOG.log(Level.INFO, "Launching {0}", Arrays.toString(cmdArr));
jtulach@89
    64
            final Process process = Runtime.getRuntime().exec(cmdArr);
jtulach@89
    65
            return new Object[]{process, null};
jtulach@89
    66
        }
jtulach@89
    67
    }
jtulach@63
    68
    
jtulach@63
    69
    /** Launches the browser */
jtulach@63
    70
    public static void main(String... args) throws Exception {
jtulach@99
    71
        /*
jtulach@96
    72
        Logger l = Logger.getLogger("org.apidesign.html.dlvkbrwsr");
jtulach@96
    73
        l.setLevel(Level.ALL);
jtulach@99
    74
        l.setUseParentHandlers(false);
jtulach@96
    75
        ConsoleHandler ch = new ConsoleHandler();
jtulach@96
    76
        ch.setLevel(Level.ALL);
jtulach@96
    77
        l.addHandler(ch);
jtulach@99
    78
        */
jtulach@96
    79
        
jtulach@96
    80
        
jtulach@89
    81
        BrowserBuilder.newBrowser(new XtrnlBrwsrPrsntr() {
jtulach@89
    82
            @Override
jtulach@89
    83
            protected void showBrwsr(URI page) throws IOException {
jtulach@89
    84
                Main.showBrwsr(page, null);
jtulach@89
    85
            }
jtulach@89
    86
        }).
jtulach@63
    87
            loadPage("pages/index.html").
jtulach@63
    88
            loadClass(Main.class).
jtulach@63
    89
            invoke("onPageLoad", args).
jtulach@63
    90
            showAndWait();
jtulach@89
    91
        System.in.read();
jtulach@63
    92
        System.exit(0);
jtulach@63
    93
    }
jtulach@63
    94
    
jtulach@63
    95
    /** Called when page is ready */
jtulach@63
    96
    public static void onPageLoad(String... args) throws Exception {
jtulach@63
    97
        Mines m = new Mines();
jtulach@63
    98
        m.applyBindings();
jtulach@63
    99
    }
jtulach@63
   100
}