jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/StripDebugPlugin.java
author redestad
Fri, 17 Feb 2017 18:12:55 +0100
changeset 43837 51a9f82cff03
parent 39834 53a6fb443c20
permissions -rw-r--r--
8175026: Capture build-time parameters to --generate-jli-classes Reviewed-by: mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     2
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * accompanied this code).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    23
 * questions.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    24
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    25
package jdk.tools.jlink.internal.plugins;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    26
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    27
import java.util.function.Predicate;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    28
import jdk.internal.org.objectweb.asm.ClassReader;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    29
import jdk.internal.org.objectweb.asm.ClassWriter;
39834
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    30
import jdk.tools.jlink.plugin.ResourcePool;
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    31
import jdk.tools.jlink.plugin.ResourcePoolBuilder;
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    32
import jdk.tools.jlink.plugin.ResourcePoolEntry;
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39308
diff changeset
    33
import jdk.tools.jlink.plugin.Plugin;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
/**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
 * Strip debug attributes plugin
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
 */
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39308
diff changeset
    39
public final class StripDebugPlugin implements Plugin {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
    public static final String NAME = "strip-debug";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
    private final Predicate<String> predicate;
39042
52db877f18db 8159206: All jlink or jmod tests failing
jlaskey
parents: 38320
diff changeset
    42
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
    public StripDebugPlugin() {
39042
52db877f18db 8159206: All jlink or jmod tests failing
jlaskey
parents: 38320
diff changeset
    44
        this((path) -> false);
52db877f18db 8159206: All jlink or jmod tests failing
jlaskey
parents: 38320
diff changeset
    45
    }
52db877f18db 8159206: All jlink or jmod tests failing
jlaskey
parents: 38320
diff changeset
    46
52db877f18db 8159206: All jlink or jmod tests failing
jlaskey
parents: 38320
diff changeset
    47
    StripDebugPlugin(Predicate<String> predicate) {
52db877f18db 8159206: All jlink or jmod tests failing
jlaskey
parents: 38320
diff changeset
    48
        this.predicate = predicate;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    49
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    50
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
    @Override
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    52
    public String getName() {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
        return NAME;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
    @Override
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
    public String getDescription() {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
        return PluginsResourceBundle.getDescription(NAME);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    61
    @Override
39834
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    62
    public ResourcePool transform(ResourcePool in, ResourcePoolBuilder out) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
        //remove *.diz files as well as debug attributes.
38320
e24c7029e8ba 8156914: jlink API minor cleanups
sundar
parents: 36511
diff changeset
    64
        in.transformAndCopy((resource) -> {
39834
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    65
            ResourcePoolEntry res = resource;
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    66
            if (resource.type().equals(ResourcePoolEntry.Type.CLASS_OR_RESOURCE)) {
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    67
                String path = resource.path();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
                if (path.endsWith(".class")) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
                    if (path.endsWith("module-info.class")) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
                        // XXX. Do we have debug info? Is Asm ready for module-info?
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
                    } else {
39834
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    72
                        ClassReader reader = new ClassReader(resource.contentBytes());
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
                        ClassWriter writer = new ClassWriter(ClassWriter.COMPUTE_MAXS);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
                        reader.accept(writer, ClassReader.SKIP_DEBUG);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
                        byte[] content = writer.toByteArray();
39834
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    76
                        res = resource.copyWithContent(content);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
                }
39834
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    79
            } else if (predicate.test(res.path())) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
                res = null;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
            return res;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
        }, out);
39834
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    84
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39321
diff changeset
    85
        return out.build();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
}