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.jfr.jmod - JFR Module
JDK 17 jdk.jfr.jmod is the JMOD file for JDK 17 JFR module.
JDK 17 JFR module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jfr.jmod.
JDK 17 JFR module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JFR module source code files are stored in \fyicenter\jdk-17.0.5\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/consumer/EventParser.java
/*
* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package jdk.jfr.internal.consumer;
import static jdk.jfr.internal.EventInstrumentation.FIELD_DURATION;
import java.io.IOException;
import java.util.List;
import jdk.jfr.EventType;
import jdk.jfr.ValueDescriptor;
import jdk.jfr.consumer.RecordedEvent;
/**
* Parses an event and returns a {@link RecordedEvent}.
*
*/
final class EventParser extends Parser {
private static final JdkJfrConsumer PRIVATE_ACCESS = JdkJfrConsumer.instance();
private final Parser[] parsers;
private final EventType eventType;
private final TimeConverter timeConverter;
private final boolean hasDuration;
private final List<ValueDescriptor> valueDescriptors;
private final int startIndex;
private final int length;
private final RecordedEvent unorderedEvent;
private final ObjectContext objectContext;
private RecordedEvent[] cached;
private int cacheIndex;
private boolean enabled = true;
private boolean ordered;
private long filterStart;
private long filterEnd = Long.MAX_VALUE;
private long thresholdNanos = -1;
EventParser(TimeConverter timeConverter, EventType type, Parser[] parsers) {
this.timeConverter = timeConverter;
this.parsers = parsers;
this.eventType = type;
this.hasDuration = type.getField(FIELD_DURATION) != null;
this.startIndex = hasDuration ? 2 : 1;
this.length = parsers.length - startIndex;
this.valueDescriptors = type.getFields();
this.objectContext = new ObjectContext(type, valueDescriptors, timeConverter);
this.unorderedEvent = PRIVATE_ACCESS.newRecordedEvent(objectContext, new Object[length], 0L, 0L);
}
private RecordedEvent cachedEvent() {
if (ordered) {
if (cacheIndex == cached.length) {
RecordedEvent[] old = cached;
cached = new RecordedEvent[cached.length * 2];
System.arraycopy(old, 0, cached, 0, old.length);
}
RecordedEvent event = cached[cacheIndex];
if (event == null) {
event = PRIVATE_ACCESS.newRecordedEvent(objectContext, new Object[length], 0L, 0L);
cached[cacheIndex] = event;
}
cacheIndex++;
return event;
} else {
return unorderedEvent;
}
}
public EventType getEventType() {
return eventType;
}
public void setThresholdNanos(long thresholdNanos) {
this.thresholdNanos = thresholdNanos;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public boolean isEnabled() {
return enabled;
}
@Override
public RecordedEvent parse(RecordingInput input) throws IOException {
if (!enabled) {
return null;
}
long startTicks = input.readLong();
long endTicks = startTicks;
if (hasDuration) {
long durationTicks = input.readLong();
if (thresholdNanos > 0L) {
if (timeConverter.convertTimespan(durationTicks) < thresholdNanos) {
return null;
}
}
endTicks += durationTicks;
}
if (filterStart != 0L || filterEnd != Long.MAX_VALUE) {
long eventEnd = timeConverter.convertTimestamp(endTicks);
if (eventEnd < filterStart) {
return null;
}
if (eventEnd > filterEnd) {
return null;
}
}
if (cached != null) {
RecordedEvent event = cachedEvent();
JdkJfrConsumer access = PRIVATE_ACCESS;
access.setStartTicks(event, startTicks);
access.setEndTicks(event, endTicks);
Object[] values = access.eventValues(event);
for (int i = 0; i < values.length; i++) {
values[i] = parsers[startIndex + i].parse(input);
}
return event;
}
Object[] values = new Object[length];
for (int i = 0; i < values.length; i++) {
values[i] = parsers[startIndex + i].parse(input);
}
return PRIVATE_ACCESS.newRecordedEvent(objectContext, values, startTicks, endTicks);
}
@Override
public void skip(RecordingInput input) throws IOException {
throw new InternalError("Should not call this method. More efficient to read event size and skip ahead");
}
public void resetCache() {
cacheIndex = 0;
}
private boolean hasReuse() {
return cached != null;
}
public void setReuse(boolean reuse) {
if (reuse == hasReuse()) {
return;
}
if (reuse) {
cached = new RecordedEvent[2];
cacheIndex = 0;
} else {
cached = null;
}
}
public void setFilterStart(long filterStart) {
this.filterStart = filterStart;
}
public void setFilterEnd(long filterEnd) {
this.filterEnd = filterEnd;
}
public void setOrdered(boolean ordered) {
if (this.ordered == ordered) {
return;
}
this.ordered = ordered;
this.cacheIndex = 0;
}
}
⏎ jdk/jfr/internal/consumer/EventParser.java
Or download all of them as a single archive file:
File name: jdk.jfr-17.0.5-src.zip File size: 363343 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jlink.jmod - JLink Tool
2023-04-17, ≈62🔥, 0💬
Popular Posts:
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...
JDK 17 java.management.jmod is the JMOD file for JDK 17 Management module. JDK 17 Management module ...
What Is mail.jar of JavaMail 1.4? I got the JAR file from javamail-1_4.zip. mail.jar in javamail-1_4...
SLF4J API is a simple API that allows to plug in any desired logging library at deployment time. Her...
JDK 11 java.security.jgss.jmod is the JMOD file for JDK 11 Security JGSS (Java Generic Security Serv...