
org.apache.tapestry5.ioc.internal.ContributionDefImpl Maven / Gradle / Ivy
The newest version!
// Copyright 2006, 2007, 2008, 2009, 2010, 2011 The Apache Software Foundation
//
// 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.apache.tapestry5.ioc.internal;
import org.apache.tapestry5.commons.*;
import org.apache.tapestry5.commons.internal.util.*;
import org.apache.tapestry5.commons.services.PlasticProxyFactory;
import org.apache.tapestry5.commons.util.CollectionFactory;
import org.apache.tapestry5.ioc.ModuleBuilderSource;
import org.apache.tapestry5.ioc.ServiceResources;
import org.apache.tapestry5.ioc.def.ContributionDef3;
import org.apache.tapestry5.ioc.internal.util.DelegatingInjectionResources;
import org.apache.tapestry5.ioc.internal.util.InjectionResources;
import org.apache.tapestry5.ioc.internal.util.InternalUtils;
import org.apache.tapestry5.ioc.internal.util.MapInjectionResources;
import org.apache.tapestry5.ioc.internal.util.WrongConfigurationTypeGuard;
import org.slf4j.Logger;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Map;
import java.util.Set;
public class ContributionDefImpl implements ContributionDef3
{
private final String serviceId;
private final Method contributorMethod;
private final boolean optional;
private final PlasticProxyFactory proxyFactory;
private final Set markers;
private final Class serviceInterface;
private static final Class[] CONFIGURATION_TYPES = new Class[]
{Configuration.class, MappedConfiguration.class, OrderedConfiguration.class};
public ContributionDefImpl(String serviceId, Method contributorMethod, boolean optional, PlasticProxyFactory proxyFactory,
Class serviceInterface, Set markers)
{
this.serviceId = serviceId;
this.contributorMethod = contributorMethod;
this.optional = optional;
this.proxyFactory = proxyFactory;
this.serviceInterface = serviceInterface;
this.markers = markers;
}
@Override
public String toString()
{
return InternalUtils.asString(contributorMethod, proxyFactory);
}
@Override
public boolean isOptional()
{
return optional;
}
@Override
public String getServiceId()
{
return serviceId;
}
@Override
public void contribute(ModuleBuilderSource moduleSource, ServiceResources resources, Configuration configuration)
{
invokeMethod(moduleSource, resources, Configuration.class, configuration);
}
@Override
public void contribute(ModuleBuilderSource moduleSource, ServiceResources resources,
OrderedConfiguration configuration)
{
invokeMethod(moduleSource, resources, OrderedConfiguration.class, configuration);
}
@Override
public void contribute(ModuleBuilderSource moduleSource, ServiceResources resources,
MappedConfiguration configuration)
{
invokeMethod(moduleSource, resources, MappedConfiguration.class, configuration);
}
private void invokeMethod(ModuleBuilderSource source, ServiceResources resources, Class parameterType,
T parameterValue)
{
Map resourceMap = CollectionFactory.newMap();
resourceMap.put(parameterType, parameterValue);
resourceMap.put(ObjectLocator.class, resources);
resourceMap.put(Logger.class, resources.getLogger());
InjectionResources injectionResources = new MapInjectionResources(resourceMap);
// For each of the other configuration types that is not expected, add a guard.
for (Class t : CONFIGURATION_TYPES)
{
if (parameterType != t)
{
injectionResources = new DelegatingInjectionResources(new WrongConfigurationTypeGuard(
resources.getServiceId(), t, parameterType), injectionResources);
}
}
Throwable fail = null;
Object moduleInstance = InternalUtils.isStatic(contributorMethod) ? null : source.getModuleBuilder();
try
{
ObjectCreator[] parameters = InternalUtils.calculateParametersForMethod(contributorMethod, resources,
injectionResources, resources.getTracker());
contributorMethod.invoke(moduleInstance, InternalUtils.realizeObjects(parameters));
} catch (InvocationTargetException ex)
{
fail = ex.getTargetException();
} catch (Exception ex)
{
fail = ex;
}
if (fail != null)
throw new RuntimeException(IOCMessages.contributionMethodError(contributorMethod, fail), fail);
}
@Override
public Set getMarkers()
{
return markers;
}
@Override
public Class getServiceInterface()
{
return serviceInterface;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy