PropertiesHelper.java revision 1385:a5a67511b22b
1/*
2 * Copyright (c) 2015, 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 */
25
26package jdk.nashorn.tools.jjs;
27
28import java.io.IOException;
29import java.util.ArrayList;
30import java.util.Arrays;
31import java.util.Collections;
32import java.util.List;
33import java.util.WeakHashMap;
34import java.util.stream.Collectors;
35import jdk.nashorn.internal.runtime.JSType;
36import jdk.nashorn.internal.runtime.NativeJavaPackage;
37import jdk.nashorn.internal.runtime.PropertyMap;
38import jdk.nashorn.internal.runtime.ScriptObject;
39import jdk.nashorn.internal.runtime.ScriptRuntime;
40import jdk.nashorn.internal.objects.NativeJava;
41
42/*
43 * A helper class to get properties of a given object for source code completion.
44 */
45final class PropertiesHelper {
46    // Java package properties helper, may be null
47    private PackagesHelper pkgsHelper;
48    // cached properties list
49    private final WeakHashMap<Object, List<String>> propsCache = new WeakHashMap<>();
50
51    /**
52     * Construct a new PropertiesHelper.
53     *
54     * @param classPath Class path to compute properties of java package objects
55     */
56    PropertiesHelper(final String classPath) {
57        if (PackagesHelper.isAvailable()) {
58            try {
59                this.pkgsHelper = new PackagesHelper(classPath);
60            } catch (final IOException exp) {
61                if (Main.DEBUG) {
62                    exp.printStackTrace();
63                }
64                this.pkgsHelper = null;
65            }
66        }
67    }
68
69    void close() throws Exception {
70        propsCache.clear();
71        pkgsHelper.close();
72    }
73
74    /**
75     * returns the list of properties of the given object.
76     *
77     * @param obj object whose property list is returned
78     * @return the list of properties of the given object
79     */
80    List<String> getProperties(final Object obj) {
81        assert obj != null && obj != ScriptRuntime.UNDEFINED;
82
83        // wrap JS primitives as objects before gettting properties
84        if (JSType.isPrimitive(obj)) {
85            return getProperties(JSType.toScriptObject(obj));
86        }
87
88        // Handle Java package prefix case first. Should do it before checking
89        // for its super class ScriptObject!
90        if (obj instanceof NativeJavaPackage) {
91            if (pkgsHelper != null) {
92                return pkgsHelper.getPackageProperties(((NativeJavaPackage)obj).getName());
93            } else {
94                return Collections.<String>emptyList();
95            }
96        }
97
98        // script object - all inherited and non-enumerable, non-index properties
99        if (obj instanceof ScriptObject) {
100            final ScriptObject sobj = (ScriptObject)obj;
101            final PropertyMap pmap = sobj.getMap();
102            if (propsCache.containsKey(pmap)) {
103                return propsCache.get(pmap);
104            }
105            final String[] keys = sobj.getAllKeys();
106            List<String> props = Arrays.asList(keys);
107            props = props.stream()
108                         .filter(s -> Character.isJavaIdentifierStart(s.charAt(0)))
109                         .collect(Collectors.toList());
110            Collections.sort(props);
111            // cache properties against the PropertyMap
112            propsCache.put(pmap, props);
113            return props;
114        }
115
116        // java class case - don't refer to StaticClass directly
117        if (NativeJava.isType(ScriptRuntime.UNDEFINED, obj)) {
118            if (propsCache.containsKey(obj)) {
119                return propsCache.get(obj);
120            }
121            final List<String> props = NativeJava.getProperties(obj);
122            Collections.sort(props);
123            // cache properties against the StaticClass representing the class
124            propsCache.put(obj, props);
125            return props;
126        }
127
128        // any other Java object
129        final Class<?> clazz = obj.getClass();
130        if (propsCache.containsKey(clazz)) {
131            return propsCache.get(clazz);
132        }
133
134        final List<String> props = NativeJava.getProperties(obj);
135        Collections.sort(props);
136        // cache properties against the Class object
137        propsCache.put(clazz, props);
138        return props;
139    }
140
141    /**
142     * Returns the list of properties of the given object that start with the given prefix.
143     *
144     * @param obj object whose property list is returned
145     * @param prefix property prefix to be matched
146     * @return the list of properties of the given object
147     */
148    List<String> getProperties(final Object obj, final String prefix) {
149        assert prefix != null && !prefix.isEmpty();
150        return getProperties(obj).stream()
151                   .filter(s -> s.startsWith(prefix))
152                   .collect(Collectors.toList());
153    }
154}
155