10
10
11
11
import java .nio .file .Files ;
12
12
import java .nio .file .Path ;
13
- import java .util .Collection ;
14
- import java .util .Collections ;
15
- import java .util .HashMap ;
16
13
import java .util .List ;
17
- import java .util .Map ;
18
14
import java .util .Set ;
19
15
20
16
/**
23
19
*/
24
20
public abstract class PluginBasedCommandlet extends LocalToolCommandlet {
25
21
26
- private Map <String , PluginDescriptor > pluginsMap ;
27
-
28
- private Collection <PluginDescriptor > configuredPlugins ;
22
+ private PluginMaps pluginsMap ;
29
23
30
24
/**
31
25
* The constructor.
@@ -40,10 +34,10 @@ public PluginBasedCommandlet(IdeContext context, String tool, Set<Tag> tags) {
40
34
super (context , tool , tags );
41
35
}
42
36
43
- protected Map < String , PluginDescriptor > getPluginsMap () {
37
+ protected PluginMaps getPluginsMap () {
44
38
45
39
if (this .pluginsMap == null ) {
46
- Map < String , PluginDescriptor > map = new HashMap <>( );
40
+ PluginMaps map = new PluginMaps ( context );
47
41
48
42
// Load project-specific plugins
49
43
Path pluginsPath = getPluginsConfigPath ();
@@ -60,16 +54,13 @@ protected Map<String, PluginDescriptor> getPluginsMap() {
60
54
return this .pluginsMap ;
61
55
}
62
56
63
- private void loadPluginsFromDirectory (Map < String , PluginDescriptor > map , Path pluginsPath ) {
57
+ private void loadPluginsFromDirectory (PluginMaps map , Path pluginsPath ) {
64
58
65
59
List <Path > children = this .context .getFileAccess ()
66
60
.listChildren (pluginsPath , p -> p .getFileName ().toString ().endsWith (IdeContext .EXT_PROPERTIES ));
67
61
for (Path child : children ) {
68
62
PluginDescriptor descriptor = PluginDescriptorImpl .of (child , this .context , isPluginUrlNeeded ());
69
- PluginDescriptor duplicate = map .put (descriptor .getName (), descriptor );
70
- if (duplicate != null ) {
71
- this .context .info ("Plugin {} from project is overridden by {}" , descriptor .getName (), child );
72
- }
63
+ map .add (descriptor );
73
64
}
74
65
}
75
66
@@ -94,17 +85,6 @@ private Path getUserHomePluginsConfigPath() {
94
85
return this .context .getUserHomeIde ().resolve ("settings" ).resolve (this .tool ).resolve (IdeContext .FOLDER_PLUGINS );
95
86
}
96
87
97
- /**
98
- * @return the immutable {@link Collection} of {@link PluginDescriptor}s configured for this IDE tool.
99
- */
100
- public Collection <PluginDescriptor > getConfiguredPlugins () {
101
-
102
- if (this .configuredPlugins == null ) {
103
- this .configuredPlugins = Collections .unmodifiableCollection (getPluginsMap ().values ());
104
- }
105
- return this .configuredPlugins ;
106
- }
107
-
108
88
/**
109
89
* @return the {@link Path} where the plugins of this {@link IdeToolCommandlet} shall be installed.
110
90
*/
@@ -152,14 +132,17 @@ public PluginDescriptor getPlugin(String key) {
152
132
if (key .endsWith (IdeContext .EXT_PROPERTIES )) {
153
133
key = key .substring (0 , key .length () - IdeContext .EXT_PROPERTIES .length ());
154
134
}
155
- PluginDescriptor pluginDescriptor = getPluginsMap ().get (key );
135
+
136
+ PluginMaps pluginMaps = getPluginsMap ();
137
+ PluginDescriptor pluginDescriptor = pluginMaps .getByName (key );
156
138
if (pluginDescriptor == null ) {
157
139
throw new CliException (
158
140
"Could not find plugin " + key + " at " + getPluginsConfigPath ().resolve (key ) + ".properties" );
159
141
}
160
142
return pluginDescriptor ;
161
143
}
162
144
145
+
163
146
@ Override
164
147
protected boolean doInstall (boolean silent ) {
165
148
@@ -173,7 +156,8 @@ protected boolean doInstall(boolean silent) {
173
156
installPlugins = true ;
174
157
}
175
158
if (installPlugins ) {
176
- for (PluginDescriptor plugin : getPluginsMap ().values ()) {
159
+ PluginMaps pluginMaps = getPluginsMap ();
160
+ for (PluginDescriptor plugin : pluginMaps .getPlugins ()) {
177
161
if (plugin .isActive ()) {
178
162
installPlugin (plugin );
179
163
} else {
0 commit comments