langtools/src/java.compiler/share/classes/javax/tools/FileManagerUtils.java
author goetz
Wed, 27 Jan 2016 10:35:49 +0100
changeset 35775 00710c1b504a
parent 34912 954fa9df99c7
permissions -rw-r--r--
8149529: Adapt SAP copyrights to new company name in jdk repository Reviewed-by: simonis, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28332
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
     1
/*
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
     2
 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
     4
 *
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    10
 *
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    15
 * accompanied this code).
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    16
 *
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    20
 *
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    23
 * questions.
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    24
 */
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    25
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    26
package javax.tools;
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    27
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    28
import java.io.File;
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    29
import java.nio.file.Path;
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    30
import java.util.Iterator;
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    31
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    32
/**
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    33
 * Package-private utility methods to convert between files and paths.
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    34
 *
34912
954fa9df99c7 8146572: Update "@since 1.9" to "@since 9" to match java.version.specification [langtools]
jjg
parents: 28332
diff changeset
    35
 * @since 9
28332
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    36
 */
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    37
class FileManagerUtils {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    38
    private FileManagerUtils() { }
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    39
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    40
    static Iterable<Path> asPaths(final Iterable<? extends File> files) {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    41
        return () -> new Iterator<Path>() {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    42
            Iterator<? extends File> iter = files.iterator();
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    43
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    44
            @Override
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    45
            public boolean hasNext() {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    46
                return iter.hasNext();
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    47
            }
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    48
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    49
            @Override
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    50
            public Path next() {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    51
                return iter.next().toPath();
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    52
            }
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    53
        };
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    54
    }
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    55
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    56
    static Iterable<File> asFiles(final Iterable<? extends Path> paths) {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    57
        return () -> new Iterator<File>() {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    58
            Iterator<? extends Path> iter = paths.iterator();
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    59
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    60
            @Override
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    61
            public boolean hasNext() {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    62
                return iter.hasNext();
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    63
            }
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    64
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    65
            @Override
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    66
            public File next() {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    67
                Path p = iter.next();
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    68
                try {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    69
                    return p.toFile();
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    70
                } catch (UnsupportedOperationException e) {
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    71
                    throw new IllegalArgumentException(p.toString(), e);
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    72
                }
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    73
            }
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    74
        };
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    75
    }
cd3ea1087d2b 8059977: StandardJavaFileManager should support java.nio.file.Path
jjg
parents:
diff changeset
    76
}