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 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/cmd/JSONWriter.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.cmd; import java.io.IOException; import java.io.PrintWriter; import java.nio.file.Path; import jdk.jfr.EventType; import jdk.jfr.ValueDescriptor; import jdk.jfr.consumer.RecordedEvent; import jdk.jfr.consumer.RecordedObject; import jdk.jfr.consumer.RecordingFile; final class JSONWriter extends StructuredWriter { public JSONWriter(PrintWriter writer) { super(writer); } public void print(Path source) throws IOException { try (RecordingFile es = new RecordingFile(source)) { printObjectBegin(); printRecording(es); printObjectEnd(); flush(); } } private void printRecording(RecordingFile es) throws IOException { printDataStructureName("recording"); printObjectBegin(); printEvents(es); printObjectEnd(); } private void printEvents(RecordingFile es) throws IOException { printDataStructureName("events"); printArrayBegin(); boolean first = true; while (es.hasMoreEvents()) { RecordedEvent e = es.readEvent(); printNewDataStructure(first, true, null); printEvent(e); flush(); first = false; } printArrayEnd(); } private void printEvent(RecordedEvent e) { printObjectBegin(); EventType type = e.getEventType(); printValue(true, false, "name", type.getName()); printValue(false, false, "typeId", type.getId()); printValue(false, false, "startTime", e.getStartTime()); printValue(false, false, "duration", e.getDuration()); printNewDataStructure(false, false, "values"); printObject(e); printObjectEnd(); } void printValue(boolean first, boolean arrayElement, String name, Object value) { printNewDataStructure(first, arrayElement, name); if (!printIfNull(value)) { if (value instanceof Boolean) { printAsString(value); return; } if (value instanceof Double) { Double dValue = (Double) value; if (Double.isNaN(dValue) || Double.isInfinite(dValue)) { printNull(); return; } printAsString(value); return; } if (value instanceof Float) { Float fValue = (Float) value; if (Float.isNaN(fValue) || Float.isInfinite(fValue)) { printNull(); return; } printAsString(value); return; } if (value instanceof Number) { printAsString(value); return; } print("\""); printEscaped(String.valueOf(value)); print("\""); } } public void printObject(RecordedObject object) { printObjectBegin(); boolean first = true; for (ValueDescriptor v : object.getFields()) { printValueDescriptor(first, false, v, object.getValue(v.getName())); first = false; } printObjectEnd(); } private void printArray(ValueDescriptor v, Object[] array) { printArrayBegin(); boolean first = true; for (Object arrayElement : array) { printValueDescriptor(first, true, v, arrayElement); first = false; } printArrayEnd(); } private void printValueDescriptor(boolean first, boolean arrayElement, ValueDescriptor vd, Object value) { if (vd.isArray() && !arrayElement) { printNewDataStructure(first, arrayElement, vd.getName()); if (!printIfNull(value)) { printArray(vd, (Object[]) value); } return; } if (!vd.getFields().isEmpty()) { printNewDataStructure(first, arrayElement, vd.getName()); if (!printIfNull(value)) { printObject((RecordedObject) value); } return; } printValue(first, arrayElement, vd.getName(), value); } private void printNewDataStructure(boolean first, boolean arrayElement, String name) { if (!first) { print(", "); if (!arrayElement) { println(); } } if (!arrayElement) { printDataStructureName(name); } } private boolean printIfNull(Object value) { if (value == null) { printNull(); return true; } return false; } private void printNull() { print("null"); } private void printDataStructureName(String text) { printIndent(); print("\""); print(text); print("\": "); } private void printObjectEnd() { retract(); println(); printIndent(); print("}"); } private void printObjectBegin() { println("{"); indent(); } private void printArrayEnd() { print("]"); } private void printArrayBegin() { print("["); } private void printEscaped(String text) { for (int i = 0; i < text.length(); i++) { printEscaped(text.charAt(i)); } } private void printEscaped(char c) { if (c == '\b') { print("\\b"); return; } if (c == '\n') { print("\\n"); return; } if (c == '\t') { print("\\t"); return; } if (c == '\f') { print("\\f"); return; } if (c == '\r') { print("\\r"); return; } if (c == '\"') { print("\\\""); return; } if (c == '\\') { print("\\\\"); return; } if (c == '/') { print("\\/"); return; } if (c > 0x7F || c < 32) { print("\\u"); // 0x10000 will pad with zeros. print(Integer.toHexString(0x10000 + (int) c).substring(1)); return; } print(c); } }
⏎ jdk/jfr/internal/cmd/JSONWriter.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, 48622👍, 0💬
Popular Posts:
JDK 17 java.base.jmod is the JMOD file for JDK 17 Base module. JDK 17 Base module compiled class fil...
What Is commons-io-2.11.jar? commons-io-2.11.jar is the JAR file for Commons IO 2.5, which is a libr...
What Is commons-collections4-4.4 .jar?commons-collections4-4.4 .jaris the JAR file for Apache Common...
JDK 11 jdk.scripting.nashorn.jm odis the JMOD file for JDK 11 Scripting Nashorn module. JDK 11 Scrip...
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.1? The if you...