langtools/make/tools/anttasks/CompilePropertiesTask.java
author duke
Wed, 05 Jul 2017 20:36:16 +0200
changeset 30851 1c0a1cee6054
parent 25874 83c19f00452c
permissions -rw-r--r--
Added tag jdk9-b67 for changeset 56166ce66037
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
25874
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
     2
 * Copyright (c) 2007, 2014, 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: 4700
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: 4700
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: 4700
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 4700
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 4700
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
12085
ce2780cb121f 7150579: Moved ant code into a separate package, anttasks.
ohrstrom
parents: 7681
diff changeset
    26
package anttasks;
ce2780cb121f 7150579: Moved ant code into a separate package, anttasks.
ohrstrom
parents: 7681
diff changeset
    27
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.io.File;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.util.ArrayList;
25874
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    30
import java.util.Arrays;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import java.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
25874
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    33
import compileproperties.CompileProperties;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import org.apache.tools.ant.BuildException;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import org.apache.tools.ant.DirectoryScanner;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import org.apache.tools.ant.Project;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import org.apache.tools.ant.taskdefs.MatchingTask;
25874
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    38
import org.apache.tools.ant.types.Path;
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    39
import org.apache.tools.ant.types.Resource;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
public class CompilePropertiesTask extends MatchingTask {
25874
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    42
    public void addSrc(Path src) {
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    43
        if (srcDirs == null)
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    44
            srcDirs = new Path(getProject());
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    45
        srcDirs.add(src);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    public void setDestDir(File destDir) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
        this.destDir = destDir;
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    public void setSuperclass(String superclass) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
        this.superclass = superclass;
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
4700
d0ef13314ec4 6764569: [PATCH] Fix unused imports in list resource bundles
jjg
parents: 10
diff changeset
    56
    @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    public void execute() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
        CompileProperties.Log log = new CompileProperties.Log() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
            public void error(String msg, Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
                log(msg, Project.MSG_ERR);
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
            public void info(String msg) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
                log(msg, Project.MSG_INFO);
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
            public void verbose(String msg) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
                log(msg, Project.MSG_VERBOSE);
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
        List<String> mainOpts = new ArrayList<String>();
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
        int count = 0;
25874
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    71
        for (String dir : srcDirs.list()) {
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    72
            File baseDir = getProject().resolveFile(dir);
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    73
            DirectoryScanner s = getDirectoryScanner(baseDir);
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    74
            for (String path: s.getIncludedFiles()) {
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    75
                if (path.endsWith(".properties")) {
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    76
                    String destPath =
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    77
                            path.substring(0, path.length() - ".properties".length()) +
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    78
                            ".java";
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    79
                    File srcFile = new File(baseDir, path);
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    80
                    File destFile = new File(destDir, destPath);
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    81
                    // Arguably, the comparison in the next line should be ">", not ">="
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    82
                    // but that assumes the resolution of the last modified time is fine
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    83
                    // grained enough; in practice, it is better to use ">=".
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    84
                    if (destFile.exists() && destFile.lastModified() >= srcFile.lastModified())
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    85
                        continue;
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    86
                    destFile.getParentFile().mkdirs();
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    87
                    mainOpts.add("-compile");
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    88
                    mainOpts.add(srcFile.getPath());
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    89
                    mainOpts.add(destFile.getPath());
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    90
                    mainOpts.add(superclass);
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    91
                    count++;
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
    92
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
        if (mainOpts.size() > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
            log("Generating " + count + " resource files to " + destDir, Project.MSG_INFO);
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
            CompileProperties cp = new CompileProperties();
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
            cp.setLog(log);
4700
d0ef13314ec4 6764569: [PATCH] Fix unused imports in list resource bundles
jjg
parents: 10
diff changeset
    99
            boolean ok = cp.run(mainOpts.toArray(new String[mainOpts.size()]));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
            if (!ok)
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
                throw new BuildException("CompileProperties failed.");
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
25874
83c19f00452c 8054834: Modular Source Code
chegar
parents: 13631
diff changeset
   105
    private Path srcDirs;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
    private File destDir;
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    private String superclass = "java.util.ListResourceBundle";
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
}