]> source.dussan.org Git - pf4j.git/commitdiff
Remove JarPluginManager
authorDecebal Suiu <decebal.suiu@gmail.com>
Thu, 5 Oct 2017 19:08:44 +0000 (22:08 +0300)
committerDecebal Suiu <decebal.suiu@gmail.com>
Thu, 5 Oct 2017 19:08:44 +0000 (22:08 +0300)
demo/app/src/main/java/org/pf4j/demo/Boot.java
pf4j/src/main/java/org/pf4j/CompoundPluginRepository.java
pf4j/src/main/java/org/pf4j/DefaultPluginManager.java
pf4j/src/main/java/org/pf4j/JarPluginManager.java [deleted file]
pf4j/src/main/java/org/pf4j/JarPluginRepository.java [new file with mode: 0644]

index 76145a445166edf64ecb1fa11308f342bd73213a..ba5396e651e44e79c4c9c6d4e192c801b7c32934 100644 (file)
  */
 package org.pf4j.demo;
 
-import java.util.List;
-import java.util.Set;
-
 import org.apache.commons.lang.StringUtils;
-
+import org.pf4j.DefaultPluginManager;
 import org.pf4j.PluginManager;
 import org.pf4j.PluginWrapper;
 import org.pf4j.demo.api.Greeting;
-import org.pf4j.DefaultPluginManager;
-import org.pf4j.JarPluginManager;
+
+import java.util.List;
+import java.util.Set;
 
 /**
  * A boot class that start the demo.
@@ -39,7 +37,6 @@ public class Boot {
 
         // create the plugin manager
         final PluginManager pluginManager = new DefaultPluginManager();
-//        final PluginManager pluginManager = new JarPluginManager();
 
         // load the plugins
         pluginManager.loadPlugins();
index 105929cebb59eff9d5ed8ba1d40aa856f4569170..2bc12574c56c43c77363b7eb94320d5e91e6375b 100644 (file)
@@ -25,10 +25,16 @@ import java.util.List;
  */
 public class CompoundPluginRepository implements PluginRepository {
 
-    private final PluginRepository[] repositories;
+    private List<PluginRepository> repositories = new ArrayList<>();
 
-    public CompoundPluginRepository(PluginRepository... repositories) {
-        this.repositories = repositories;
+    public CompoundPluginRepository add(PluginRepository repository) {
+        if (repository == null) {
+            throw new IllegalArgumentException("null not allowed");
+        }
+
+        repositories.add(repository);
+
+        return this;
     }
 
     @Override
index 1010bcf9d05c52fd12f6873b14b05932871acd45..660950fdcf8979cfe1e85a5ecaf12f3d8e556d8a 100644 (file)
@@ -83,7 +83,9 @@ public class DefaultPluginManager extends AbstractPluginManager {
 
     @Override
     protected PluginRepository createPluginRepository() {
-        return new DefaultPluginRepository(getPluginsRoot(), isDevelopment());
+        return new CompoundPluginRepository()
+            .add(new DefaultPluginRepository(getPluginsRoot(), isDevelopment()))
+            .add(new JarPluginRepository(getPluginsRoot()));
     }
 
     @Override
diff --git a/pf4j/src/main/java/org/pf4j/JarPluginManager.java b/pf4j/src/main/java/org/pf4j/JarPluginManager.java
deleted file mode 100644 (file)
index 9e66df8..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright 2016 Decebal Suiu
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.pf4j;
-
-import org.pf4j.util.AndFileFilter;
-import org.pf4j.util.DirectoryFileFilter;
-import org.pf4j.util.HiddenFilter;
-import org.pf4j.util.JarFileFilter;
-import org.pf4j.util.NameFileFilter;
-import org.pf4j.util.NotFileFilter;
-import org.pf4j.util.OrFileFilter;
-
-import java.io.FileFilter;
-import java.nio.file.Path;
-
-/**
- * It's a {@link PluginManager} that loads plugin from a jar file.
- * Actually, a plugin is a fat jar, a jar which contains classes from all the libraries,
- * on which your project depends and, of course, the classes of current project.
- *
- * @author Decebal Suiu
- */
-public class JarPluginManager extends DefaultPluginManager {
-
-    @Override
-    protected PluginRepository createPluginRepository() {
-        return new JarPluginRepository(getPluginsRoot(), isDevelopment());
-    }
-
-    class JarPluginRepository extends BasePluginRepository {
-
-        public JarPluginRepository(Path pluginsRoot, boolean development) {
-            super(pluginsRoot);
-
-            if (development) {
-                AndFileFilter pluginsFilter = new AndFileFilter(new DirectoryFileFilter());
-                pluginsFilter.addFileFilter(new NotFileFilter(createHiddenPluginFilter(development)));
-                setFilter(pluginsFilter);
-            } else {
-                setFilter(new JarFileFilter());
-            }
-        }
-
-        protected FileFilter createHiddenPluginFilter(boolean development) {
-            OrFileFilter hiddenPluginFilter = new OrFileFilter(new HiddenFilter());
-
-            if (development) {
-                hiddenPluginFilter.addFileFilter(new NameFileFilter("target"));
-            }
-
-            return hiddenPluginFilter;
-        }
-
-    }
-
-}
diff --git a/pf4j/src/main/java/org/pf4j/JarPluginRepository.java b/pf4j/src/main/java/org/pf4j/JarPluginRepository.java
new file mode 100644 (file)
index 0000000..e98c286
--- /dev/null
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2016 Decebal Suiu
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.pf4j;
+
+import org.pf4j.util.JarFileFilter;
+
+import java.nio.file.Path;
+
+/**
+ * @author Decebal Suiu
+ */
+public class JarPluginRepository extends BasePluginRepository {
+
+    public JarPluginRepository(Path pluginsRoot) {
+        super(pluginsRoot, new JarFileFilter());
+    }
+
+}