com.ait.tooling.common.api.factory.AbstractRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ahome-tooling-common Show documentation
Show all versions of ahome-tooling-common Show documentation
Ahome-Tooling-Common is common integfaces and utility classes for Ahome Tooling Projects.
/*
Copyright (c) 2014,2015,2016 Ahome' Innovation Technologies. All rights reserved.
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 com.ait.tooling.common.api.factory;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Objects;
import com.ait.tooling.common.api.java.util.function.Supplier;
import com.ait.tooling.common.api.types.IStringValued;
public abstract class AbstractRegistry implements IRegistry
{
private boolean m_canmodify;
private final LinkedHashMap m_factories = new LinkedHashMap();
private final LinkedHashMap> m_suppliers = new LinkedHashMap>();
protected AbstractRegistry()
{
this(false);
}
protected AbstractRegistry(final boolean canmodify)
{
setModifiable(canmodify);
}
protected final void setModifiable(final boolean canmodify)
{
m_canmodify = canmodify;
}
@Override
public final boolean isModifiable()
{
return m_canmodify;
}
@Override
public final boolean isDefined(final String name)
{
return m_suppliers.containsKey(Objects.requireNonNull(name));
}
@Override
public final int size()
{
return m_suppliers.size();
}
@Override
public final boolean isEmpty()
{
return m_suppliers.isEmpty();
}
@Override
public final boolean isNull(final String name)
{
return (null == m_suppliers.get(Objects.requireNonNull(name)));
}
@Override
public final List keys()
{
return Collections.unmodifiableList(new ArrayList(m_suppliers.keySet()));
}
public synchronized F get(final String name)
{
F factory = m_factories.get(Objects.requireNonNull(name));
if (null == factory)
{
Supplier supplier = m_suppliers.get(name);
if (null != supplier)
{
factory = supplier.get();
if (null != factory)
{
m_factories.put(name, factory);
}
}
}
return factory;
}
protected synchronized void putFactorySupplier(final IStringValued name, final Supplier supplier)
{
putFactorySupplier(Objects.requireNonNull(Objects.requireNonNull(name).getValue()), Objects.requireNonNull(supplier));
}
protected synchronized void putFactorySupplier(final String name, final Supplier supplier)
{
Objects.requireNonNull(name);
Objects.requireNonNull(supplier);
if (isModifiable())
{
m_factories.remove(name);
m_suppliers.put(name, supplier);
}
else
{
if (isDefined(name))
{
throw new UnmodifiableTypeRegistryException(name);
}
else
{
m_suppliers.put(name, supplier);
}
}
}
@Override
public synchronized void clear()
{
if (isModifiable())
{
m_factories.clear();
m_suppliers.clear();
}
else
{
throw new UnmodifiableTypeRegistryException("clear()");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy