software.xdev.tci.factory.registry.DefaultTCIFactoryRegistry Maven / Gradle / Ivy
The newest version!
/*
* Copyright © 2024 XDEV Software (https://xdev.software)
*
* 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 software.xdev.tci.factory.registry;
import java.util.Collections;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.WeakHashMap;
import java.util.concurrent.CompletableFuture;
import java.util.function.Function;
import java.util.stream.Collectors;
import software.xdev.tci.TCI;
import software.xdev.tci.factory.TCIFactory;
public class DefaultTCIFactoryRegistry implements TCIFactoryRegistry
{
protected final Set> factories = Collections.synchronizedSet(new HashSet<>());
protected final Set> warmedUpFactories =
Collections.synchronizedSet(Collections.newSetFromMap(new WeakHashMap<>()));
@Override
public void register(final TCIFactory, ?> tciFactory)
{
this.factories.add(tciFactory);
}
@Override
public void unRegister(final TCIFactory, ?> tciFactory)
{
this.factories.remove(tciFactory);
}
@SuppressWarnings("PMD.AvoidSynchronizedStatement") // Required by synchronizedList
@Override
public void warmUp()
{
synchronized(this.factories)
{
this.factories.stream()
// Check if the factory was already warmed up
.filter(f -> !this.warmedUpFactories.contains(f))
.map(this::warmUpFactory)
.toList()
.forEach(CompletableFuture::join);
}
}
protected CompletableFuture warmUpFactory(final TCIFactory, ?> factory)
{
this.warmedUpFactories.add(factory);
return CompletableFuture.runAsync(factory::warmUp);
}
@Override
public Set> getFactories()
{
return this.factories;
}
@Override
@SuppressWarnings("java:S1452")
public Map, Set>> getReturnedAndInUse()
{
return this.factories.stream()
.filter(f -> !f.getReturnedAndInUse().isEmpty())
.collect(Collectors.toMap(
Function.identity(),
f -> f.getReturnedAndInUse().stream()
.map(x -> (TCI>)x)
.collect(Collectors.toSet())));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy