src/java.base/share/classes/jdk/internal/module/ModuleInfoWriter.java
author alanb
Thu, 07 Dec 2017 16:45:19 +0000
changeset 48203 4fd79561f38f
parent 47489 6d0e943bcd24
child 59133 580fb715b29d
permissions -rw-r--r--
8191867: Module attribute in 54.0+ class file cannot contains a requires java.base with ACC_TRANSITIVE or ACC_STATIC_PHASE Reviewed-by: psandoz, mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
     2
 * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
36511
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.internal.module;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    26
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    27
import java.io.IOException;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    28
import java.io.OutputStream;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    29
import java.lang.module.ModuleDescriptor;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
import java.nio.ByteBuffer;
47489
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    31
import java.util.Map;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41817
diff changeset
    32
import java.util.stream.Stream;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
import jdk.internal.org.objectweb.asm.ClassWriter;
47489
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    35
import jdk.internal.org.objectweb.asm.ModuleVisitor;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
import jdk.internal.org.objectweb.asm.Opcodes;
47489
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    37
import jdk.internal.org.objectweb.asm.commons.ModuleTargetAttribute;
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    38
import static jdk.internal.org.objectweb.asm.Opcodes.*;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
/**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
 * Utility class to write a ModuleDescriptor as a module-info.class.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
public final class ModuleInfoWriter {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    45
47489
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    46
    private static final Map<ModuleDescriptor.Modifier, Integer>
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    47
        MODULE_MODS_TO_FLAGS = Map.of(
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    48
            ModuleDescriptor.Modifier.OPEN, ACC_OPEN,
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    49
            ModuleDescriptor.Modifier.SYNTHETIC, ACC_SYNTHETIC,
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    50
            ModuleDescriptor.Modifier.MANDATED, ACC_MANDATED
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    51
        );
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    52
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    53
    private static final Map<ModuleDescriptor.Requires.Modifier, Integer>
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    54
        REQUIRES_MODS_TO_FLAGS = Map.of(
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    55
            ModuleDescriptor.Requires.Modifier.TRANSITIVE, ACC_TRANSITIVE,
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    56
            ModuleDescriptor.Requires.Modifier.STATIC, ACC_STATIC_PHASE,
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    57
            ModuleDescriptor.Requires.Modifier.SYNTHETIC, ACC_SYNTHETIC,
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    58
            ModuleDescriptor.Requires.Modifier.MANDATED, ACC_MANDATED
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    59
        );
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    60
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    61
    private static final Map<ModuleDescriptor.Exports.Modifier, Integer>
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    62
        EXPORTS_MODS_TO_FLAGS = Map.of(
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    63
            ModuleDescriptor.Exports.Modifier.SYNTHETIC, ACC_SYNTHETIC,
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    64
            ModuleDescriptor.Exports.Modifier.MANDATED, ACC_MANDATED
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    65
        );
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    66
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    67
    private static final Map<ModuleDescriptor.Opens.Modifier, Integer>
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    68
        OPENS_MODS_TO_FLAGS = Map.of(
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    69
            ModuleDescriptor.Opens.Modifier.SYNTHETIC, ACC_SYNTHETIC,
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    70
            ModuleDescriptor.Opens.Modifier.MANDATED, ACC_MANDATED
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    71
        );
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    72
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    73
    private static final String[] EMPTY_STRING_ARRAY = new String[0];
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    74
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
    private ModuleInfoWriter() { }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
     * Writes the given module descriptor to a module-info.class file,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
     * returning it in a byte array.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
     */
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
    81
    private static byte[] toModuleInfo(ModuleDescriptor md, ModuleTarget target) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
        ClassWriter cw = new ClassWriter(0);
48203
4fd79561f38f 8191867: Module attribute in 54.0+ class file cannot contains a requires java.base with ACC_TRANSITIVE or ACC_STATIC_PHASE
alanb
parents: 47489
diff changeset
    83
        cw.visit(Opcodes.V10, ACC_MODULE, "module-info", null, null, null);
47489
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    84
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    85
        int moduleFlags = md.modifiers().stream()
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    86
                .map(MODULE_MODS_TO_FLAGS::get)
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    87
                .reduce(0, (x, y) -> (x | y));
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    88
        String vs = md.rawVersion().orElse(null);
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    89
        ModuleVisitor mv = cw.visitModule(md.name(), moduleFlags, vs);
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    90
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    91
        // requires
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    92
        for (ModuleDescriptor.Requires r : md.requires()) {
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    93
            int flags = r.modifiers().stream()
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    94
                    .map(REQUIRES_MODS_TO_FLAGS::get)
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    95
                    .reduce(0, (x, y) -> (x | y));
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    96
            vs = r.rawCompiledVersion().orElse(null);
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    97
            mv.visitRequire(r.name(), flags, vs);
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
    98
        }
41817
b90ad1de93ea 8168789: ModuleReader.list and ModuleFinder.of update
alanb
parents: 38425
diff changeset
    99
47489
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   100
        // exports
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   101
        for (ModuleDescriptor.Exports e : md.exports()) {
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   102
            int flags = e.modifiers().stream()
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   103
                    .map(EXPORTS_MODS_TO_FLAGS::get)
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   104
                    .reduce(0, (x, y) -> (x | y));
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   105
            String[] targets = e.targets().toArray(EMPTY_STRING_ARRAY);
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   106
            mv.visitExport(e.source().replace('.', '/'), flags, targets);
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   107
        }
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   108
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   109
        // opens
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   110
        for (ModuleDescriptor.Opens opens : md.opens()) {
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   111
            int flags = opens.modifiers().stream()
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   112
                    .map(OPENS_MODS_TO_FLAGS::get)
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   113
                    .reduce(0, (x, y) -> (x | y));
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   114
            String[] targets = opens.targets().toArray(EMPTY_STRING_ARRAY);
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   115
            mv.visitOpen(opens.source().replace('.', '/'), flags, targets);
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   116
        }
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   117
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   118
        // uses
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   119
        md.uses().stream().map(sn -> sn.replace('.', '/')).forEach(mv::visitUse);
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   120
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   121
        // provides
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   122
        for (ModuleDescriptor.Provides p : md.provides()) {
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   123
            mv.visitProvide(p.service().replace('.', '/'),
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   124
                            p.providers()
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   125
                                .stream()
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   126
                                .map(pn -> pn.replace('.', '/'))
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   127
                                .toArray(String[]::new));
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   128
        }
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   129
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   130
        // add the ModulePackages attribute when there are packages that aren't
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   131
        // exported or open
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41817
diff changeset
   132
        Stream<String> exported = md.exports().stream()
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41817
diff changeset
   133
                .map(ModuleDescriptor.Exports::source);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41817
diff changeset
   134
        Stream<String> open = md.opens().stream()
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41817
diff changeset
   135
                .map(ModuleDescriptor.Opens::source);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41817
diff changeset
   136
        long exportedOrOpen = Stream.concat(exported, open).distinct().count();
47489
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   137
        if (md.packages().size() > exportedOrOpen) {
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   138
            md.packages().stream()
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   139
                    .map(pn -> pn.replace('.', '/'))
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   140
                    .forEach(mv::visitPackage);
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   141
        }
41817
b90ad1de93ea 8168789: ModuleReader.list and ModuleFinder.of update
alanb
parents: 38425
diff changeset
   142
47489
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   143
        // ModuleMainClass attribute
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   144
        md.mainClass()
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   145
            .map(mc -> mc.replace('.', '/'))
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   146
            .ifPresent(mv::visitMainClass);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   147
47489
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   148
        mv.visitEnd();
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   149
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   150
        // write ModuleTarget attribute if there is a target platform
6d0e943bcd24 8186236: ModuleInfoExtender should be ASM6 aware
alanb
parents: 47216
diff changeset
   151
        if (target != null && target.targetPlatform().length() > 0) {
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44359
diff changeset
   152
            cw.visitAttribute(new ModuleTargetAttribute(target.targetPlatform()));
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   153
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   154
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   155
        cw.visitEnd();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   156
        return cw.toByteArray();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   157
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   158
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   159
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   160
     * Writes a module descriptor to the given output stream as a
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   161
     * module-info.class.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   162
     */
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   163
    public static void write(ModuleDescriptor descriptor,
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   164
                             ModuleTarget target,
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   165
                             OutputStream out)
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   166
        throws IOException
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   167
    {
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   168
        byte[] bytes = toModuleInfo(descriptor, target);
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   169
        out.write(bytes);
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   170
    }
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   171
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   172
    /**
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   173
     * Writes a module descriptor to the given output stream as a
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   174
     * module-info.class.
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   175
     */
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   176
    public static void write(ModuleDescriptor descriptor, OutputStream out)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   177
        throws IOException
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   178
    {
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   179
        write(descriptor, null, out);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   180
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   181
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   182
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   183
     * Returns a {@code ByteBuffer} containing the given module descriptor
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   184
     * in module-info.class format.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   185
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   186
    public static ByteBuffer toByteBuffer(ModuleDescriptor descriptor) {
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 42703
diff changeset
   187
        byte[] bytes = toModuleInfo(descriptor, null);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   188
        return ByteBuffer.wrap(bytes);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   189
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   190
}