Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/io/Serializable/concurrentClassDescLookup/ConcurrentClassDescLookup.java
41153 views
1
/*
2
* Copyright (c) 2001, 2019, 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
/* @test
25
* @summary Verify that concurrent class descriptor lookups function properly,
26
* even when class descriptor initialization is slow or throws an
27
* exception.
28
*/
29
30
import java.io.*;
31
32
class Good implements Serializable {
33
private static final long serialVersionUID = 6319710844400051132L;
34
35
static {
36
try { Thread.sleep(1000); } catch (InterruptedException ex) {}
37
}
38
}
39
40
class Bad implements Serializable {
41
// explicit suid triggers class initialization during classdesc lookup
42
private static final long serialVersionUID = 0xBAD;
43
static {
44
try { Thread.sleep(1000); } catch (InterruptedException ex) {}
45
if ("foo".equals("foo")) {
46
throw new RuntimeException();
47
}
48
}
49
}
50
51
class SuccessfulLookup extends Thread {
52
Class<?> cl;
53
long suid;
54
Object barrier;
55
boolean ok;
56
57
SuccessfulLookup(Class<?> cl, long suid, Object barrier) {
58
this.cl = cl;
59
this.suid = suid;
60
this.barrier = barrier;
61
}
62
63
public void run() {
64
synchronized (barrier) {
65
try { barrier.wait(); } catch (InterruptedException ex) {}
66
}
67
for (int i = 0; i < 100; i++) {
68
if (ObjectStreamClass.lookup(cl).getSerialVersionUID() != suid) {
69
return;
70
}
71
}
72
ok = true;
73
}
74
}
75
76
class FailingLookup extends Thread {
77
Class<?> cl;
78
final Object barrier;
79
boolean ok;
80
81
FailingLookup(Class<?> cl, Object barrier) {
82
this.cl = cl;
83
this.barrier = barrier;
84
}
85
86
public void run() {
87
synchronized (barrier) {
88
try { barrier.wait(); } catch (InterruptedException ex) {}
89
}
90
for (int i = 0; i < 100; i++) {
91
try {
92
ObjectStreamClass.lookup(cl);
93
return;
94
} catch (Throwable th) {
95
}
96
}
97
ok = true;
98
}
99
}
100
101
public class ConcurrentClassDescLookup {
102
public static void main(String[] args) throws Exception {
103
ClassLoader loader = ConcurrentClassDescLookup.class.getClassLoader();
104
Class<?> cl = Class.forName("Good", false, loader);
105
Object barrier = new Object();
106
SuccessfulLookup[] slookups = new SuccessfulLookup[50];
107
for (int i = 0; i < slookups.length; i++) {
108
slookups[i] =
109
new SuccessfulLookup(cl, 6319710844400051132L, barrier);
110
slookups[i].start();
111
}
112
Thread.sleep(1000);
113
synchronized (barrier) {
114
barrier.notifyAll();
115
}
116
for (int i = 0; i < slookups.length; i++) {
117
slookups[i].join();
118
if (!slookups[i].ok) {
119
throw new Error();
120
}
121
}
122
123
cl = Class.forName("Bad", false, loader);
124
FailingLookup[] flookups = new FailingLookup[50];
125
for (int i = 0; i < flookups.length; i++) {
126
flookups[i] = new FailingLookup(cl, barrier);
127
flookups[i].start();
128
}
129
Thread.sleep(1000);
130
synchronized (barrier) {
131
barrier.notifyAll();
132
}
133
for (int i = 0; i < slookups.length; i++) {
134
flookups[i].join();
135
if (!flookups[i].ok) {
136
throw new Error();
137
}
138
}
139
}
140
}
141
142