langtools/src/share/classes/javax/tools/StandardLocation.java
author vromero
Mon, 10 Dec 2012 16:21:26 +0000
changeset 14801 d66cab4ef397
parent 12213 516b112d6c68
child 22163 3651128c74eb
permissions -rw-r--r--
8003967: detect and remove all mutable implicit static enum fields in langtools Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
     2
 * Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package javax.tools;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import javax.tools.JavaFileManager.Location;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import java.util.concurrent.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 * Standard locations of file objects.
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 * @author Peter von der Ahé
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 * @since 1.6
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
public enum StandardLocation implements Location {
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
     * Location of new class files.
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
    CLASS_OUTPUT,
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
     * Location of new source files.
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    SOURCE_OUTPUT,
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
     * Location to search for user class files.
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    CLASS_PATH,
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
     * Location to search for existing source files.
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
    SOURCE_PATH,
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
     * Location to search for annotation processors.
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    ANNOTATION_PROCESSOR_PATH,
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
     * Location to search for platform classes.  Sometimes called
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
     * the boot class path.
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
     */
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
    69
    PLATFORM_CLASS_PATH,
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
    70
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
    71
    /**
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
    72
     * Location of new native header files.
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
    73
     * @since 1.8
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
    74
     */
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
    75
    NATIVE_HEADER_OUTPUT;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
     * Gets a location object with the given name.  The following
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
     * property must hold: {@code locationFor(x) ==
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
     * locationFor(y)} if and only if {@code x.equals(y)}.
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
     * The returned location will be an output location if and only if
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
     * name ends with {@code "_OUTPUT"}.
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     * @param name a name
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     * @return a location
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
    public static Location locationFor(final String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        if (locations.isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
            // can't use valueOf which throws IllegalArgumentException
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
            for (Location location : values())
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
                locations.putIfAbsent(location.getName(), location);
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        locations.putIfAbsent(name.toString(/* null-check */), new Location() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
                public String getName() { return name; }
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
                public boolean isOutputLocation() { return name.endsWith("_OUTPUT"); }
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
            });
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        return locations.get(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    //where
14801
d66cab4ef397 8003967: detect and remove all mutable implicit static enum fields in langtools
vromero
parents: 12213
diff changeset
   100
        private static final ConcurrentMap<String,Location> locations
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
            = new ConcurrentHashMap<String,Location>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    public String getName() { return name(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    public boolean isOutputLocation() {
12213
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
   106
        switch (this) {
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
   107
            case CLASS_OUTPUT:
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
   108
            case SOURCE_OUTPUT:
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
   109
            case NATIVE_HEADER_OUTPUT:
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
   110
                return true;
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
   111
            default:
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
   112
                return false;
516b112d6c68 7150368: javac should include basic ability to generate native headers
jjg
parents: 5520
diff changeset
   113
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
}