langtools/make/tools/anttasks/CompilePropertiesTask.java
author ohrstrom
Wed, 07 Mar 2012 13:11:27 +0100
changeset 12085 ce2780cb121f
parent 7681 langtools/make/tools/CompileProperties/CompilePropertiesTask.java@1f0819a3341f
child 13631 dc1212c348f9
permissions -rw-r--r--
7150579: Moved ant code into a separate package, anttasks. Summary: To allow langtools to be built without ant, the ant tasks were moved to a separated package. The packages were also renamed to proper lower case package names. Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
7681
1f0819a3341f 6962318: Update copyright year
ohair
parents: 5520
diff changeset
     2
 * Copyright (c) 2007, 2010, 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
ce2780cb121f 7150579: Moved ant code into a separate package, anttasks.
ohrstrom
parents: 7681
diff changeset
    28
import compileproperties.CompileProperties;
ce2780cb121f 7150579: Moved ant code into a separate package, anttasks.
ohrstrom
parents: 7681
diff changeset
    29
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import java.io.File;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import java.util.ArrayList;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import java.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
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;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
public class CompilePropertiesTask extends MatchingTask {
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
    public void setSrcDir(File srcDir) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
        this.srcDir = srcDir;
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
    public void setDestDir(File destDir) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
        this.destDir = destDir;
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 setSuperclass(String superclass) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
        this.superclass = superclass;
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
4700
d0ef13314ec4 6764569: [PATCH] Fix unused imports in list resource bundles
jjg
parents: 10
diff changeset
    52
    @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    public void execute() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
        CompileProperties.Log log = new CompileProperties.Log() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
            public void error(String msg, Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
                log(msg, Project.MSG_ERR);
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
            public void info(String msg) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
                log(msg, Project.MSG_INFO);
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
            public void verbose(String msg) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
                log(msg, Project.MSG_VERBOSE);
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        List<String> mainOpts = new ArrayList<String>();
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
        int count = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
        DirectoryScanner s = getDirectoryScanner(srcDir);
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
        for (String path: s.getIncludedFiles()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
            if (path.endsWith(".properties")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
                String destPath =
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
                        path.substring(0, path.length() - ".properties".length()) +
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
                        ".java";
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
                File srcFile = new File(srcDir, path);
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
                File destFile = new File(destDir, destPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
                // Arguably, the comparison in the next line should be ">", not ">="
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
                // but that assumes the resolution of the last modified time is fine
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
                // grained enough; in practice, it is better to use ">=".
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
                if (destFile.exists() && destFile.lastModified() >= srcFile.lastModified())
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
                    continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
                destFile.getParentFile().mkdirs();
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
                mainOpts.add("-compile");
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
                mainOpts.add(srcFile.getPath());
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
                mainOpts.add(destFile.getPath());
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
                mainOpts.add(superclass);
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
                count++;
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        if (mainOpts.size() > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
            log("Generating " + count + " resource files to " + destDir, Project.MSG_INFO);
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
            CompileProperties cp = new CompileProperties();
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
            cp.setLog(log);
4700
d0ef13314ec4 6764569: [PATCH] Fix unused imports in list resource bundles
jjg
parents: 10
diff changeset
    92
            boolean ok = cp.run(mainOpts.toArray(new String[mainOpts.size()]));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
            if (!ok)
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
                throw new BuildException("CompileProperties failed.");
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    private File srcDir;
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    private File destDir;
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    private String superclass = "java.util.ListResourceBundle";
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
}