Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/lang/Class/GetPackageBootLoaderChildLayer.java
41149 views
1
/*
2
* Copyright (c) 2018, 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
26
* @requires !vm.graal.enabled
27
* @modules jdk.attach
28
* @run main/othervm --limit-modules jdk.attach -Djdk.attach.allowAttachSelf
29
* GetPackageBootLoaderChildLayer
30
* @summary Exercise Class.getPackage on a class defined to the boot loader
31
* but in a module that is in a child layer rather than the boot layer
32
*/
33
34
import com.sun.tools.attach.VirtualMachine;
35
36
public class GetPackageBootLoaderChildLayer {
37
public static void main(String[] args) throws Exception {
38
// ensure that the java.management module is not in the boot layer
39
ModuleLayer.boot().findModule("java.management").ifPresent(m -> {
40
throw new RuntimeException("java.management loaded!!!");
41
});
42
43
// start local JMX agent via the attach mechanism
44
String vmid = "" + ProcessHandle.current().pid();
45
VirtualMachine vm = VirtualMachine.attach(vmid);
46
vm.startLocalManagementAgent();
47
48
// check layer, class loader, and Package object
49
Class<?> clazz = Class.forName("javax.management.MXBean");
50
if (clazz.getModule().getLayer() == ModuleLayer.boot())
51
throw new RuntimeException("Module is in boot layer!!!");
52
ClassLoader loader = clazz.getClassLoader();
53
if (loader != null)
54
throw new RuntimeException("Unexpected class loader: " + loader);
55
Package p = clazz.getPackage();
56
if (!p.getName().equals("javax.management"))
57
throw new RuntimeException("Unexpected package " + p);
58
}
59
}
60
61