Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/java/net/Socket/asyncClose/BrokenPipe.java
38828 views
1
/*
2
* Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
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.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/*
25
* @test 1.1 01/09/19
26
* @bug 4511404
27
* @summary Check that a broken pipe error doesn't throw an exception
28
* indicating the socket is closed.
29
*/
30
import java.io.*;
31
import java.net.*;
32
33
public class BrokenPipe {
34
35
private static class Closer implements Runnable {
36
private final Socket s;
37
38
Closer(Socket s) {
39
this.s = s;
40
}
41
42
public void run() {
43
try {
44
/* gives time for 'write' to block */
45
Thread.sleep(5000);
46
s.close();
47
} catch (Exception e) {
48
e.printStackTrace();
49
}
50
}
51
}
52
53
public static void main(String[] args) throws Exception {
54
ServerSocket ss = new ServerSocket(0);
55
Socket client = new Socket(InetAddress.getLocalHost(),
56
ss.getLocalPort());
57
Socket server = ss.accept();
58
ss.close();
59
new Thread(new Closer(server)).start();
60
61
try {
62
client.getOutputStream().write(new byte[1000000]);
63
} catch (IOException ioe) {
64
/*
65
* Check that the exception text doesn't indicate the
66
* socket is closed. In tiger we should be able to
67
* replace this by catching a more specific exception.
68
*/
69
String text = ioe.getMessage();
70
if (text.toLowerCase().indexOf("closed") >= 0) {
71
throw ioe;
72
}
73
} finally {
74
server.close();
75
}
76
}
77
78
}
79
80