summaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/application/ServerRepository.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-06-15 23:09:44 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2016-06-15 23:09:44 +0200
commit72231250ed81e10d66bfe70701e64fa5fe50f712 (patch)
tree2728bba1131a6f6e5bdf95afec7d7ff9358dac50 /jdisc_core/src/main/java/com/yahoo/jdisc/application/ServerRepository.java
Publish
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/application/ServerRepository.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/application/ServerRepository.java75
1 files changed, 75 insertions, 0 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/application/ServerRepository.java b/jdisc_core/src/main/java/com/yahoo/jdisc/application/ServerRepository.java
new file mode 100644
index 00000000000..83aa8e7d9d7
--- /dev/null
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/application/ServerRepository.java
@@ -0,0 +1,75 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.jdisc.application;
+
+import com.google.common.collect.ImmutableList;
+import com.yahoo.jdisc.Container;
+import com.yahoo.jdisc.service.ServerProvider;
+import org.osgi.framework.Bundle;
+
+import java.util.*;
+import java.util.logging.Logger;
+
+/**
+ * This is a repository of {@link ServerProvider}s. An instance of this class is owned by the {@link ContainerBuilder},
+ * and is used to configure the set of ServerProviders that eventually become part of the active {@link Container}.
+ *
+ * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
+ */
+public class ServerRepository implements Iterable<ServerProvider> {
+
+ private static final Logger log = Logger.getLogger(ServerRepository.class.getName());
+ private final List<ServerProvider> servers = new LinkedList<>();
+ private final GuiceRepository guice;
+
+ public ServerRepository(GuiceRepository guice) {
+ this.guice = guice;
+ }
+
+ public Iterable<ServerProvider> activate() { return ImmutableList.copyOf(servers); }
+
+ public List<ServerProvider> installAll(Bundle bundle, Iterable<String> serverNames) throws ClassNotFoundException {
+ List<ServerProvider> lst = new LinkedList<>();
+ for (String serverName : serverNames) {
+ lst.add(install(bundle, serverName));
+ }
+ return lst;
+ }
+
+ public ServerProvider install(Bundle bundle, String serverName) throws ClassNotFoundException {
+ log.finer("Installing server provider '" + serverName + "'.");
+ Class<?> namedClass = bundle.loadClass(serverName);
+ Class<ServerProvider> serverClass = ContainerBuilder.safeClassCast(ServerProvider.class, namedClass);
+ ServerProvider server = guice.getInstance(serverClass);
+ install(server);
+ return server;
+ }
+
+ public void installAll(Iterable<? extends ServerProvider> servers) {
+ for (ServerProvider server : servers) {
+ install(server);
+ }
+ }
+
+ public void install(ServerProvider server) {
+ servers.add(server);
+ }
+
+ public void uninstallAll(Iterable<? extends ServerProvider> handlers) {
+ for (ServerProvider handler : handlers) {
+ uninstall(handler);
+ }
+ }
+
+ public void uninstall(ServerProvider handler) {
+ servers.remove(handler);
+ }
+
+ public Collection<ServerProvider> collection() {
+ return Collections.unmodifiableCollection(servers);
+ }
+
+ @Override
+ public Iterator<ServerProvider> iterator() {
+ return collection().iterator();
+ }
+}