All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.blueprint.BlueprintContainerBeanRepository Maven / Gradle / Ivy

There is a newer version: 4.8.1
Show newest version
/*
 * 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.blueprint;

import java.util.Collection;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;

import org.apache.camel.NoSuchBeanException;
import org.apache.camel.spi.BeanRepository;
import org.osgi.framework.Bundle;
import org.osgi.service.blueprint.container.BlueprintContainer;
import org.osgi.service.blueprint.container.NoSuchComponentException;
import org.osgi.service.blueprint.reflect.BeanMetadata;
import org.osgi.service.blueprint.reflect.ComponentMetadata;
import org.osgi.service.blueprint.reflect.ReferenceMetadata;

public class BlueprintContainerBeanRepository implements BeanRepository {

    private final BlueprintContainer blueprintContainer;

    private final Map, Map>> perBlueprintContainerCache = new ConcurrentHashMap<>();

    public BlueprintContainerBeanRepository(BlueprintContainer blueprintContainer) {
        this.blueprintContainer = blueprintContainer;
    }

    @Override
    public Object lookupByName(String name) {
        try {
            return blueprintContainer.getComponentInstance(name);
        } catch (NoSuchComponentException e) {
            return null;
        }
    }

    @Override
    public  T lookupByNameAndType(String name, Class type) {
        Object answer;
        try {
            answer = blueprintContainer.getComponentInstance(name);
        } catch (NoSuchComponentException e) {
            return null;
        }

        // just to be safe
        if (answer == null) {
            return null;
        }

        try {
            return type.cast(answer);
        } catch (Throwable e) {
            String msg = "Found bean: " + name + " in BlueprintContainer: " + blueprintContainer
                    + " of type: " + answer.getClass().getName() + " expected type was: " + type;
            throw new NoSuchBeanException(name, msg, e);
        }
    }

    @Override
    @SuppressWarnings("unchecked")
    public  Map findByTypeWithName(Class type) {
        if (perBlueprintContainerCache.containsKey(type)) {
            return (Map) perBlueprintContainerCache.get(type);
        }
        Map result = lookupByType(blueprintContainer, type);
        perBlueprintContainerCache.put(type, (Map>) result);
        return result;
    }

    @Override
    @SuppressWarnings("unchecked")
    public  Set findByType(Class type) {
        if (perBlueprintContainerCache.containsKey(type)) {
            return new HashSet((Collection) perBlueprintContainerCache.get(type).values());
        }
        Map map = lookupByType(blueprintContainer, type);
        perBlueprintContainerCache.put(type, (Map>) map);
        return new HashSet<>(map.values());
    }

    public static  Map lookupByType(BlueprintContainer blueprintContainer, Class type) {
        return lookupByType(blueprintContainer, type, true);
    }

    public static  Map lookupByType(BlueprintContainer blueprintContainer, Class type, boolean includeNonSingletons) {
        Bundle bundle = (Bundle) blueprintContainer.getComponentInstance("blueprintBundle");
        Map objects = new LinkedHashMap<>();
        Set ids = blueprintContainer.getComponentIds();
        for (String id : ids) {
            try {
                ComponentMetadata metadata = blueprintContainer.getComponentMetadata(id);
                Class cl = null;
                if (metadata instanceof BeanMetadata) {
                    BeanMetadata beanMetadata = (BeanMetadata)metadata;
                    // should we skip the bean if its prototype and we are only looking for singletons?
                    if (!includeNonSingletons) {
                        String scope = beanMetadata.getScope();
                        if (BeanMetadata.SCOPE_PROTOTYPE.equals(scope)) {
                            continue;
                        }
                    }
                    String clazz = beanMetadata.getClassName();
                    if (clazz != null) {
                        cl = bundle.loadClass(clazz);
                    }
                } else if (metadata instanceof ReferenceMetadata) {
                    ReferenceMetadata referenceMetadata = (ReferenceMetadata)metadata;
                    cl = bundle.loadClass(referenceMetadata.getInterface());
                }
                if (cl != null && type.isAssignableFrom(cl)) {
                    Object o = blueprintContainer.getComponentInstance(metadata.getId());
                    objects.put(metadata.getId(), type.cast(o));
                }
            } catch (Throwable t) {
                // ignore
            }
        }
        return objects;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy