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 jdk.internal.jvmstat.jmod - Internal JVM Stat Module
JDK 17 jdk.internal.JVM Stat.jmod is the JMOD file for JDK 17 Internal Jvmstat module.
JDK 17 Internal JVM Stat module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.internal.jvmstat.jmod.
JDK 17 Internal JVM Stat module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Internal JVM Stat module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.internal.jvmstat.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/jvmstat/perfdata/monitor/protocol/local/PerfDataFile.java
/* * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.jvmstat.perfdata.monitor.protocol.local; import java.io.File; import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; import java.io.FilenameFilter; import sun.jvmstat.PlatformSupport; /** * Class to provide translations from the local Vm Identifier * name space into the file system name space and vice-versa. * <p> * Provides a factory for creating a File object to the backing * store file for instrumentation shared memory region for a JVM * identified by its Local Java Virtual Machine Identifier, or * <em>lvmid</em>. * * @author Brian Doherty * @since 1.5 * @see java.io.File */ public class PerfDataFile { private PerfDataFile() { }; /** * The file name prefix for PerfData shared memory files. * <p> * This prefix must be kept in sync with the prefix used by the JVM. */ public static final String dirNamePrefix = "hsperfdata_"; /** * The directory name pattern for the user directories. */ public static final String userDirNamePattern = "hsperfdata_\\S*"; /** * The file name pattern for PerfData shared memory files. * <p> * This pattern must be kept in synch with the file name pattern * used by the 1.4.2 and later HotSpot JVM. */ public static final String fileNamePattern = "^[0-9]+$"; /** * The file name pattern for 1.4.1 PerfData shared memory files. * <p> * This pattern must be kept in synch with the file name pattern * used by the 1.4.1 HotSpot JVM. */ public static final String tmpFileNamePattern = "^hsperfdata_[0-9]+(_[1-2]+)?$"; /** * Platform Specific methods for looking up temporary directories * and process IDs. */ private static final PlatformSupport platSupport = PlatformSupport.getInstance(); /** * Get a File object for the instrumentation backing store file * for the JVM identified by the given local Vm Identifier. * <p> * This method looks for the most up to date backing store file for * the given {@code lvmid}. It will search all the user specific * directories in the temporary directory for the host operating * system, which may be influenced by platform specific environment * variables. * * @param lvmid the local Java Virtual Machine Identifier for the target * @return File - a File object to the backing store file for the named * shared memory region of the target JVM. * @see java.io.File * @see #getTempDirectories() */ public static File getFile(int lvmid) { if (lvmid == 0) { /* * lvmid == 0 is used to indicate the current Java Virtual Machine. * If the SDK provided an API to get a unique Java Virtual Machine * identifier, then a filename could be constructed with that * identifier. In absence of such an api, return null. */ return null; } List<String> tmpDirs = getTempDirectories(null, lvmid); File newest = null; for (String dir : tmpDirs) { /* * iterate over all files in all directories in this tmpDir that * match the file name patterns. */ File tmpDir = new File(dir); String[] files = tmpDir.list(new FilenameFilter() { public boolean accept(File dir, String name) { if (!name.startsWith(dirNamePrefix)) { return false; } File candidate = new File(dir, name); return ((candidate.isDirectory() || candidate.isFile()) && candidate.canRead()); } }); long newestTime = 0; for (String file : files) { File f = new File(dir + file); File candidate = null; if (f.exists() && f.isDirectory()) { /* * found a directory matching the name patterns. This * is a 1.4.2 hsperfdata_<user> directory. Check for * file named <lvmid> in that directory */ String name = f.getAbsolutePath() + File.separator + lvmid; candidate = new File(name); // Try NameSpace Id if Host Id doesn't exist. if (!candidate.exists()) { name = f.getAbsolutePath() + File.separator + platSupport.getNamespaceVmId(lvmid); candidate = new File(name); } } else if (f.exists() && f.isFile()) { /* * found a file matching the name patterns. This * is a 1.4.1 hsperfdata_<lvmid> file. */ candidate = f; } else { // unexpected - let conditional below filter this one out candidate = f; } if (candidate.exists() && candidate.isFile() && candidate.canRead()) { long modTime = candidate.lastModified(); if (modTime >= newestTime) { newestTime = modTime; newest = candidate; } } } } return newest; } /** * Return the File object for the backing store file for the specified Java * Virtual Machine. * <p> * This method looks for the most up to date backing store file for * the JVM identified by the given user name and lvmid. The directory * searched is the temporary directory for the host operating system, * which may be influenced by environment variables. * * @param user the user name * @param lvmid the local Java Virtual Machine Identifier for the target * @return File - a File object to the backing store file for the named * shared memory region of the target JVM. * @see java.io.File * @see #getTempDirectories() */ public static File getFile(String user, int lvmid) { if (lvmid == 0) { /* * lvmid == 0 is used to indicate the current Java Virtual Machine. * If the SDK provided an API to get a unique Java Virtual Machine * identifier, then a filename could be constructed with that * identifier. In absence of such an api, return null. */ return null; } // first try for 1.4.2 and later JVMs List<String> tmpDirs = getTempDirectories(user, lvmid); String basename; File f; for (String dir : tmpDirs) { basename = dir + lvmid; f = new File(basename); if (f.exists() && f.isFile() && f.canRead()) { return f; } // Try NameSpace Id if Host Id doesn't exist. basename = dir + platSupport.getNamespaceVmId(lvmid); f = new File(basename); if (f.exists() && f.isFile() && f.canRead()) { return f; } } // No hit on 1.4.2 JVMs, try 1.4.1 files long newestTime = 0; File newest = null; for (int i = 0; i < 2; i++) { if (i == 0) { basename = getTempDirectory() + Integer.toString(lvmid); } else { basename = getTempDirectory() + Integer.toString(lvmid) + Integer.toString(i); } f = new File(basename); if (f.exists() && f.isFile() && f.canRead()) { long modTime = f.lastModified(); if (modTime >= newestTime) { newestTime = modTime; newest = f; } } } return newest; } /** * Method to extract a local Java Virtual Machine Identifier from the * file name of the given File object. * * @param file A File object representing the name of a * shared memory region for a target JVM * @return int - the local Java Virtual Machine Identifier for the target * associated with the file * @throws java.lang.IllegalArgumentException Thrown if the file name * does not conform to the expected pattern */ public static int getLocalVmId(File file) { try { // try 1.4.2 and later format first return(platSupport.getLocalVmId(file)); } catch (NumberFormatException e) { } // now try the 1.4.1 format String name = file.getName(); if (name.startsWith(dirNamePrefix)) { int first = name.indexOf('_'); int last = name.lastIndexOf('_'); try { if (first == last) { return Integer.parseInt(name.substring(first + 1)); } else { return Integer.parseInt(name.substring(first + 1, last)); } } catch (NumberFormatException e) { } } throw new IllegalArgumentException("file name does not match pattern"); } /** * Return the name of the temporary directory being searched for * HotSpot PerfData backing store files. * <p> * This method generally returns the value of the java.io.tmpdir * property. However, on some platforms it may return a different * directory, as the JVM implementation may store the PerfData backing * store files in a different directory for performance reasons. * * @return String - the name of the temporary directory. */ public static String getTempDirectory() { return PlatformSupport.getTemporaryDirectory(); } /** * Return the name of the temporary directory to be searched * for HotSpot PerfData backing store files for a given user. * <p> * This method generally returns the name of a subdirectory of * the directory indicated in the java.io.tmpdir property. However, * on some platforms it may return a different directory, as the * JVM implementation may store the PerfData backing store files * in a different directory for performance reasons. * * @return String - the name of the temporary directory. */ public static String getTempDirectory(String user) { return getTempDirectory() + dirNamePrefix + user + File.separator; } /** * Return the names of the temporary directories being searched for * HotSpot PerfData backing store files. * <p> * This method returns the traditional host temp directory but also * includes a list of temp directories used by containers. * * @return List<String> - A List of temporary directories to search. */ public static List<String> getTempDirectories(String userName, int vmid) { List<String> list = platSupport.getTemporaryDirectories(vmid); if (userName == null) { return list; } List<String> nameList = list.stream() .map(name -> name + dirNamePrefix + userName + File.separator) .collect(Collectors.toList()); return nameList; } }
⏎ sun/jvmstat/perfdata/monitor/protocol/local/PerfDataFile.java
Or download all of them as a single archive file:
File name: jdk.internal.jvmstat-17.0.5-src.zip File size: 89372 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.internal.le.jmod - Internal Line Editing Module
2023-08-25, 5474👍, 0💬
Popular Posts:
How to download and install iText7-Core-7.1.4.zip? iText7-Core-7.1.4.zip is the binary package of iT...
The JSR 105 XML Digital Signature 1.0.1 FCS implementation provides an API and implementation that a...
JDK 11 java.security.jgss.jmod is the JMOD file for JDK 11 Security JGSS (Java Generic Security Serv...
What Is javamail1_1_3.zip? javamail1_1_3.zip is the binary package of JavaMail API 1.1.3 in ZIP form...
What Is ojdbc8.jar for Oracle 12c R2? ojdbc8.jar for Oracle 12c R2 is the JAR files of ojdbc.jar, JD...