Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 17 jdk.jlink.jmod - JLink Tool
JDK 17 jdk.jlink.jmod is the JMOD file for JDK 17 JLink tool,
which can be invoked by the "jlink" command.
JDK 17 JLink tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jlink.jmod.
JDK 17 JLink tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JLink tool source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.jlink.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/tools/jlink/internal/JmodArchive.java
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package jdk.tools.jlink.internal;
import java.io.IOException;
import java.io.InputStream;
import java.io.UncheckedIOException;
import java.nio.file.Path;
import java.util.Objects;
import java.util.stream.Stream;
import jdk.internal.jmod.JmodFile;
import jdk.tools.jlink.internal.Archive.Entry.EntryType;
/**
* An Archive backed by a jmod file.
*/
public class JmodArchive implements Archive {
private static final String JMOD_EXT = ".jmod";
/**
* An entry located in a jmod file.
*/
public class JmodEntry extends Entry {
private final JmodFile.Entry entry;
JmodEntry(String path, String name, EntryType type,
JmodFile.Entry entry) {
super(JmodArchive.this, path, name, type);
this.entry = Objects.requireNonNull(entry);
}
/**
* Returns the number of uncompressed bytes for this entry.
*/
@Override
public long size() {
return entry.size();
}
@Override
public InputStream stream() throws IOException {
return jmodFile.getInputStream(entry.section(), entry.name());
}
}
private final Path file;
private final String moduleName;
private JmodFile jmodFile;
public JmodArchive(String mn, Path jmod) {
Objects.requireNonNull(mn);
Objects.requireNonNull(jmod.getFileName());
String filename = jmod.toString();
if (!filename.endsWith(JMOD_EXT)) {
throw new UnsupportedOperationException("Unsupported format: " + filename);
}
this.moduleName = mn;
this.file = jmod;
}
@Override
public String moduleName() {
return moduleName;
}
@Override
public Path getPath() {
return file;
}
@Override
public Stream<Entry> entries() {
ensureOpen();
return jmodFile.stream()
.map(this::toEntry);
}
@Override
public void open() throws IOException {
if (jmodFile != null) {
jmodFile.close();
}
this.jmodFile = new JmodFile(file);
}
@Override
public void close() throws IOException {
if (jmodFile != null) {
jmodFile.close();
}
}
private void ensureOpen() {
if (jmodFile == null) {
try {
open();
} catch(IOException ioe){
throw new UncheckedIOException(ioe);
}
}
}
private EntryType toEntryType(JmodFile.Section section) {
switch (section) {
case CLASSES:
return EntryType.CLASS_OR_RESOURCE;
case CONFIG:
return EntryType.CONFIG;
case HEADER_FILES:
return EntryType.HEADER_FILE;
case LEGAL_NOTICES:
return EntryType.LEGAL_NOTICE;
case MAN_PAGES:
return EntryType.MAN_PAGE;
case NATIVE_LIBS:
return EntryType.NATIVE_LIB;
case NATIVE_CMDS:
return EntryType.NATIVE_CMD;
default:
throw new InternalError("unexpected entry: " + section);
}
}
private Entry toEntry(JmodFile.Entry entry) {
EntryType type = toEntryType(entry.section());
String prefix = entry.section().jmodDir();
String name = entry.name();
String path = prefix + "/" + name;
String resourceName = name;
// The resource name represents the path of ResourcePoolEntry
// and its subpath defines the ultimate path to be written
// to the image relative to the directory corresponding to that
// resource type.
//
// For classes and resources, the resource name does not have
// a prefix (<package>/<name>). They will be written to the jimage.
//
// For other kind of entries, it will keep the section name as
// the prefix for unique identification. The subpath (taking
// out the section name) is the pathname to be written to the
// corresponding directory in the image.
//
if (type == EntryType.LEGAL_NOTICE) {
// legal notices are written to per-module directory
resourceName = prefix + "/" + moduleName + "/" + name;
} else if (type != EntryType.CLASS_OR_RESOURCE) {
resourceName = path;
}
return new JmodEntry(path, resourceName, type, entry);
}
@Override
public int hashCode() {
return Objects.hash(file, moduleName);
}
@Override
public boolean equals(Object obj) {
if (obj instanceof JmodArchive) {
JmodArchive other = (JmodArchive)obj;
return Objects.equals(file, other.file) &&
Objects.equals(moduleName, other.moduleName);
}
return false;
}
}
⏎ jdk/tools/jlink/internal/JmodArchive.java
Or download all of them as a single archive file:
File name: jdk.jlink-17.0.5-src.zip File size: 164180 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jpackage.jmod - JPackage Tool
2023-08-03, ≈13🔥, 0💬
Popular Posts:
What Is commons-collections4-4.4 .jar?commons-collections4-4.4 .jaris the JAR file for Apache Common...
Apache Commons Lang 3 is the 3rd version of Apache Commons Lang, which provides a host of helper uti...
What Is HttpComponents httpclient-4.2.2.jar? HttpComponents httpclient-4.2.2.jar is the JAR file for...
JDK 11 jdk.dynalink.jmod is the JMOD file for JDK 11 Dynamic Linking module. JDK 11 Dynamic Linking ...
kernel.jar is a component in iText Java library to provide low-level functionalities. iText Java lib...