blob: 931b04eecb684f6b781cefc24fe9d3b9902c9bde [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.camel.impl.converter;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.atomic.AtomicBoolean;
import org.apache.camel.Exchange;
import org.apache.camel.TypeConverter;
import org.apache.camel.spi.FactoryFinder;
import org.apache.camel.spi.Injector;
import org.apache.camel.spi.PackageScanClassResolver;
import org.apache.camel.util.ObjectHelper;
/**
* Lazy implementation of a type converter registry used for
* <a href="http://camel.apache.org/type-converter.html">type converters</a> in Camel.
* <p/>
* This implementation will lazy load type converters on-demand.
*
* @version
*/
public class LazyLoadingTypeConverter extends BaseTypeConverterRegistry {
private final AtomicBoolean loaded = new AtomicBoolean();
public LazyLoadingTypeConverter(PackageScanClassResolver resolver, Injector injector, FactoryFinder factoryFinder) {
super(resolver, injector, factoryFinder);
}
@Override
protected Object doConvertTo(final Class type, final Exchange exchange, final Object value) {
ensureLoaded();
return super.doConvertTo(type, exchange, value);
}
@Override
public TypeConverter getTypeConverter(Class<?> toType, Class<?> fromType) {
ensureLoaded();
return super.getTypeConverter(toType, fromType);
}
@Override
public Set<Class<?>> getFromClassMappings() {
ensureLoaded();
return super.getFromClassMappings();
}
@Override
public Map<Class<?>, TypeConverter> getToClassMappings(Class<?> fromClass) {
ensureLoaded();
return super.getToClassMappings(fromClass);
}
@Override
public Map<TypeMapping, TypeConverter> getTypeMappings() {
ensureLoaded();
return super.getTypeMappings();
}
@Override
protected TypeConverter doLookup(Class<?> toType, Class<?> fromType, boolean isSuper) {
ensureLoaded();
return super.doLookup(toType, fromType, isSuper);
}
private synchronized void ensureLoaded() {
if (loaded.compareAndSet(false, true)) {
try {
super.loadTypeConverters();
} catch (Exception e) {
throw ObjectHelper.wrapRuntimeCamelException(e);
}
}
}
@Override
protected void doStop() throws Exception {
super.doStop();
// reset loaded flag
loaded.set(false);
}
}