Package org.apache.webbeans.portable

Source Code of org.apache.webbeans.portable.InjectionPointProducer$InjectionPointDelegate

/*
* 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.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<InjectionPoint>
{
   
    /**
     * {@inheritDoc}
     */
    @Override
    protected InjectionPoint produce(Map<Interceptor<?>, ?> interceptors, CreationalContextImpl<InjectionPoint> creationalContext)
    {
        if (!(creationalContext instanceof CreationalContextImpl))
        {
            return null;
        }
        // the first injection point on the stack is of type InjectionPoint, so we need the second one
        CreationalContextImpl<InjectionPoint> creationalContextImpl = (CreationalContextImpl<InjectionPoint>)creationalContext;
        InjectionPoint first = creationalContextImpl.removeInjectionPoint();
        if (!InjectionPoint.class.isAssignableFrom(ClassUtil.getClass(first.getType())))
        {
            throw new IllegalStateException("Inconsistent injection point stack");
        }
        try
        {
            final InjectionPoint injectionPoint = creationalContextImpl.getInjectionPoint();
            if (injectionPoint == null)
            {
                return null;
            }

            final Type type = injectionPoint.getType();
            if (ParameterizedType.class.isInstance(type))
            {
                final ParameterizedType parameterizedType = ParameterizedType.class.cast(type);
                if (parameterizedType.getRawType() == Instance.class)
                {
                    final Bean<InjectionPoint> 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 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<Annotation> 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);
        }
    }
}
TOP

Related Classes of org.apache.webbeans.portable.InjectionPointProducer$InjectionPointDelegate

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.