summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2022-02-04 11:28:36 +0100
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2022-02-04 11:35:50 +0100
commitc46b2f64ca69bf50a08f34c950f364a9b37441f6 (patch)
tree7cfe49469359e02f9932a60af5345dc3aebe0725
parentb6e3efdfe6ecb423834c8344c0cd881db1c0c51b (diff)
Rename and remove unnecessary parameter
-rw-r--r--container-core/src/main/java/com/yahoo/container/di/Container.java25
1 files changed, 12 insertions, 13 deletions
diff --git a/container-core/src/main/java/com/yahoo/container/di/Container.java b/container-core/src/main/java/com/yahoo/container/di/Container.java
index 526b201c886..5d5906c7a37 100644
--- a/container-core/src/main/java/com/yahoo/container/di/Container.java
+++ b/container-core/src/main/java/com/yahoo/container/di/Container.java
@@ -22,7 +22,6 @@ import org.osgi.framework.Bundle;
import java.util.ArrayList;
import java.util.Collection;
-import java.util.Collections;
import java.util.HashSet;
import java.util.IdentityHashMap;
import java.util.List;
@@ -46,7 +45,7 @@ public class Container {
private final ConfigKey<ApplicationBundlesConfig> applicationBundlesConfigKey;
private final ConfigKey<PlatformBundlesConfig> platformBundlesConfigKey;
private final ConfigKey<ComponentsConfig> componentsConfigKey;
- private final ComponentDeconstructor componentDeconstructor;
+ private final ComponentDeconstructor destructor;
private final Osgi osgi;
private final ConfigRetriever retriever;
@@ -54,9 +53,9 @@ public class Container {
private long previousConfigGeneration = -1L;
private long leastGeneration = -1L;
- public Container(SubscriberFactory subscriberFactory, String configId, ComponentDeconstructor componentDeconstructor, Osgi osgi) {
+ public Container(SubscriberFactory subscriberFactory, String configId, ComponentDeconstructor destructor, Osgi osgi) {
this.subscriberFactory = subscriberFactory;
- this.componentDeconstructor = componentDeconstructor;
+ this.destructor = destructor;
this.osgi = osgi;
applicationBundlesConfigKey = new ConfigKey<>(ApplicationBundlesConfig.class, configId);
@@ -66,8 +65,8 @@ public class Container {
this.retriever = new ConfigRetriever(bootstrapKeys, subscriberFactory);
}
- public Container(SubscriberFactory subscriberFactory, String configId, ComponentDeconstructor componentDeconstructor) {
- this(subscriberFactory, configId, componentDeconstructor, new Osgi() {
+ public Container(SubscriberFactory subscriberFactory, String configId, ComponentDeconstructor destructor) {
+ this(subscriberFactory, configId, destructor, new Osgi() {
});
}
@@ -82,7 +81,7 @@ public class Container {
log.log(Level.WARNING, String.format(
"Failed to construct graph for generation '%d' - scheduling partial graph for deconstruction",
newGraph.generation()), e);
- deconstructAllComponents(newGraph, componentDeconstructor);
+ scheduleGraphForDeconstruction(newGraph);
throw e;
}
Runnable cleanupTask = createPreviousGraphDeconstructionTask(oldGraph, newGraph, obsoleteBundles);
@@ -179,7 +178,7 @@ public class Container {
if ( ! newComponents.containsKey(component))
obsoleteComponents.add(component);
- return () -> componentDeconstructor.deconstruct(oldGraph.generation(), obsoleteComponents, obsoleteBundles);
+ return () -> destructor.deconstruct(oldGraph.generation(), obsoleteComponents, obsoleteBundles);
}
private Set<Bundle> installApplicationBundles(Map<ConfigKey<? extends ConfigInstance>, ConfigInstance> configsIncludingBootstrapConfigs) {
@@ -257,8 +256,8 @@ public class Container {
public void shutdown(ComponentGraph graph) {
shutdownConfigurer();
if (graph != null) {
- deconstructAllComponents(graph, componentDeconstructor);
- componentDeconstructor.shutdown();
+ scheduleGraphForDeconstruction(graph);
+ destructor.shutdown();
}
}
@@ -271,9 +270,9 @@ public class Container {
subscriberFactory.reloadActiveSubscribers(generation);
}
- private void deconstructAllComponents(ComponentGraph graph, ComponentDeconstructor deconstructor) {
- // This is only used for shutdown, so no need to uninstall any bundles.
- deconstructor.deconstruct(graph.generation(), graph.allConstructedComponentsAndProviders(), Collections.emptyList());
+ private void scheduleGraphForDeconstruction(ComponentGraph graph) {
+ // This is only used for shutdown and cleanup of failed graph, so no need to uninstall any bundles.
+ destructor.deconstruct(graph.generation(), graph.allConstructedComponentsAndProviders(), List.of());
}
public static <T extends ConfigInstance> T getConfig(ConfigKey<T> key,