-
Notifications
You must be signed in to change notification settings - Fork 669
/
Copy pathSystemModules.java
104 lines (91 loc) · 3.85 KB
/
SystemModules.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package jdk.internal.module;
import java.lang.module.ModuleDescriptor;
import java.util.Map;
import java.util.Set;
/**
* A SystemModules object reconstitutes module descriptors and other modules attributes in an efficient way to avoid parsing module-info.class files at startup.
* Implementations of this class are generated by the "system modules" jlink plugin.
*
* @see SystemModuleFinders
* @see jdk.tools.jlink.internal.plugins.SystemModulesPlugin
*/
/*
* 系统模块(集)信息,在链接时生成静态信息,以避免解析"module-info.class",进而提高相关查找效率
*
* 参见:
* jdk.internal.module.SystemModules$all
* jdk.internal.module.SystemModules$default
*/
interface SystemModules {
/**
* Returns false if the module reconstituted by this SystemModules object have no overlapping packages.
* Returns true if there are overlapping packages or unknown.
*/
boolean hasSplitPackages();
/**
* Return false if the modules reconstituted by this SystemModules object do not include any incubator modules.
* Returns true if there are incubating modules or unknown.
*/
boolean hasIncubatorModules();
/**
* Returns the non-empty array of ModuleDescriptor objects.
*/
// 返回当前系统模块内所有模块描述符
ModuleDescriptor[] moduleDescriptors();
/**
* Returns the array of ModuleTarget objects.
* The array elements correspond to the array of ModuleDescriptor objects.
*/
ModuleTarget[] moduleTargets();
/**
* Returns the array of ModuleHashes objects.
* The array elements correspond to the array of ModuleDescriptor objects.
*/
ModuleHashes[] moduleHashes();
/**
* Returns the array of ModuleResolution objects.
* The array elements correspond to the array of ModuleDescriptor objects.
*/
ModuleResolution[] moduleResolutions();
/**
* Returns the map representing readability graph for the modules reconstituted by this SystemModules object.
*/
// 返回系统模块依赖(requires)映射
Map<String, Set<String>> moduleReads();
/**
* Returns the map of module exported packages to open.
* The map key is the module name, the value is the set of exported packages to open.
*/
// 返回系统模块导出(exports)映射
Map<String, Set<String>> exportedPackagesToOpen();
/**
* Returns the map of module concealed packages to open.
* The map key is the module name, the value is the set of concealed packages to open.
*/
// 返回系统模块开放(opens)映射
Map<String, Set<String>> concealedPackagesToOpen();
}