src/share/classes/com/sun/tools/jdi/SunCommandLineLauncher.java

Print this page


   1 /*
   2  * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 179             int failCount = 0;
 180             while(true) {
 181                 try {
 182                     String address = "javadebug" +
 183                         String.valueOf(rr.nextInt(100000));
 184                     listenKey = transportService().startListening(address);
 185                     break;
 186                 } catch (IOException ioe) {
 187                     if (++failCount > 5) {
 188                         throw ioe;
 189                     }
 190                 }
 191             }
 192         } else {
 193             listenKey = transportService().startListening();
 194         }
 195         String address = listenKey.address();
 196 
 197         try {
 198             if (home.length() > 0) {
 199                 /*
 200                  * A wrinkle in the environment:
 201                  * 64-bit executables are stored under $JAVA_HOME/bin/os_arch
 202                  * 32-bit executables are stored under $JAVA_HOME/bin
 203                  */
 204                 String os_arch = System.getProperty("os.arch");
 205                 if ("SunOS".equals(System.getProperty("os.name")) &&
 206                    ("sparcv9".equals(os_arch) || "amd64".equals(os_arch))) {
 207                     exePath = home + File.separator + "bin" + File.separator +
 208                         os_arch + File.separator + exe;
 209                 } else {
 210                     exePath = home + File.separator + "bin" + File.separator + exe;
 211                 }
 212             } else {
 213                 exePath = exe;
 214             }
 215             // Quote only if necessary in case the quote arg value is bogus
 216             if (hasWhitespace(exePath)) {
 217                 exePath = quote + exePath + quote;
 218             }
 219 
 220             String xrun = "transport=" + transport().name() +
 221                           ",address=" + address +
 222                           ",suspend=" + (wait? 'y' : 'n');
 223             // Quote only if necessary in case the quote arg value is bogus
 224             if (hasWhitespace(xrun)) {
 225                 xrun = quote + xrun + quote;
 226             }
 227 
 228             String command = exePath + ' ' +
 229                              options + ' ' +


   1 /*
   2  * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 179             int failCount = 0;
 180             while(true) {
 181                 try {
 182                     String address = "javadebug" +
 183                         String.valueOf(rr.nextInt(100000));
 184                     listenKey = transportService().startListening(address);
 185                     break;
 186                 } catch (IOException ioe) {
 187                     if (++failCount > 5) {
 188                         throw ioe;
 189                     }
 190                 }
 191             }
 192         } else {
 193             listenKey = transportService().startListening();
 194         }
 195         String address = listenKey.address();
 196 
 197         try {
 198             if (home.length() > 0) {





 199                 String os_arch = System.getProperty("os.arch");
 200                 if ("SunOS".equals(System.getProperty("os.name"))) {




 201                     exePath = home + File.separator + "bin" + File.separator + exe;
 202                 }
 203             } else {
 204                 exePath = exe;
 205             }
 206             // Quote only if necessary in case the quote arg value is bogus
 207             if (hasWhitespace(exePath)) {
 208                 exePath = quote + exePath + quote;
 209             }
 210 
 211             String xrun = "transport=" + transport().name() +
 212                           ",address=" + address +
 213                           ",suspend=" + (wait? 'y' : 'n');
 214             // Quote only if necessary in case the quote arg value is bogus
 215             if (hasWhitespace(xrun)) {
 216                 xrun = quote + xrun + quote;
 217             }
 218 
 219             String command = exePath + ' ' +
 220                              options + ' ' +