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

org.apache.camel.cdi.SyntheticBean Maven / Gradle / Ivy

There is a newer version: 3.22.2
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.cdi;

import java.util.Collections;
import java.util.Set;
import java.util.StringJoiner;
import java.util.function.Function;

import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.CreationException;
import javax.enterprise.inject.InjectionException;
import javax.enterprise.inject.Vetoed;
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.BeanManager;
import javax.enterprise.inject.spi.InjectionPoint;
import javax.enterprise.inject.spi.InjectionTarget;
import javax.enterprise.inject.spi.PassivationCapable;

import static org.apache.camel.cdi.CdiSpiHelper.createBeanId;

@Vetoed
class SyntheticBean extends SyntheticBeanAttributes implements Bean, PassivationCapable {

    private final Class type;

    private final InjectionTarget target;

    private final Function, String> toString;

    SyntheticBean(BeanManager manager, SyntheticAnnotated annotated, Class type, InjectionTarget target,
                  Function, String> toString) {
        super(manager, annotated);
        this.type = type;
        this.target = target;
        this.toString = toString;
    }

    @Override
    public Class getBeanClass() {
        return type;
    }

    @Override
    public T create(CreationalContext creationalContext) {
        try {
            T instance = target.produce(creationalContext);
            target.inject(instance, creationalContext);
            target.postConstruct(instance);
            return instance;
        } catch (Exception cause) {
            throw new CreationException("Error while instantiating " + this, cause);
        }
    }

    @Override
    public void destroy(T instance, CreationalContext creationalContext) {
        try {
            target.preDestroy(instance);
            target.dispose(instance);
        } catch (Exception cause) {
            throw new InjectionException("Error while destroying " + this, cause);
        } finally {
            creationalContext.release();
        }
    }

    @Override
    public Set getInjectionPoints() {
        return Collections.emptySet();
    }

    @Override
    public boolean isNullable() {
        return false;
    }

    @Override
    public String toString() {
        return toString.apply(this);
    }

    @Override
    public String getId() {
        return new StringJoiner("%")
                .add("CAMEL-CDI")
                .add(getClass().getSimpleName())
                .add(type.getName())
                .add(createBeanId(this))
                .toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy