Skip to content

Commit 6aa837e

Browse files
committedOct 17, 2023
8316927: JFR: Move shouldCommit check earlier for socket events
Reviewed-by: alanb, dfuchs, mgronlun
1 parent 5ca1beb commit 6aa837e

File tree

5 files changed

+49
-29
lines changed

5 files changed

+49
-29
lines changed
 

‎src/java.base/share/classes/java/net/Socket.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,10 @@ public int read(byte[] b, int off, int len) throws IOException {
10961096
}
10971097
long start = SocketReadEvent.timestamp();
10981098
int nbytes = implRead(b, off, len);
1099-
SocketReadEvent.offer(start, nbytes, parent.getRemoteSocketAddress(), getSoTimeout());
1099+
long duration = SocketReadEvent.timestamp() - start;
1100+
if (SocketReadEvent.shouldCommit(duration)) {
1101+
SocketReadEvent.emit(start, duration, nbytes, parent.getRemoteSocketAddress(), getSoTimeout());
1102+
}
11001103
return nbytes;
11011104
}
11021105

@@ -1209,7 +1212,10 @@ public void write(byte[] b, int off, int len) throws IOException {
12091212
}
12101213
long start = SocketWriteEvent.timestamp();
12111214
implWrite(b, off, len);
1212-
SocketWriteEvent.offer(start, len, parent.getRemoteSocketAddress());
1215+
long duration = SocketWriteEvent.timestamp() - start;
1216+
if (SocketWriteEvent.shouldCommit(duration)) {
1217+
SocketWriteEvent.emit(start, duration, len, parent.getRemoteSocketAddress());
1218+
}
12131219
}
12141220

12151221
private void implWrite(byte[] b, int off, int len) throws IOException {

‎src/java.base/share/classes/jdk/internal/event/SocketReadEvent.java

+9-11
Original file line numberDiff line numberDiff line change
@@ -113,21 +113,19 @@ public static long timestamp() {
113113
* {@link #commit(long, long, String, String, int, long, long, boolean)}.
114114
*
115115
* @param start the start time
116+
* @param duration the duration
116117
* @param nbytes how many bytes were transferred
117118
* @param remote the address of the remote socket
118119
* @param timeout maximum time to wait
119120
*/
120-
public static void offer(long start, long nbytes, SocketAddress remote, long timeout) {
121-
long duration = timestamp() - start;
122-
if (shouldCommit(duration)) {
123-
boolean eof = nbytes < 0 ? true : false;
124-
nbytes = nbytes < 0 ? 0 : nbytes;
125-
if (remote instanceof InetSocketAddress isa) {
126-
commit(start, duration, isa.getHostString(), isa.getAddress().getHostAddress(), isa.getPort(), timeout, nbytes, eof);
127-
} else if (remote instanceof UnixDomainSocketAddress udsa) {
128-
String path = "[" + udsa.getPath().toString() + "]";
129-
commit(start, duration, "Unix domain socket", path, 0, timeout, nbytes, eof);
130-
}
121+
public static void emit(long start, long duration, long nbytes, SocketAddress remote, long timeout) {
122+
boolean eof = nbytes < 0 ? true : false;
123+
nbytes = nbytes < 0 ? 0 : nbytes;
124+
if (remote instanceof InetSocketAddress isa) {
125+
commit(start, duration, isa.getHostString(), isa.getAddress().getHostAddress(), isa.getPort(), timeout, nbytes, eof);
126+
} else if (remote instanceof UnixDomainSocketAddress udsa) {
127+
String path = "[" + udsa.getPath().toString() + "]";
128+
commit(start, duration, "Unix domain socket", path, 0, timeout, nbytes, eof);
131129
}
132130
}
133131

‎src/java.base/share/classes/jdk/internal/event/SocketWriteEvent.java

+8-10
Original file line numberDiff line numberDiff line change
@@ -108,19 +108,17 @@ public static long timestamp() {
108108
* {@link #commit(long, long, String, String, int, long)}.
109109
*
110110
* @param start the start time
111+
* @param duration the duration
111112
* @param bytesWritten how many bytes were sent
112113
* @param remote the address of the remote socket being written to
113114
*/
114-
public static void offer(long start, long bytesWritten, SocketAddress remote) {
115-
long duration = timestamp() - start;
116-
if (shouldCommit(duration)) {
117-
long bytes = bytesWritten < 0 ? 0 : bytesWritten;
118-
if (remote instanceof InetSocketAddress isa) {
119-
commit(start, duration, isa.getHostString(), isa.getAddress().getHostAddress(), isa.getPort(), bytes);
120-
} else if (remote instanceof UnixDomainSocketAddress udsa) {
121-
String path = "[" + udsa.getPath().toString() + "]";
122-
commit(start, duration, "Unix domain socket", path, 0, bytes);
123-
}
115+
public static void emit(long start, long duration, long bytesWritten, SocketAddress remote) {
116+
long bytes = bytesWritten < 0 ? 0 : bytesWritten;
117+
if (remote instanceof InetSocketAddress isa) {
118+
commit(start, duration, isa.getHostString(), isa.getAddress().getHostAddress(), isa.getPort(), bytes);
119+
} else if (remote instanceof UnixDomainSocketAddress udsa) {
120+
String path = "[" + udsa.getPath().toString() + "]";
121+
commit(start, duration, "Unix domain socket", path, 0, bytes);
124122
}
125123
}
126124
}

‎src/java.base/share/classes/sun/nio/ch/SocketChannelImpl.java

+16-4
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,10 @@ public int read(ByteBuffer buf) throws IOException {
494494
}
495495
long start = SocketReadEvent.timestamp();
496496
int nbytes = implRead(buf);
497-
SocketReadEvent.offer(start, nbytes, remoteAddress(), 0);
497+
long duration = SocketReadEvent.timestamp() - start;
498+
if (SocketReadEvent.shouldCommit(duration)) {
499+
SocketReadEvent.emit(start, duration, nbytes, remoteAddress(), 0);
500+
}
498501
return nbytes;
499502
}
500503

@@ -508,7 +511,10 @@ public long read(ByteBuffer[] dsts, int offset, int length)
508511
}
509512
long start = SocketReadEvent.timestamp();
510513
long nbytes = implRead(dsts, offset, length);
511-
SocketReadEvent.offer(start, nbytes, remoteAddress(), 0);
514+
long duration = SocketReadEvent.timestamp() - start;
515+
if (SocketReadEvent.shouldCommit(duration)) {
516+
SocketReadEvent.emit(start, duration, nbytes, remoteAddress(), 0);
517+
}
512518
return nbytes;
513519
}
514520

@@ -619,7 +625,10 @@ public int write(ByteBuffer buf) throws IOException {
619625
}
620626
long start = SocketWriteEvent.timestamp();
621627
int nbytes = implWrite(buf);
622-
SocketWriteEvent.offer(start, nbytes, remoteAddress());
628+
long duration = SocketWriteEvent.timestamp() - start;
629+
if (SocketWriteEvent.shouldCommit(duration)) {
630+
SocketWriteEvent.emit(start, duration, nbytes, remoteAddress());
631+
}
623632
return nbytes;
624633
}
625634

@@ -632,7 +641,10 @@ public long write(ByteBuffer[] srcs, int offset, int length)
632641
}
633642
long start = SocketWriteEvent.timestamp();
634643
long nbytes = implWrite(srcs, offset, length);
635-
SocketWriteEvent.offer(start, nbytes, remoteAddress());
644+
long duration = SocketWriteEvent.timestamp() - start;
645+
if (SocketWriteEvent.shouldCommit(duration)) {
646+
SocketWriteEvent.emit(start, duration, nbytes, remoteAddress());
647+
}
636648
return nbytes;
637649
}
638650

‎test/micro/org/openjdk/bench/java/net/SocketEventOverhead.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,10 @@ public int write() {
137137
try {
138138
nbytes = write0();
139139
} finally {
140-
SocketWriteEvent.offer(start, nbytes, getRemoteAddress());
140+
long duration = start - SocketWriteEvent.timestamp();
141+
if (SocketWriteEvent.shouldCommit(duration)) {
142+
SocketWriteEvent.emit(start, duration, nbytes, getRemoteAddress());
143+
}
141144
}
142145
return nbytes;
143146
}
@@ -155,7 +158,10 @@ public int read() {
155158
try {
156159
nbytes = read0();
157160
} finally {
158-
SocketReadEvent.offer(start, nbytes, getRemoteAddress(), 0);
161+
long duration = start - SocketReadEvent.timestamp();
162+
if (SocketReadEvent.shouldCommit(duration)) {
163+
SocketReadEvent.emit(start, duration, nbytes, getRemoteAddress(), 0);
164+
}
159165
}
160166
return nbytes;
161167
}

0 commit comments

Comments
 (0)
Please sign in to comment.