src/jdk/nashorn/internal/runtime/ScriptingFunctions.java

Mon, 02 Mar 2015 14:33:55 +0100

author
attila
date
Mon, 02 Mar 2015 14:33:55 +0100
changeset 1251
85a6a7545dbe
parent 1020
9ee8fd4a7266
child 1370
a71a115c2dd5
permissions
-rw-r--r--

8074031: Canonicalize is-a-JS-string tests
Reviewed-by: hannesw, lagergren

     1 /*
     2  * Copyright (c) 2010, 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
    23  * questions.
    24  */
    26 package jdk.nashorn.internal.runtime;
    28 import static jdk.nashorn.internal.lookup.Lookup.MH;
    29 import static jdk.nashorn.internal.runtime.ECMAErrors.typeError;
    30 import static jdk.nashorn.internal.runtime.ScriptRuntime.UNDEFINED;
    32 import java.io.BufferedReader;
    33 import java.io.File;
    34 import java.io.IOException;
    35 import java.io.InputStreamReader;
    36 import java.io.OutputStreamWriter;
    37 import java.lang.invoke.MethodHandle;
    38 import java.lang.invoke.MethodHandles;
    39 import java.util.Map;
    40 import java.util.StringTokenizer;
    42 /**
    43  * Global functions supported only in scripting mode.
    44  */
    45 public final class ScriptingFunctions {
    47     /** Handle to implementation of {@link ScriptingFunctions#readLine} - Nashorn extension */
    48     public static final MethodHandle READLINE = findOwnMH("readLine", Object.class, Object.class, Object.class);
    50     /** Handle to implementation of {@link ScriptingFunctions#readFully} - Nashorn extension */
    51     public static final MethodHandle READFULLY = findOwnMH("readFully",     Object.class, Object.class, Object.class);
    53     /** Handle to implementation of {@link ScriptingFunctions#exec} - Nashorn extension */
    54     public static final MethodHandle EXEC = findOwnMH("exec",     Object.class, Object.class, Object.class, Object.class);
    56     /** EXEC name - special property used by $EXEC API. */
    57     public static final String EXEC_NAME = "$EXEC";
    59     /** OUT name - special property used by $EXEC API. */
    60     public static final String OUT_NAME  = "$OUT";
    62     /** ERR name - special property used by $EXEC API. */
    63     public static final String ERR_NAME  = "$ERR";
    65     /** EXIT name - special property used by $EXEC API. */
    66     public static final String EXIT_NAME = "$EXIT";
    68     /** Names of special properties used by $ENV API. */
    69     public  static final String ENV_NAME  = "$ENV";
    71     private static final String PWD_NAME  = "PWD";
    73     private ScriptingFunctions() {
    74     }
    76     /**
    77      * Nashorn extension: global.readLine (scripting-mode-only)
    78      * Read one line of input from the standard input.
    79      *
    80      * @param self   self reference
    81      * @param prompt String used as input prompt
    82      *
    83      * @return line that was read
    84      *
    85      * @throws IOException if an exception occurs
    86      */
    87     public static Object readLine(final Object self, final Object prompt) throws IOException {
    88         if (prompt != UNDEFINED) {
    89             System.out.print(JSType.toString(prompt));
    90         }
    91         final BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
    92         return reader.readLine();
    93     }
    95     /**
    96      * Nashorn extension: Read the entire contents of a text file and return as String.
    97      *
    98      * @param self self reference
    99      * @param file The input file whose content is read.
   100      *
   101      * @return String content of the input file.
   102      *
   103      * @throws IOException if an exception occurs
   104      */
   105     public static Object readFully(final Object self, final Object file) throws IOException {
   106         File f = null;
   108         if (file instanceof File) {
   109             f = (File)file;
   110         } else if (JSType.isString(file)) {
   111             f = new java.io.File(((CharSequence)file).toString());
   112         }
   114         if (f == null || !f.isFile()) {
   115             throw typeError("not.a.file", ScriptRuntime.safeToString(file));
   116         }
   118         return new String(Source.readFully(f));
   119     }
   121     /**
   122      * Nashorn extension: exec a string in a separate process.
   123      *
   124      * @param self   self reference
   125      * @param string string to execute
   126      * @param input  input
   127      *
   128      * @return output string from the request
   129      * @throws IOException           if any stream access fails
   130      * @throws InterruptedException  if execution is interrupted
   131      */
   132     public static Object exec(final Object self, final Object string, final Object input) throws IOException, InterruptedException {
   133         // Current global is need to fetch additional inputs and for additional results.
   134         final ScriptObject global = Context.getGlobal();
   136         // Break exec string into tokens.
   137         final StringTokenizer tokenizer = new StringTokenizer(JSType.toString(string));
   138         final String[] cmdArray = new String[tokenizer.countTokens()];
   139         for (int i = 0; tokenizer.hasMoreTokens(); i++) {
   140             cmdArray[i] = tokenizer.nextToken();
   141         }
   143         // Set up initial process.
   144         final ProcessBuilder processBuilder = new ProcessBuilder(cmdArray);
   146         // Current ENV property state.
   147         final Object env = global.get(ENV_NAME);
   148         if (env instanceof ScriptObject) {
   149             final ScriptObject envProperties = (ScriptObject)env;
   151             // If a working directory is present, use it.
   152             final Object pwd = envProperties.get(PWD_NAME);
   153             if (pwd != UNDEFINED) {
   154                 processBuilder.directory(new File(JSType.toString(pwd)));
   155             }
   157             // Set up ENV variables.
   158             final Map<String, String> environment = processBuilder.environment();
   159             environment.clear();
   160             for (final Map.Entry<Object, Object> entry : envProperties.entrySet()) {
   161                 environment.put(JSType.toString(entry.getKey()), JSType.toString(entry.getValue()));
   162             }
   163         }
   165         // Start the process.
   166         final Process process = processBuilder.start();
   167         final IOException exception[] = new IOException[2];
   169         // Collect output.
   170         final StringBuilder outBuffer = new StringBuilder();
   171         final Thread outThread = new Thread(new Runnable() {
   172             @Override
   173             public void run() {
   174                 final char buffer[] = new char[1024];
   175                 try (final InputStreamReader inputStream = new InputStreamReader(process.getInputStream())) {
   176                     for (int length; (length = inputStream.read(buffer, 0, buffer.length)) != -1; ) {
   177                         outBuffer.append(buffer, 0, length);
   178                     }
   179                 } catch (final IOException ex) {
   180                     exception[0] = ex;
   181                 }
   182             }
   183         }, "$EXEC output");
   185         // Collect errors.
   186         final StringBuilder errBuffer = new StringBuilder();
   187         final Thread errThread = new Thread(new Runnable() {
   188             @Override
   189             public void run() {
   190                 final char buffer[] = new char[1024];
   191                 try (final InputStreamReader inputStream = new InputStreamReader(process.getErrorStream())) {
   192                     for (int length; (length = inputStream.read(buffer, 0, buffer.length)) != -1; ) {
   193                         errBuffer.append(buffer, 0, length);
   194                     }
   195                 } catch (final IOException ex) {
   196                     exception[1] = ex;
   197                 }
   198             }
   199         }, "$EXEC error");
   201         // Start gathering output.
   202         outThread.start();
   203         errThread.start();
   205         // If input is present, pass on to process.
   206         try (OutputStreamWriter outputStream = new OutputStreamWriter(process.getOutputStream())) {
   207             if (input != UNDEFINED) {
   208                 final String in = JSType.toString(input);
   209                 outputStream.write(in, 0, in.length());
   210             }
   211         } catch (final IOException ex) {
   212             // Process was not expecting input.  May be normal state of affairs.
   213         }
   215         // Wait for the process to complete.
   216         final int exit = process.waitFor();
   217         outThread.join();
   218         errThread.join();
   220         final String out = outBuffer.toString();
   221         final String err = errBuffer.toString();
   223         // Set globals for secondary results.
   224         global.set(OUT_NAME, out, 0);
   225         global.set(ERR_NAME, err, 0);
   226         global.set(EXIT_NAME, exit, 0);
   228         // Propagate exception if present.
   229         for (final IOException element : exception) {
   230             if (element != null) {
   231                 throw element;
   232             }
   233         }
   235         // Return the result from stdout.
   236         return out;
   237     }
   239     private static MethodHandle findOwnMH(final String name, final Class<?> rtype, final Class<?>... types) {
   240         return MH.findStatic(MethodHandles.lookup(), ScriptingFunctions.class, name, MH.type(rtype, types));
   241     }
   242 }

mercurial