net.e6tech.elements.common.resources.plugin.PluginMap Maven / Gradle / Ivy
/*
* Copyright 2017 Futeh Kao
*
* 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 net.e6tech.elements.common.resources.plugin;
import net.e6tech.elements.common.util.SystemException;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* Created by futeh.
*/
@SuppressWarnings("unchecked")
public class PluginMap implements PluginFactory {
private Map map = new LinkedHashMap<>();
private PluginPath pluginPath;
private PluginManager pluginManager;
@Override
public PluginMap create(PluginManager pluginManager) {
PluginMap copy;
try {
copy = getClass().getDeclaredConstructor().newInstance();
} catch (Exception e) {
throw new SystemException(e);
}
copy.pluginManager = pluginManager;
copy.map = map;
return copy;
}
@Override
public void initialize(PluginPath path) {
pluginPath = path;
}
public void put(K key, Object object) {
map.put(key, object);
}
public void put(K key, V singleton) {
map.put(key, singleton);
}
public void put(K key, Class extends V> cls) {
map.put(key, cls);
}
public boolean containsKey(K key) {
return map.containsKey(key);
}
public V get(K key) {
Object obj = map.get(key);
return pluginManager.createInstance(pluginPath, obj);
}
public Object remove(K key) {
return map.remove(key);
}
public Map plugins() {
return map;
}
@SuppressWarnings("squid:S3776")
public Map map() {
return pluginManager.getResources().configurator().computeIfAbsent(pluginPath.path(),
key -> {
Map m = new LinkedHashMap<>();
for (Map.Entry entry : map.entrySet()) {
Object obj = entry.getValue();
V value = pluginManager.createInstance(pluginPath, obj);
m.put(entry.getKey(), value);
}
return m;
} );
}
}