author | egahlin |
Wed, 18 Sep 2019 03:45:46 +0200 | |
branch | JEP-349-branch |
changeset 58197 | 0ef79bd7fb5c |
parent 58145 | bc54ed8d908a |
permissions | -rw-r--r-- |
50113 | 1 |
/* |
58112 | 2 |
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. |
50113 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
26 |
package jdk.jfr.consumer; |
|
27 |
||
28 |
import java.time.Duration; |
|
29 |
import java.time.Instant; |
|
30 |
import java.util.List; |
|
31 |
||
32 |
import jdk.jfr.EventType; |
|
33 |
import jdk.jfr.ValueDescriptor; |
|
34 |
import jdk.jfr.internal.EventInstrumentation; |
|
58145
bc54ed8d908a
Move implementation into jdk.jfr.internal.consumer
egahlin
parents:
58112
diff
changeset
|
35 |
import jdk.jfr.internal.consumer.ObjectContext; |
50113 | 36 |
|
37 |
/** |
|
38 |
* A recorded event. |
|
39 |
* |
|
40 |
* @since 9 |
|
41 |
*/ |
|
42 |
public final class RecordedEvent extends RecordedObject { |
|
57452
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
43 |
long startTimeTicks; |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
44 |
long endTimeTicks; |
50113 | 45 |
|
46 |
// package private |
|
57460
bcbc53560c77
Reduce allocation rate by minimizing number of fields in RecordedEvent
egahlin
parents:
57452
diff
changeset
|
47 |
RecordedEvent(ObjectContext objectContext, Object[] values, long startTimeTicks, long endTimeTicks) { |
bcbc53560c77
Reduce allocation rate by minimizing number of fields in RecordedEvent
egahlin
parents:
57452
diff
changeset
|
48 |
super(objectContext, values); |
57452
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
49 |
this.startTimeTicks = startTimeTicks; |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
50 |
this.endTimeTicks = endTimeTicks; |
50113 | 51 |
} |
52 |
||
53 |
/** |
|
54 |
* Returns the stack trace that was created when the event was committed, or |
|
55 |
* {@code null} if the event lacks a stack trace. |
|
56 |
* |
|
57 |
* @return stack trace, or {@code null} if doesn't exist for the event |
|
58 |
*/ |
|
59 |
public RecordedStackTrace getStackTrace() { |
|
60 |
return getTyped(EventInstrumentation.FIELD_STACK_TRACE, RecordedStackTrace.class, null); |
|
61 |
} |
|
62 |
||
63 |
/** |
|
64 |
* Returns the thread from which the event was committed, or {@code null} if |
|
65 |
* the thread was not recorded. |
|
66 |
* |
|
67 |
* @return thread, or {@code null} if doesn't exist for the event |
|
68 |
*/ |
|
69 |
public RecordedThread getThread() { |
|
70 |
return getTyped(EventInstrumentation.FIELD_EVENT_THREAD, RecordedThread.class, null); |
|
71 |
} |
|
72 |
||
73 |
/** |
|
74 |
* Returns the event type that describes the event. |
|
75 |
* |
|
76 |
* @return the event type, not {@code null} |
|
77 |
*/ |
|
78 |
public EventType getEventType() { |
|
57460
bcbc53560c77
Reduce allocation rate by minimizing number of fields in RecordedEvent
egahlin
parents:
57452
diff
changeset
|
79 |
return objectContext.eventType; |
50113 | 80 |
} |
81 |
||
82 |
/** |
|
83 |
* Returns the start time of the event. |
|
84 |
* <p> |
|
85 |
* If the event is an instant event, then the start time and end time are the same. |
|
86 |
* |
|
87 |
* @return the start time, not {@code null} |
|
88 |
*/ |
|
89 |
public Instant getStartTime() { |
|
57452
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
90 |
return Instant.ofEpochSecond(0, getStartTimeNanos()); |
50113 | 91 |
} |
92 |
||
93 |
/** |
|
94 |
* Returns the end time of the event. |
|
95 |
* <p> |
|
96 |
* If the event is an instant event, then the start time and end time are the same. |
|
97 |
* |
|
98 |
* @return the end time, not {@code null} |
|
99 |
*/ |
|
100 |
public Instant getEndTime() { |
|
57452
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
101 |
return Instant.ofEpochSecond(0, getEndTimeNanos()); |
50113 | 102 |
} |
103 |
||
104 |
/** |
|
105 |
* Returns the duration of the event, measured in nanoseconds. |
|
106 |
* |
|
107 |
* @return the duration in nanoseconds, not {@code null} |
|
108 |
*/ |
|
109 |
public Duration getDuration() { |
|
57452
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
110 |
return Duration.ofNanos(getEndTimeNanos() - getStartTimeNanos()); |
50113 | 111 |
} |
112 |
||
113 |
/** |
|
114 |
* Returns the list of descriptors that describes the fields of the event. |
|
115 |
* |
|
116 |
* @return descriptors, not {@code null} |
|
117 |
*/ |
|
118 |
@Override |
|
119 |
public List<ValueDescriptor> getFields() { |
|
57460
bcbc53560c77
Reduce allocation rate by minimizing number of fields in RecordedEvent
egahlin
parents:
57452
diff
changeset
|
120 |
return objectContext.fields; |
50113 | 121 |
} |
57452
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
122 |
|
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
123 |
protected final Object objectAt(int index) { |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
124 |
if (index == 0) { |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
125 |
return startTimeTicks; |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
126 |
} |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
127 |
if (hasDuration()) { |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
128 |
if (index == 1) { |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
129 |
return endTimeTicks - startTimeTicks; |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
130 |
} |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
131 |
return objects[index - 2]; |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
132 |
} |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
133 |
return objects[index - 1]; |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
134 |
} |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
135 |
|
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
136 |
private boolean hasDuration() { |
57460
bcbc53560c77
Reduce allocation rate by minimizing number of fields in RecordedEvent
egahlin
parents:
57452
diff
changeset
|
137 |
return objects.length + 2 == objectContext.fields.size(); |
57452
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
138 |
} |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
139 |
|
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
140 |
private long getStartTimeNanos() { |
58197 | 141 |
return objectContext.convertTimestamp(startTimeTicks); |
57452
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
142 |
} |
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
143 |
|
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
144 |
private long getEndTimeNanos() { |
58197 | 145 |
return objectContext.convertTimestamp(endTimeTicks); |
57452
6fabe73e5d9a
Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents:
57376
diff
changeset
|
146 |
} |
50113 | 147 |
} |