boot-fx/src/main/java/org/netbeans/html/boot/fx/FXInspect.java
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Fri, 07 Feb 2014 07:44:34 +0100
changeset 551 7ca2253fa86d
parent 365 5c93ad8c7a15
child 739 7a2f7066fc67
permissions -rw-r--r--
Updating copyright headers to mention current year
     1 /**
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013-2014 Oracle and/or its affiliates. All rights reserved.
     5  *
     6  * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
     7  * Other names may be trademarks of their respective owners.
     8  *
     9  * The contents of this file are subject to the terms of either the GNU
    10  * General Public License Version 2 only ("GPL") or the Common
    11  * Development and Distribution License("CDDL") (collectively, the
    12  * "License"). You may not use this file except in compliance with the
    13  * License. You can obtain a copy of the License at
    14  * http://www.netbeans.org/cddl-gplv2.html
    15  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    16  * specific language governing permissions and limitations under the
    17  * License.  When distributing the software, include this License Header
    18  * Notice in each file and include the License file at
    19  * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    20  * particular file as subject to the "Classpath" exception as provided
    21  * by Oracle in the GPL Version 2 section of the License file that
    22  * accompanied this code. If applicable, add the following below the
    23  * License Header, with the fields enclosed by brackets [] replaced by
    24  * your own identifying information:
    25  * "Portions Copyrighted [year] [name of copyright owner]"
    26  *
    27  * Contributor(s):
    28  *
    29  * The Original Software is NetBeans. The Initial Developer of the Original
    30  * Software is Oracle. Portions Copyright 2013-2014 Oracle. All Rights Reserved.
    31  *
    32  * If you wish your version of this file to be governed by only the CDDL
    33  * or only the GPL Version 2, indicate your decision by adding
    34  * "[Contributor] elects to include this software in this distribution
    35  * under the [CDDL or GPL Version 2] license." If you do not indicate a
    36  * single choice of license, a recipient has the option to distribute
    37  * your version of this file under either the CDDL, the GPL Version 2 or
    38  * to extend the choice of license to its licensees as provided above.
    39  * However, if you add GPL Version 2 code and therefore, elected the GPL
    40  * Version 2 license, then the option applies only if the new code is
    41  * made subject to such option by the copyright holder.
    42  */
    43 package org.netbeans.html.boot.fx;
    44 
    45 import java.io.IOException;
    46 import java.io.ObjectInputStream;
    47 import java.io.ObjectOutputStream;
    48 import java.net.InetAddress;
    49 import java.net.Socket;
    50 import java.nio.charset.StandardCharsets;
    51 import java.util.logging.Level;
    52 import java.util.logging.Logger;
    53 import javafx.application.Platform;
    54 import javafx.scene.web.WebEngine;
    55 import javafx.util.Callback;
    56 
    57 /**
    58  *
    59  * @author Jaroslav Tulach <jtulach@netbeans.org>
    60  */
    61 final class FXInspect implements Runnable {
    62     private static final Logger LOG = Logger.getLogger(FXInspect.class.getName());
    63     
    64     
    65     private final WebEngine engine;
    66     private final ObjectInputStream input;
    67     private Dbgr dbg;
    68     
    69     private FXInspect(WebEngine engine, int port) throws IOException {
    70         this.engine = engine;
    71         
    72         Socket socket = new Socket(InetAddress.getByName(null), port);
    73         ObjectOutputStream output = new ObjectOutputStream(socket.getOutputStream());
    74         this.input = new ObjectInputStream(socket.getInputStream());
    75         initializeDebugger(output);
    76     }
    77     
    78     static boolean initialize(WebEngine engine) {
    79         final int inspectPort = Integer.getInteger("netbeans.inspect.port", -1); // NOI18N
    80         if (inspectPort != -1) {
    81             try {
    82                 FXInspect inspector = new FXInspect(engine, inspectPort);
    83                 Thread t = new Thread(inspector, "FX<->NetBeans Inspector");
    84                 t.start();
    85                 return true;
    86             } catch (IOException ex) {
    87                 LOG.log(Level.INFO, "Cannot connect to NetBeans IDE to port " + inspectPort, ex); // NOI18N
    88             }
    89         }
    90         return false;
    91     }
    92     
    93     private void initializeDebugger(final ObjectOutputStream output) {
    94         Platform.runLater(new Runnable() {
    95             @Override
    96             public void run() {
    97                 dbg = new Dbgr(engine, new Callback<String,Void>() {
    98                     @Override
    99                     public Void call(String message) {
   100                         try {
   101                             byte[] bytes = message.getBytes(StandardCharsets.UTF_8);
   102                             output.writeInt(bytes.length);
   103                             output.write(bytes);
   104                             output.flush();
   105                         } catch (IOException ioex) {
   106                             ioex.printStackTrace();
   107                         }
   108                         return null;
   109                     }
   110                 });
   111             }
   112         });
   113     }
   114 
   115     @Override
   116     public void run() {
   117         try {
   118             while (true) {
   119                 int length = input.readInt();
   120                 byte[] bytes = new byte[length];
   121                 input.readFully(bytes);
   122                 final String message = new String(bytes, StandardCharsets.UTF_8);
   123                 Platform.runLater(new Runnable() {
   124                     @Override
   125                     public void run() {
   126                         dbg.sendMessage(message);
   127                     }
   128                 });
   129             }
   130         } catch (IOException ex) {
   131             LOG.log(Level.WARNING, null, ex);
   132         }
   133     }
   134 }