jaxp/make/tools/StripProperties/StripPropertiesTask.java
author swamyv
Tue, 19 Aug 2008 12:46:34 -0700
changeset 1085 98cd842c1c5a
parent 6 7f561c08de6b
permissions -rw-r--r--
6736461: ThreadMXBean Locks.java fails intermittently. Summary: Fixed the test to wait for the right state before calling check thread information. Reviewed-by: jjh
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
7f561c08de6b Initial load
duke
parents:
diff changeset
     1
/*
7f561c08de6b Initial load
duke
parents:
diff changeset
     2
 * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
7f561c08de6b Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7f561c08de6b Initial load
duke
parents:
diff changeset
     4
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
7f561c08de6b Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
7f561c08de6b Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
7f561c08de6b Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
7f561c08de6b Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
7f561c08de6b Initial load
duke
parents:
diff changeset
    10
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
7f561c08de6b Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7f561c08de6b Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
7f561c08de6b Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
7f561c08de6b Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
7f561c08de6b Initial load
duke
parents:
diff changeset
    16
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
7f561c08de6b Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
7f561c08de6b Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7f561c08de6b Initial load
duke
parents:
diff changeset
    20
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
7f561c08de6b Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
7f561c08de6b Initial load
duke
parents:
diff changeset
    23
 * have any questions.
7f561c08de6b Initial load
duke
parents:
diff changeset
    24
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    25
7f561c08de6b Initial load
duke
parents:
diff changeset
    26
import java.io.File;
7f561c08de6b Initial load
duke
parents:
diff changeset
    27
import java.util.ArrayList;
7f561c08de6b Initial load
duke
parents:
diff changeset
    28
import java.util.List;
7f561c08de6b Initial load
duke
parents:
diff changeset
    29
7f561c08de6b Initial load
duke
parents:
diff changeset
    30
import org.apache.tools.ant.BuildException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    31
import org.apache.tools.ant.DirectoryScanner;
7f561c08de6b Initial load
duke
parents:
diff changeset
    32
import org.apache.tools.ant.Project;
7f561c08de6b Initial load
duke
parents:
diff changeset
    33
import org.apache.tools.ant.taskdefs.MatchingTask;
7f561c08de6b Initial load
duke
parents:
diff changeset
    34
7f561c08de6b Initial load
duke
parents:
diff changeset
    35
public class StripPropertiesTask extends MatchingTask {
7f561c08de6b Initial load
duke
parents:
diff changeset
    36
    public void setSrcDir(File srcDir) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    37
        this.srcDir = srcDir;
7f561c08de6b Initial load
duke
parents:
diff changeset
    38
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    39
7f561c08de6b Initial load
duke
parents:
diff changeset
    40
    public void setDestDir(File destDir) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    41
        this.destDir = destDir;
7f561c08de6b Initial load
duke
parents:
diff changeset
    42
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    43
7f561c08de6b Initial load
duke
parents:
diff changeset
    44
    public void execute() {
7f561c08de6b Initial load
duke
parents:
diff changeset
    45
        StripProperties.Log log = new StripProperties.Log() {
7f561c08de6b Initial load
duke
parents:
diff changeset
    46
            public void error(String msg, Exception e) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    47
                log(msg, Project.MSG_ERR);
7f561c08de6b Initial load
duke
parents:
diff changeset
    48
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
    49
            public void info(String msg) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    50
                log(msg, Project.MSG_INFO);
7f561c08de6b Initial load
duke
parents:
diff changeset
    51
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
    52
            public void verbose(String msg) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    53
                log(msg, Project.MSG_VERBOSE);
7f561c08de6b Initial load
duke
parents:
diff changeset
    54
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
    55
        };
7f561c08de6b Initial load
duke
parents:
diff changeset
    56
        List<String> mainOpts = new ArrayList<String>();
7f561c08de6b Initial load
duke
parents:
diff changeset
    57
        int count = 0;
7f561c08de6b Initial load
duke
parents:
diff changeset
    58
        DirectoryScanner s = getDirectoryScanner(srcDir);
7f561c08de6b Initial load
duke
parents:
diff changeset
    59
        for (String path: s.getIncludedFiles()) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    60
            if (path.endsWith(".properties")) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    61
                File srcFile = new File(srcDir, path);
7f561c08de6b Initial load
duke
parents:
diff changeset
    62
                File destFile = new File(destDir, path);
7f561c08de6b Initial load
duke
parents:
diff changeset
    63
                // Arguably, the comparison in the next line should be ">", not ">="
7f561c08de6b Initial load
duke
parents:
diff changeset
    64
                // but that assumes the resolution of the last modified time is fine
7f561c08de6b Initial load
duke
parents:
diff changeset
    65
                // grained enough; in practice, it is better to use ">=".
7f561c08de6b Initial load
duke
parents:
diff changeset
    66
                if (destFile.exists() && destFile.lastModified() >= srcFile.lastModified())
7f561c08de6b Initial load
duke
parents:
diff changeset
    67
                    continue;
7f561c08de6b Initial load
duke
parents:
diff changeset
    68
                destFile.getParentFile().mkdirs();
7f561c08de6b Initial load
duke
parents:
diff changeset
    69
                mainOpts.add("-strip");
7f561c08de6b Initial load
duke
parents:
diff changeset
    70
                mainOpts.add(srcFile.getPath());
7f561c08de6b Initial load
duke
parents:
diff changeset
    71
                mainOpts.add(destFile.getPath());
7f561c08de6b Initial load
duke
parents:
diff changeset
    72
                count++;
7f561c08de6b Initial load
duke
parents:
diff changeset
    73
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
    74
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    75
        if (mainOpts.size() > 0) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    76
            log("Generating " + count + " resource files to " + destDir, Project.MSG_INFO);
7f561c08de6b Initial load
duke
parents:
diff changeset
    77
            StripProperties sp = new StripProperties();
7f561c08de6b Initial load
duke
parents:
diff changeset
    78
            sp.setLog(log);
7f561c08de6b Initial load
duke
parents:
diff changeset
    79
            boolean ok = sp.run((String[])mainOpts.toArray(new String[mainOpts.size()]));
7f561c08de6b Initial load
duke
parents:
diff changeset
    80
            if (!ok)
7f561c08de6b Initial load
duke
parents:
diff changeset
    81
                throw new BuildException("StripProperties failed.");
7f561c08de6b Initial load
duke
parents:
diff changeset
    82
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    83
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    84
7f561c08de6b Initial load
duke
parents:
diff changeset
    85
    private File srcDir;
7f561c08de6b Initial load
duke
parents:
diff changeset
    86
    private File destDir;
7f561c08de6b Initial load
duke
parents:
diff changeset
    87
}