
it.tidalwave.role.spi.RoleManagerSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of it-tidalwave-role Show documentation
Show all versions of it-tidalwave-role Show documentation
Roles are a powerful way for designing complex behaviours while keeping good practices such as Single Responsibility, Dependency Inversion and
Interface Segregation.
/*
* #%L
* *********************************************************************************************************************
*
* These Foolish Things - Miscellaneous utilities
* http://thesefoolishthings.tidalwave.it - git clone [email protected]:tidalwave/thesefoolishthings-src.git
* %%
* Copyright (C) 2009 - 2016 Tidalwave s.a.s. (http://tidalwave.it)
* %%
* *********************************************************************************************************************
*
* 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.
*
* *********************************************************************************************************************
*
* $Id$
*
* *********************************************************************************************************************
* #L%
*/
package it.tidalwave.role.spi;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashSet;
import java.util.List;
import java.util.Map.Entry;
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;
import it.tidalwave.util.NotFoundException;
import it.tidalwave.role.ContextManager;
import it.tidalwave.role.spi.impl.DatumAndRole;
import it.tidalwave.role.spi.impl.MultiMap;
import lombok.extern.slf4j.Slf4j;
import static it.tidalwave.role.spi.LogUtil.*;
/***********************************************************************************************************************
*
* A basic implementation of a {@link RoleManager}. This class must be specialized to:
*
*
* - discover roles (see {@link #scan(java.util.Collection)}
* - associate roles to a datum (see {@link #findDatumTypesForRole(java.lang.Class)}
* - associate roles to contexts (see {@link #findContextTypeForRole(java.lang.Class)}
* - eventually retrieve beans to inject in created roles (see {@link #getBean(java.lang.Class)}
*
*
* Specializations might use annotations or configuration files to accomplish these tasks.
*
* @author Fabrizio Giudici
* @version $Id$
*
**********************************************************************************************************************/
@Slf4j
public abstract class RoleManagerSupport implements RoleManager
{
private final static Comparator> CLASS_COMPARATOR = new Comparator>()
{
@Override
public int compare (final @Nonnull Class> class1, final @Nonnull Class> class2)
{
return class1.getName().compareTo(class2.getName());
}
};
private final ContextManager contextManager = ContextManager.Locator.find();
/* VisibleForTesting */ final MultiMap> roleMapByDatumAndRole = new MultiMap<>();
// FIXME: use ConcurrentHashMap// FIXME: use ConcurrentHashMap
/* VisibleForTesting */ final Set alreadyScanned = new HashSet<>();
/*******************************************************************************************************************
*
* {@inheritDoc}
*
******************************************************************************************************************/
@Override @Nonnull
public List extends ROLE_TYPE> findRoles (final @Nonnull Object datum,
final @Nonnull Class roleType)
{
log.trace("findRoles({}, {})", shortId(datum), shortName(roleType));
final Class> datumType = findTypeOf(datum);
final List roles = new ArrayList<>();
final Set> roleImplementationTypes = findRoleImplementationsFor(datumType, roleType);
outer: for (final Class extends ROLE_TYPE> roleImplementationType : roleImplementationTypes)
{
for (final Constructor> constructor : roleImplementationType.getDeclaredConstructors())
{
log.trace(">>>> trying constructor {}", constructor);
final Class>[] parameterTypes = constructor.getParameterTypes();
Class> contextType = null;
Object context = null;
try
{
contextType = findContextTypeForRole(roleImplementationType);
log.trace(">>>> contexts: {}", shortIds(contextManager.getContexts()));
try
{
context = contextManager.findContextOfType(contextType);
}
catch (NotFoundException e)
{
log.trace(">>>> role {} discarded, can't find context: {}",
shortName(roleImplementationType), shortName(contextType));
continue outer;
}
}
catch (NotFoundException e)
{
// ok, no context
}
try
{
final Object[] params = getParameterValues(parameterTypes, datumType, datum, contextType, context);
roles.add(roleType.cast(constructor.newInstance(params)));
break;
}
catch (InstantiationException | IllegalAccessException
| IllegalArgumentException | InvocationTargetException e)
{
log.error("Could not instantiate role of type " + roleImplementationType, e);
}
}
}
if (log.isTraceEnabled())
{
log.trace(">>>> findRoles() returning: {}", shortIds((Collection)roles));
}
return roles;
}
/*******************************************************************************************************************
*
* Prepare the constructor parameters out of the given expected types. Parameters will be eventually made of the
* given datum, context, and other objects returned by {@link #getBean(java.lang.Class)}.
*
* @param parameterTypes the expected types
* @param datumClass the type of the datum
* @param datum the datum
* @param contextClass the type of the context
* @param context the context
*
******************************************************************************************************************/
@Nonnull
private Object[] getParameterValues (final @Nonnull Class>[] parameterTypes,
final @Nonnull Class> datumClass,
final @Nonnull Object datum,
final @Nullable Class> contextClass,
final @Nullable Object context)
{
final List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy