8085937: add autoimports sample script to easily explore Java classes in interactive mode

Mon, 08 Jun 2015 17:59:32 +0530

author
sundar
date
Mon, 08 Jun 2015 17:59:32 +0530
changeset 1401
da52a33a5e93
parent 1400
e40d2ac8d070
child 1402
523767716eb3

8085937: add autoimports sample script to easily explore Java classes in interactive mode
Reviewed-by: lagergren, attila

samples/autoimports.js file | annotate | diff | comparison | revisions
samples/dateconversion.js file | annotate | diff | comparison | revisions
samples/secondssince.js file | annotate | diff | comparison | revisions
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/autoimports.js	Mon Jun 08 17:59:32 2015 +0530
     1.3 @@ -0,0 +1,163 @@
     1.4 +# autoimports script requires -scripting mode
     1.5 +
     1.6 +/*
     1.7 + * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
     1.8 + *
     1.9 + * Redistribution and use in source and binary forms, with or without
    1.10 + * modification, are permitted provided that the following conditions
    1.11 + * are met:
    1.12 + *
    1.13 + *   - Redistributions of source code must retain the above copyright
    1.14 + *     notice, this list of conditions and the following disclaimer.
    1.15 + *
    1.16 + *   - Redistributions in binary form must reproduce the above copyright
    1.17 + *     notice, this list of conditions and the following disclaimer in the
    1.18 + *     documentation and/or other materials provided with the distribution.
    1.19 + *
    1.20 + *   - Neither the name of Oracle nor the names of its
    1.21 + *     contributors may be used to endorse or promote products derived
    1.22 + *     from this software without specific prior written permission.
    1.23 + *
    1.24 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
    1.25 + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    1.26 + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    1.27 + * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
    1.28 + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    1.29 + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    1.30 + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    1.31 + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    1.32 + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    1.33 + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    1.34 + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1.35 + */
    1.36 +
    1.37 +/*
    1.38 + * It is tedious to import Java classes used in a script. Sometimes it is easier
    1.39 + * use simple names of java classes and have a script auto import Java classes. 
    1.40 + * You can load this script at the start of an interactive jjs session or at the
    1.41 + * start of your script. This script defines a __noSuchProperty__ hook to auto 
    1.42 + * import Java classes as needed and when they are referred to for the first time
    1.43 + * in your script. You can also call the "autoimports" function to print script 
    1.44 + * statements that you need to use in your script, i.e., have the function generate
    1.45 + * a script to import Java classes used by your script so far. After running your
    1.46 + * script, you can call autoimports to get the exact Java imports you need and replace
    1.47 + * the autoimports load with the generated import statements (to avoid costly init of
    1.48 + * the autoimports script).
    1.49 + */
    1.50 +
    1.51 +(function() {
    1.52 +    var ArrayList = Java.type("java.util.ArrayList");
    1.53 +    var HashMap = Java.type("java.util.HashMap");
    1.54 +    var JarFile = Java.type("java.util.jar.JarFile");
    1.55 +    var File = Java.type("java.io.File");
    1.56 +    var Files = Java.type("java.nio.file.Files");
    1.57 +    var FileSystems = Java.type("java.nio.file.FileSystems");
    1.58 +    var System = Java.type("java.lang.System");
    1.59 +    var URI = Java.type("java.net.URI");
    1.60 +
    1.61 +    // initialize a class to package map by iterating all
    1.62 +    // classes available in the system by walking through "jrt fs"
    1.63 +
    1.64 +    var clsToPkg = new HashMap();
    1.65 +
    1.66 +    // locate rt.jar from sun.boot.class.path
    1.67 +    function findRtJar() {
    1.68 +        var paths = System.getProperty("sun.boot.class.path").split(File.pathSeparator);
    1.69 +        for each (var p in paths) {
    1.70 +            if (p.endsWith("rt.jar") && new File(p).exists()) {
    1.71 +                return p;
    1.72 +            }
    1.73 +        }
    1.74 +    }
    1.75 +
    1.76 +
    1.77 +    function addToClsToPkg(c, p) {
    1.78 +        if (clsToPkg.containsKey(c)) {
    1.79 +            var val = clsToPkg.get(c);
    1.80 +            if (val instanceof ArrayList) {
    1.81 +                val.add(p);
    1.82 +            } else {
    1.83 +                var al = new ArrayList();
    1.84 +                al.add(val);
    1.85 +                al.add(p);
    1.86 +                clsToPkg.put(c, al);
    1.87 +            }
    1.88 +        } else {
    1.89 +            clsToPkg.put(c, p);
    1.90 +        }
    1.91 +    }
    1.92 +
    1.93 +    // handle collision and allow user to choose package
    1.94 +    function getPkgOfCls(c) {
    1.95 +        var val = clsToPkg.get(c);
    1.96 +        if (val instanceof ArrayList) {
    1.97 +            var count = 1;
    1.98 +            print("Multiple matches for " + c + ", choose package:");
    1.99 +            for each (var v in val) {
   1.100 +                print(count + ". " + v);
   1.101 +                count++;
   1.102 +            }
   1.103 +            var choice = parseInt(readLine());
   1.104 +            if (isNaN(choice) || choice < 1 || choice > val.size()) {
   1.105 +                print("invalid choice: " + choice);
   1.106 +                return undefined;
   1.107 +            }
   1.108 +            return val.get(choice - 1);
   1.109 +        } else {
   1.110 +            return val;
   1.111 +        }
   1.112 +    }
   1.113 +
   1.114 +    var rtJar = findRtJar();
   1.115 +    var stream = new JarFile(rtJar).stream();
   1.116 +    try {
   1.117 +        stream.forEach(
   1.118 +            function(entry) {
   1.119 +                var str = entry.name;
   1.120 +                if (str.endsWith(".class")) {
   1.121 +                    if (str.startsWith("java") ||
   1.122 +                        str.startsWith("javax") ||
   1.123 +                        str.startsWith("org")) {
   1.124 +                        var lastIdx = str.lastIndexOf('/');
   1.125 +                        if (lastIdx != -1) {
   1.126 +                            var pkg = str.substring(0, lastIdx).replaceAll('/', '.');
   1.127 +                            var cls = str.substring(lastIdx + 1, str.lastIndexOf(".class"));
   1.128 +                            addToClsToPkg(cls, pkg);
   1.129 +                        }
   1.130 +                    }
   1.131 +                }
   1.132 +            });
   1.133 +    } finally {
   1.134 +        stream.close();
   1.135 +    }
   1.136 +
   1.137 +    var imports = new ArrayList();
   1.138 +    var global = this;
   1.139 +    var oldNoSuchProp = global.__noSuchProperty__;
   1.140 +    this.__noSuchProperty__ = function(name) {
   1.141 +        'use strict';
   1.142 +
   1.143 +        if (clsToPkg.containsKey(name)) {
   1.144 +            var pkg = getPkgOfCls(name);
   1.145 +            if (pkg) {
   1.146 +                var clsName = pkg + "." + name;
   1.147 +                imports.add("var " + name + " = Java.type('" + clsName + "');");
   1.148 +                return global[name] = Java.type(clsName);
   1.149 +            }
   1.150 +        } else if (typeof oldNoSuchProp == 'function') {
   1.151 +            return oldNoSuchProp.call(this, name);
   1.152 +        }
   1.153 +
   1.154 +        if (typeof this == 'undefined') {
   1.155 +            throw new ReferenceError(name);
   1.156 +        } else {
   1.157 +            return undefined;
   1.158 +        }
   1.159 +    }
   1.160 +
   1.161 +    this.autoimports = function() {
   1.162 +        for each (var im in imports) {
   1.163 +            print(im);
   1.164 +        }
   1.165 +    }
   1.166 +})();
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/samples/dateconversion.js	Mon Jun 08 17:59:32 2015 +0530
     2.3 @@ -0,0 +1,73 @@
     2.4 +/*
     2.5 + * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
     2.6 + *
     2.7 + * Redistribution and use in source and binary forms, with or without
     2.8 + * modification, are permitted provided that the following conditions
     2.9 + * are met:
    2.10 + *
    2.11 + *   - Redistributions of source code must retain the above copyright
    2.12 + *     notice, this list of conditions and the following disclaimer.
    2.13 + *
    2.14 + *   - Redistributions in binary form must reproduce the above copyright
    2.15 + *     notice, this list of conditions and the following disclaimer in the
    2.16 + *     documentation and/or other materials provided with the distribution.
    2.17 + *
    2.18 + *   - Neither the name of Oracle nor the names of its
    2.19 + *     contributors may be used to endorse or promote products derived
    2.20 + *     from this software without specific prior written permission.
    2.21 + *
    2.22 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
    2.23 + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    2.24 + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    2.25 + * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
    2.26 + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    2.27 + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    2.28 + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    2.29 + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    2.30 + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    2.31 + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    2.32 + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2.33 + */
    2.34 +
    2.35 +// Converting between #javascript Date and #java8 LocalDateTime with #nashorn
    2.36 +
    2.37 +// JavaScript Date with current time
    2.38 +var d = new Date();
    2.39 +print(d);
    2.40 + 
    2.41 +// Java 8 java.time classes used
    2.42 +var Instant = java.time.Instant;
    2.43 +var LocalDateTime = java.time.LocalDateTime;
    2.44 +var ZoneId = java.time.ZoneId;
    2.45 + 
    2.46 +// Date.prototype.getTime
    2.47 +
    2.48 +// getTime() method returns the numeric value corresponding to the time
    2.49 +// for the specified date according to universal time. The value returned
    2.50 +// by the getTime() method is the number of milliseconds since 1 January 1970 00:00:00 UTC.
    2.51 +// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime
    2.52 + 
    2.53 +// Java Instant.ofEpochMilli to convert time in milliseconds to Instant object
    2.54 +// https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html#ofEpochMilli-long-
    2.55 + 
    2.56 +var instant = Instant.ofEpochMilli(d.getTime());
    2.57 + 
    2.58 +// Instant to LocalDateTime using LocalDateTime.ofInstant
    2.59 +// https://docs.oracle.com/javase/8/docs/api/java/time/LocalDateTime.html#ofInstant-java.time.Instant-java.time.ZoneId-
    2.60 + 
    2.61 +var ldt = LocalDateTime.ofInstant(instant, ZoneId.systemDefault());
    2.62 +print(ldt);
    2.63 + 
    2.64 +// converting a LocalDateTime to JavaScript Date
    2.65 +// convert LocalDateTime to Instant first
    2.66 +// https://docs.oracle.com/javase/8/docs/api/java/time/LocalDateTime.html#atZone-java.time.ZoneId-
    2.67 + 
    2.68 +var instant = ldt.atZone(ZoneId.systemDefault()).toInstant();
    2.69 + 
    2.70 +// instant to to epoch milliseconds
    2.71 +// https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html#toEpochMilli--
    2.72 +// and then to JavaScript Date from time in milliseconds
    2.73 +// https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Date
    2.74 +
    2.75 +var d1 = new Date(instant.toEpochMilli());
    2.76 +print(d1); 
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/samples/secondssince.js	Mon Jun 08 17:59:32 2015 +0530
     3.3 @@ -0,0 +1,43 @@
     3.4 +# usage: jjs secondssince.js
     3.5 +
     3.6 +/*
     3.7 + * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
     3.8 + *
     3.9 + * Redistribution and use in source and binary forms, with or without
    3.10 + * modification, are permitted provided that the following conditions
    3.11 + * are met:
    3.12 + *
    3.13 + *   - Redistributions of source code must retain the above copyright
    3.14 + *     notice, this list of conditions and the following disclaimer.
    3.15 + *
    3.16 + *   - Redistributions in binary form must reproduce the above copyright
    3.17 + *     notice, this list of conditions and the following disclaimer in the
    3.18 + *     documentation and/or other materials provided with the distribution.
    3.19 + *
    3.20 + *   - Neither the name of Oracle nor the names of its
    3.21 + *     contributors may be used to endorse or promote products derived
    3.22 + *     from this software without specific prior written permission.
    3.23 + *
    3.24 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
    3.25 + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    3.26 + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    3.27 + * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
    3.28 + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    3.29 + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    3.30 + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    3.31 + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    3.32 + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    3.33 + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    3.34 + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    3.35 + */
    3.36 +
    3.37 +// Number of seconds elapsed since the specified Instance #nashorn #javascript #java
    3.38 +// Input date and time in ISO 8601 format
    3.39 +// Example: 2001-01-01T00:00:00Z for 1 Jan 2001, 0 GMT
    3.40 +
    3.41 +var Instant = java.time.Instant;
    3.42 +var ChronoUnit = java.time.temporal.ChronoUnit;
    3.43 +print("Enter date time:");
    3.44 +var sec = Instant.parse(readLine()).
    3.45 +      until(Instant.now(), ChronoUnit.SECONDS);
    3.46 +print(sec);

mercurial