jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/JmodArchive.java
author jlaskey
Tue, 28 Jun 2016 16:07:23 -0300
changeset 39308 f6517755057f
parent 36511 9d0388c6b336
child 41352 f9844bad9052
permissions -rw-r--r--
8160459: jlink minor code clean up 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) 2014, 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
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    26
package jdk.tools.jlink.internal;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    27
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    28
import java.nio.file.Path;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    29
import java.util.Objects;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
import jdk.tools.jlink.internal.Archive.Entry.EntryType;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    31
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    32
/**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
 * An Archive backed by a jmod file.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
public class JmodArchive extends JarArchive {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
39308
f6517755057f 8160459: jlink minor code clean up
jlaskey
parents: 36511
diff changeset
    37
    private static final String JMOD_EXT    = ".jmod";
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
    private static final String MODULE_NAME = "module";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
    private static final String MODULE_INFO = "module-info.class";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
    private static final String CLASSES     = "classes";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
    private static final String NATIVE_LIBS = "native";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
    private static final String NATIVE_CMDS = "bin";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
    private static final String CONFIG      = "conf";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    45
    public JmodArchive(String mn, Path jmod) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    46
        super(mn, jmod);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    47
        String filename = Objects.requireNonNull(jmod.getFileName()).toString();
39308
f6517755057f 8160459: jlink minor code clean up
jlaskey
parents: 36511
diff changeset
    48
        if (!filename.endsWith(JMOD_EXT)) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    49
            throw new UnsupportedOperationException("Unsupported format: " + filename);
39308
f6517755057f 8160459: jlink minor code clean up
jlaskey
parents: 36511
diff changeset
    50
        }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    52
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
    @Override
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
    EntryType toEntryType(String entryName) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
        String section = getSection(entryName.replace('\\', '/'));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
        switch (section) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
            case CLASSES:
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
                return EntryType.CLASS_OR_RESOURCE;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
            case NATIVE_LIBS:
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
                return EntryType.NATIVE_LIB;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    61
            case NATIVE_CMDS:
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    62
                return EntryType.NATIVE_CMD;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
            case CONFIG:
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    64
                return EntryType.CONFIG;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
            case MODULE_NAME:
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    66
                return EntryType.MODULE_NAME;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    67
            default:
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
                throw new InternalError("unexpected entry: " + section);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
    private static String getSection(String entryName) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
        int i = entryName.indexOf('/');
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
        // Unnamed section.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
        String section = "";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
        if (i > 0) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
            section = entryName.substring(0, entryName.indexOf('/'));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
        return section;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
    @Override
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
    String getFileName(String entryName) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
        entryName = entryName.replace('\\', '/');
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
        return entryName.substring(entryName.indexOf('/') + 1);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
}