Skip to content

Commit 998ef92

Browse files
authored
devonfw/ide#1309: Improve plugin managment (#229)
1 parent 195d40c commit 998ef92

File tree

3 files changed

+92
-34
lines changed

3 files changed

+92
-34
lines changed

cli/src/main/java/com/devonfw/tools/ide/tool/PluginBasedCommandlet.java

+11-27
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@
1010

1111
import java.nio.file.Files;
1212
import java.nio.file.Path;
13-
import java.util.Collection;
14-
import java.util.Collections;
15-
import java.util.HashMap;
1613
import java.util.List;
17-
import java.util.Map;
1814
import java.util.Set;
1915

2016
/**
@@ -23,9 +19,7 @@
2319
*/
2420
public abstract class PluginBasedCommandlet extends LocalToolCommandlet {
2521

26-
private Map<String, PluginDescriptor> pluginsMap;
27-
28-
private Collection<PluginDescriptor> configuredPlugins;
22+
private PluginMaps pluginsMap;
2923

3024
/**
3125
* The constructor.
@@ -40,10 +34,10 @@ public PluginBasedCommandlet(IdeContext context, String tool, Set<Tag> tags) {
4034
super(context, tool, tags);
4135
}
4236

43-
protected Map<String, PluginDescriptor> getPluginsMap() {
37+
protected PluginMaps getPluginsMap() {
4438

4539
if (this.pluginsMap == null) {
46-
Map<String, PluginDescriptor> map = new HashMap<>();
40+
PluginMaps map = new PluginMaps(context);
4741

4842
// Load project-specific plugins
4943
Path pluginsPath = getPluginsConfigPath();
@@ -60,16 +54,13 @@ protected Map<String, PluginDescriptor> getPluginsMap() {
6054
return this.pluginsMap;
6155
}
6256

63-
private void loadPluginsFromDirectory(Map<String, PluginDescriptor> map, Path pluginsPath) {
57+
private void loadPluginsFromDirectory(PluginMaps map, Path pluginsPath) {
6458

6559
List<Path> children = this.context.getFileAccess()
6660
.listChildren(pluginsPath, p -> p.getFileName().toString().endsWith(IdeContext.EXT_PROPERTIES));
6761
for (Path child : children) {
6862
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);
7364
}
7465
}
7566

@@ -94,17 +85,6 @@ private Path getUserHomePluginsConfigPath() {
9485
return this.context.getUserHomeIde().resolve("settings").resolve(this.tool).resolve(IdeContext.FOLDER_PLUGINS);
9586
}
9687

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-
10888
/**
10989
* @return the {@link Path} where the plugins of this {@link IdeToolCommandlet} shall be installed.
11090
*/
@@ -152,14 +132,17 @@ public PluginDescriptor getPlugin(String key) {
152132
if (key.endsWith(IdeContext.EXT_PROPERTIES)) {
153133
key = key.substring(0, key.length() - IdeContext.EXT_PROPERTIES.length());
154134
}
155-
PluginDescriptor pluginDescriptor = getPluginsMap().get(key);
135+
136+
PluginMaps pluginMaps = getPluginsMap();
137+
PluginDescriptor pluginDescriptor = pluginMaps.getByName(key);
156138
if (pluginDescriptor == null) {
157139
throw new CliException(
158140
"Could not find plugin " + key + " at " + getPluginsConfigPath().resolve(key) + ".properties");
159141
}
160142
return pluginDescriptor;
161143
}
162144

145+
163146
@Override
164147
protected boolean doInstall(boolean silent) {
165148

@@ -173,7 +156,8 @@ protected boolean doInstall(boolean silent) {
173156
installPlugins = true;
174157
}
175158
if (installPlugins) {
176-
for (PluginDescriptor plugin : getPluginsMap().values()) {
159+
PluginMaps pluginMaps = getPluginsMap();
160+
for (PluginDescriptor plugin : pluginMaps.getPlugins()) {
177161
if (plugin.isActive()) {
178162
installPlugin(plugin);
179163
} else {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
package com.devonfw.tools.ide.tool;
2+
3+
import com.devonfw.tools.ide.context.IdeContext;
4+
import com.devonfw.tools.ide.tool.ide.PluginDescriptor;
5+
6+
import java.util.Collection;
7+
import java.util.Collections;
8+
import java.util.HashMap;
9+
import java.util.Map;
10+
11+
/**
12+
* A wrapper class for holding two maps of plugin descriptors: one keyed by plugin ID and the other keyed by plugin name.
13+
*/
14+
public class PluginMaps {
15+
private final Map<String, PluginDescriptor> mapById;
16+
private final Map<String, PluginDescriptor> mapByName;
17+
18+
19+
private final IdeContext context;
20+
21+
/**
22+
* The constructor.
23+
* @param context the {@link IdeContext}.
24+
*/
25+
public PluginMaps(IdeContext context) {
26+
super();
27+
this.context = context;
28+
this.mapById = new HashMap<>();
29+
this.mapByName = new HashMap<>();
30+
}
31+
32+
/**
33+
* @return the {@link PluginDescriptor} for the given {@link PluginDescriptor#getId() ID} or {@code null} if not found.
34+
*/
35+
public PluginDescriptor getById(String id) {
36+
return this.mapById.get(id);
37+
}
38+
39+
/**
40+
* @return the {@link PluginDescriptor} for the given {@link PluginDescriptor#getName() name} or {@code null} if not found.
41+
*/
42+
public PluginDescriptor getByName(String name) {
43+
return this.mapByName.get(name);
44+
}
45+
46+
/**
47+
* @return the immutable {@link Collection} of {@link PluginDescriptor}s configured for this IDE tool.
48+
*/
49+
public Collection<PluginDescriptor> getPlugins() {
50+
51+
Map<String, PluginDescriptor> map = this.mapById;
52+
if (map.isEmpty()) {
53+
map = this.mapByName; // potentially plugins for this tool have no ID
54+
}
55+
return Collections.unmodifiableCollection(map.values());
56+
}
57+
58+
/**
59+
* Registers a {@link PluginDescriptor} to this map.
60+
*/
61+
protected void add(PluginDescriptor descriptor) {
62+
put(descriptor.getName(), descriptor, this.mapByName);
63+
String id = descriptor.getId();
64+
if ((id != null) && !id.isEmpty()) {
65+
put(id, descriptor, this.mapById);
66+
}
67+
}
68+
69+
public void put(String key, PluginDescriptor descriptor, Map<String, PluginDescriptor> map) {
70+
PluginDescriptor duplicate = map.put(key, descriptor);
71+
if (duplicate != null) {
72+
this.context.info("Plugin with key {} was {} but got overridden by {}", key, duplicate, descriptor);
73+
}
74+
}
75+
}

cli/src/test/java/com/devonfw/tools/ide/tool/PluginBasedCommandletTest.java

+6-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import com.devonfw.tools.ide.tool.ide.PluginDescriptor;
77
import org.junit.jupiter.api.Test;
88

9-
import java.util.Map;
109
import java.util.Set;
1110

1211
import static org.junit.jupiter.api.Assertions.assertNotNull;
@@ -24,21 +23,21 @@ void testGetPluginsMap() {
2423
Set<Tag> tags = null;
2524
ExamplePluginBasedCommandlet pluginBasedCommandlet = new ExamplePluginBasedCommandlet(context, tool, tags);
2625

27-
Map<String, PluginDescriptor> pluginsMap = pluginBasedCommandlet.getPluginsMap();
26+
PluginMaps pluginsMap = pluginBasedCommandlet.getPluginsMap();
2827
assertThat(pluginsMap).isNotNull();
2928

30-
assertThat(pluginsMap.containsKey("checkstyle")).isTrue();
31-
assertThat(pluginsMap.containsKey("anyedit")).isTrue();
29+
assertThat(pluginsMap.getByName("checkstyle")).isNotNull();
30+
assertThat(pluginsMap.getByName("anyedit")).isNotNull();
3231

33-
PluginDescriptor plugin1 = pluginsMap.get("checkstyle");
32+
PluginDescriptor plugin1 = pluginsMap.getByName("checkstyle");
3433
assertNotNull(plugin1);
3534
assertThat(plugin1.getName()).isEqualTo("checkstyle");
3635

37-
PluginDescriptor plugin2 = pluginsMap.get("anyedit");
36+
PluginDescriptor plugin2 = pluginsMap.getByName("anyedit");
3837
assertNotNull(plugin2);
3938
assertThat(plugin2.getName()).isEqualTo("anyedit");
4039

4140
// Check if anyedit plugin has value "false" --> value from user directory
4241
assertThat(plugin2.isActive()).isFalse();
4342
}
44-
}
43+
}

0 commit comments

Comments
 (0)