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

org.apache.webbeans.portable.InjectionPointProducer Maven / Gradle / Ivy

There is a newer version: 10.0.0-M3
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.webbeans.portable;

import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.lang.annotation.Annotation;
import java.lang.reflect.Member;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.Map;
import java.util.Set;

import javax.enterprise.inject.Instance;
import javax.enterprise.inject.spi.Annotated;
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.InjectionPoint;
import javax.enterprise.inject.spi.Interceptor;

import org.apache.webbeans.component.third.ThirdpartyBeanImpl;
import org.apache.webbeans.context.creational.CreationalContextImpl;
import org.apache.webbeans.util.ClassUtil;
import org.apache.webbeans.util.OwbCustomObjectInputStream;
import org.apache.webbeans.util.WebBeansUtil;

public class InjectionPointProducer extends AbstractProducer
{
    
    /**
     * {@inheritDoc}
     */
    @Override
    protected InjectionPoint produce(Map, ?> interceptors, CreationalContextImpl creationalContextImpl)
    {
        if (creationalContextImpl == null)
        {
            return null;
        }

        // the first injection point on the stack is of type InjectionPoint, so we need the second one
        InjectionPoint first = creationalContextImpl.removeInjectionPoint();
        final InjectionPoint injectionPoint;
        if (!InjectionPoint.class.isAssignableFrom(ClassUtil.getClass(first.getType())))
        {
            if (!ThirdpartyBeanImpl.class.isInstance(creationalContextImpl.getBean()))
            {
                throw new IllegalStateException("Inconsistent injection point stack");
            }
            injectionPoint = first;
        }
        else
        {
            injectionPoint = creationalContextImpl.getInjectionPoint();
        }

        if (injectionPoint == null)
        {
            return null;
        }

        try
        {
            final Type type = injectionPoint.getType();
            if (ParameterizedType.class.isInstance(type))
            {
                final ParameterizedType parameterizedType = ParameterizedType.class.cast(type);
                if (parameterizedType.getRawType() == Instance.class)
                {
                    final Bean bean = creationalContextImpl.getBean();
                    return new InjectionPointDelegate(
                            injectionPoint,
                            bean.getBeanClass() != null ? bean.getBeanClass() : parameterizedType.getActualTypeArguments()[0]);
                }
            }
            return injectionPoint;
        }
        finally
        {
            creationalContextImpl.putInjectionPoint(first);
        }
    }

    @Override
    public void dispose(InjectionPoint ip)
    {
        // nothing to do
    }

    private static class InjectionPointDelegate implements InjectionPoint, Serializable
    {
        private InjectionPoint ip;
        private Type type;

        public InjectionPointDelegate(final InjectionPoint injectionPoint, final Type type)
        {
            this.ip = injectionPoint;
            this.type = type;
        }

        @Override
        public Type getType()
        {
            return type;
        }

        @Override
        public Set getQualifiers()
        {
            return ip.getQualifiers();
        }

        @Override
        public Bean getBean()
        {
            return ip.getBean();
        }

        @Override
        public Member getMember()
        {
            return ip.getMember();
        }

        @Override
        public Annotated getAnnotated()
        {
            return ip.getAnnotated();
        }

        @Override
        public boolean isDelegate()
        {
            return ip.isDelegate();
        }

        @Override
        public boolean isTransient()
        {
            return ip.isTransient();
        }

        private void readObject(final ObjectInputStream inp) throws IOException, ClassNotFoundException
        {
            final OwbCustomObjectInputStream owbCustomObjectInputStream = new OwbCustomObjectInputStream(inp, WebBeansUtil.getCurrentClassLoader());
            type = Type.class.cast(owbCustomObjectInputStream.readObject());
            ip = InjectionPoint.class.cast(owbCustomObjectInputStream.readObject());
        }

        private void writeObject(final ObjectOutputStream op) throws IOException
        {
            final ObjectOutputStream out = new ObjectOutputStream(op);
            out.writeObject(type);
            out.writeObject(ip);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy