Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
Collections:
Other Resources:
JDK 17 java.desktop.jmod - Desktop Module
JDK 17 java.desktop.jmod is the JMOD file for JDK 17 Desktop module.
JDK 17 Desktop module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.desktop.jmod.
JDK 17 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Desktop module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.desktop.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/media/sound/ModelByteBuffer.java
/* * Copyright (c) 2007, 2021, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.media.sound; import java.io.ByteArrayInputStream; import java.io.DataInputStream; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.RandomAccessFile; import java.util.Collection; /** * This class is a pointer to a binary array either in memory or on disk. * * @author Karl Helgason */ public final class ModelByteBuffer { private ModelByteBuffer root = this; private File file; private long fileoffset; private byte[] buffer; private long offset; private final long len; private class RandomFileInputStream extends InputStream { private final RandomAccessFile raf; private long left; private long mark = 0; private long markleft = 0; RandomFileInputStream() throws IOException { raf = new RandomAccessFile(root.file, "r"); raf.seek(root.fileoffset + arrayOffset()); left = capacity(); } @Override public int available() throws IOException { if (left > Integer.MAX_VALUE) return Integer.MAX_VALUE; return (int)left; } @Override public synchronized void mark(int readlimit) { try { mark = raf.getFilePointer(); markleft = left; } catch (IOException e) { //e.printStackTrace(); } } @Override public boolean markSupported() { return true; } @Override public synchronized void reset() throws IOException { raf.seek(mark); left = markleft; } @Override public long skip(long n) throws IOException { if( n < 0) return 0; if (n > left) n = left; long p = raf.getFilePointer(); raf.seek(p + n); left -= n; return n; } @Override public int read(byte[] b, int off, int len) throws IOException { if (len > left) len = (int)left; if (left == 0) return -1; len = raf.read(b, off, len); if (len == -1) return -1; left -= len; return len; } @Override public int read(byte[] b) throws IOException { int len = b.length; if (len > left) len = (int)left; if (left == 0) return -1; len = raf.read(b, 0, len); if (len == -1) return -1; left -= len; return len; } @Override public int read() throws IOException { if (left == 0) return -1; int b = raf.read(); if (b == -1) return -1; left--; return b; } @Override public void close() throws IOException { raf.close(); } } private ModelByteBuffer(ModelByteBuffer parent, long beginIndex, long endIndex, boolean independent) { this.root = parent.root; this.offset = 0; long parent_len = parent.len; if (beginIndex < 0) beginIndex = 0; if (beginIndex > parent_len) beginIndex = parent_len; if (endIndex < 0) endIndex = 0; if (endIndex > parent_len) endIndex = parent_len; if (beginIndex > endIndex) beginIndex = endIndex; offset = beginIndex; len = endIndex - beginIndex; if (independent) { buffer = root.buffer; if (root.file != null) { file = root.file; fileoffset = root.fileoffset + arrayOffset(); offset = 0; } else offset = arrayOffset(); root = this; } } public ModelByteBuffer(byte[] buffer) { this.buffer = buffer; this.offset = 0; this.len = buffer.length; } public ModelByteBuffer(byte[] buffer, int offset, int len) { this.buffer = buffer; this.offset = offset; this.len = len; } public ModelByteBuffer(File file) { this.file = file; this.fileoffset = 0; this.len = file.length(); } public ModelByteBuffer(File file, long offset, long len) { this.file = file; this.fileoffset = offset; this.len = len; } public void writeTo(OutputStream out) throws IOException { if (root.file != null && root.buffer == null) { try (InputStream is = getInputStream()) { is.transferTo(out); } } else out.write(array(), (int) arrayOffset(), (int) capacity()); } public InputStream getInputStream() { if (root.file != null && root.buffer == null) { try { return new RandomFileInputStream(); } catch (IOException e) { //e.printStackTrace(); return null; } } return new ByteArrayInputStream(array(), (int)arrayOffset(), (int)capacity()); } public ModelByteBuffer subbuffer(long beginIndex) { return subbuffer(beginIndex, capacity()); } public ModelByteBuffer subbuffer(long beginIndex, long endIndex) { return subbuffer(beginIndex, endIndex, false); } public ModelByteBuffer subbuffer(long beginIndex, long endIndex, boolean independent) { return new ModelByteBuffer(this, beginIndex, endIndex, independent); } public byte[] array() { return root.buffer; } public long arrayOffset() { if (root != this) return root.arrayOffset() + offset; return offset; } public long capacity() { return len; } public ModelByteBuffer getRoot() { return root; } public File getFile() { return file; } public long getFilePointer() { return fileoffset; } public static void loadAll(Collection<ModelByteBuffer> col) throws IOException { File selfile = null; RandomAccessFile raf = null; try { for (ModelByteBuffer mbuff : col) { mbuff = mbuff.root; if (mbuff.file == null) continue; if (mbuff.buffer != null) continue; if (selfile == null || !selfile.equals(mbuff.file)) { if (raf != null) { raf.close(); raf = null; } selfile = mbuff.file; raf = new RandomAccessFile(mbuff.file, "r"); } raf.seek(mbuff.fileoffset); byte[] buffer = new byte[(int) mbuff.capacity()]; int read = 0; int avail = buffer.length; while (read != avail) { if (avail - read > 65536) { raf.readFully(buffer, read, 65536); read += 65536; } else { raf.readFully(buffer, read, avail - read); read = avail; } } mbuff.buffer = buffer; mbuff.offset = 0; } } finally { if (raf != null) raf.close(); } } public void load() throws IOException { if (root != this) { root.load(); return; } if (buffer != null) return; if (file == null) { throw new IllegalStateException( "No file associated with this ByteBuffer!"); } DataInputStream is = new DataInputStream(getInputStream()); buffer = new byte[(int) capacity()]; offset = 0; is.readFully(buffer); is.close(); } public void unload() { if (root != this) { root.unload(); return; } if (file == null) { throw new IllegalStateException( "No file associated with this ByteBuffer!"); } root.buffer = null; } }
⏎ com/sun/media/sound/ModelByteBuffer.java
Or download all of them as a single archive file:
File name: java.desktop-17.0.5-src.zip File size: 9152233 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.instrument.jmod - Instrument Module
2023-09-16, 73677👍, 0💬
Popular Posts:
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
Where to find answers to frequently asked questions on Downloading and Installing ojdbc.jar - JDBC D...
commons-collections4-4.2 -sources.jaris the source JAR file for Apache Commons Collections 4.2, whic...
How to read XML document from socket connections with the socket\DelayedInput.java provided in the A...
Apache Log4j API provides the interface that applications should code to and provides the adapter co...