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 11 jdk.jfr.jmod - JFR Module
JDK 11 jdk.jfr.jmod is the JMOD file for JDK 11 JFR module.
JDK 11 JFR module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.jfr.jmod.
JDK 11 JFR module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 JFR module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.jfr.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/jfr/internal/jfc/JFCParserHandler.java
/*
* Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package jdk.jfr.internal.jfc;
import java.util.LinkedHashMap;
import java.util.Map;
import jdk.internal.org.xml.sax.Attributes;
import jdk.internal.org.xml.sax.SAXException;
import jdk.internal.org.xml.sax.helpers.DefaultHandler;
final class JFCParserHandler extends DefaultHandler {
private static final String ELEMENT_CONFIGURATION = "configuration";
private static final String ELEMENT_EVENT_TYPE = "event";
private static final String ELEMENT_SETTING = "setting";
private static final String ATTRIBUTE_NAME = "name";
private static final String ATTRIBUTE_LABEL = "label";
private static final String ATTRIBUTE_DESCRIPTION = "description";
private static final String ATTRIBUTE_PROVIDER = "provider";
private static final String ATTRIBUTE_VERSION = "version";
final Map<String, String> settings = new LinkedHashMap<String, String>();
private String currentEventPath;
private String currentSettingsName;
private StringBuilder currentCharacters;
String label;
String provider;
String description;
@Override
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
switch (qName.toLowerCase()) {
case ELEMENT_CONFIGURATION:
String version = attributes.getValue(ATTRIBUTE_VERSION);
if (version == null || !version.startsWith("2.")) {
throw new SAXException("This version of Flight Recorder can only read JFC file format version 2.x");
}
label = attributes.getValue(ATTRIBUTE_LABEL);
description = getOptional(attributes, ATTRIBUTE_DESCRIPTION, "");
provider = getOptional(attributes, ATTRIBUTE_PROVIDER, "");
break;
case ELEMENT_EVENT_TYPE:
currentEventPath = attributes.getValue(ATTRIBUTE_NAME);
break;
case ELEMENT_SETTING:
currentSettingsName = attributes.getValue(ATTRIBUTE_NAME);
break;
}
currentCharacters = null;
}
private String getOptional(Attributes attributes, String name, String defaultValue) {
String value = attributes.getValue(name);
return value == null ? defaultValue : value;
}
@Override
public void characters(char[] ch, int start, int length) throws SAXException {
if (currentCharacters == null) {
currentCharacters = new StringBuilder(length);
}
currentCharacters.append(ch, start, length);
}
@Override
public void endElement(String uri, String localName, String qName) {
switch (qName.toLowerCase()) {
case ELEMENT_CONFIGURATION:
break;
case ELEMENT_EVENT_TYPE:
currentEventPath = null;
break;
case ELEMENT_SETTING:
String settingsValue = currentCharacters == null ? "" : currentCharacters.toString();
settings.put(currentEventPath + "#" + currentSettingsName, "" + settingsValue);
currentSettingsName = null;
break;
}
}
public Map<String, String> getSettings() {
return settings;
}
}
⏎ jdk/jfr/internal/jfc/JFCParserHandler.java
Or download all of them as a single archive file:
File name: jdk.jfr-11.0.1-src.zip File size: 237632 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.jlink.jmod - JLink Tool
2020-06-30, ≈85🔥, 0💬
Popular Posts:
What Is jms.jar? I heard it's related to JMS (Java Message Service) 1.1? The if you have an jms.jar ...
What Is wstx-asl-3.2.8.jar? wstx-asl-3.2.8.jar is JAR file for the ASL component of Woodstox 3.2.8. ...
JDK 17 jdk.jfr.jmod is the JMOD file for JDK 17 JFR module. JDK 17 JFR module compiled class files a...
XOM™ is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with ...
JDK 11 java.xml.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) module. JDK 11 XML...