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

org.apache.deltaspike.core.impl.exception.control.HandlerMethodStorageImpl Maven / Gradle / Ivy

/*
 * 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.deltaspike.core.impl.exception.control;

import org.apache.deltaspike.core.api.exception.control.HandlerMethod;
import org.apache.deltaspike.core.api.literal.AnyLiteral;
import org.apache.deltaspike.core.util.HierarchyDiscovery;

import javax.enterprise.inject.Typed;
import javax.enterprise.inject.spi.BeanManager;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import java.util.logging.Logger;

/**
 * Basic implementation for {@link HandlerMethodStorage}.
 */
@SuppressWarnings("CdiManagedBeanInconsistencyInspection")
@Typed()
class HandlerMethodStorageImpl implements HandlerMethodStorage
{
    private final Map>> allHandlers;

    private Logger log = Logger.getLogger(HandlerMethodStorageImpl.class.toString());

    HandlerMethodStorageImpl(Map>> allHandlers)
    {
        this.allHandlers = allHandlers;
    }

    @Override
    public  void registerHandlerMethod(HandlerMethod handlerMethod)
    {
        log.fine(String.format("Adding handler %s to known handlers", handlerMethod));
        if (allHandlers.containsKey(handlerMethod.getExceptionType()))
        {
            allHandlers.get(handlerMethod.getExceptionType()).add(handlerMethod);
        }
        else
        {
            allHandlers.put(handlerMethod.getExceptionType(),
                    new HashSet>(Collections.singleton(handlerMethod)));
        }
    }

    @Override
    public Collection> getHandlersForException(Type exceptionClass,
                                                                                  BeanManager bm,
                                                                                  Set handlerQualifiers,
                                                                                  boolean isBefore)
    {
        final Collection> returningHandlers =
                new TreeSet>(new ExceptionHandlerComparator());
        final HierarchyDiscovery h = new HierarchyDiscovery(exceptionClass);
        final Set closure = h.getTypeClosure();

        for (Type hierarchyType : closure)
        {
            if (allHandlers.get(hierarchyType) != null)
            {
                for (HandlerMethod handler : allHandlers.get(hierarchyType))
                {
                    if (handler.isBeforeHandler() && isBefore)
                    {
                        if (handler.getQualifiers().contains(new AnyLiteral()))
                        {
                            returningHandlers.add(handler);
                        }
                        else
                        {
                            if (!handlerQualifiers.isEmpty() && handlerQualifiers.equals(handler.getQualifiers()))
                            {
                                returningHandlers.add(handler);
                            }
                        }
                    }
                    else if (!handler.isBeforeHandler() && !isBefore)
                    {
                        if (handler.getQualifiers().contains(new AnyLiteral()))
                        {
                            returningHandlers.add(handler);
                        }
                        else
                        {
                            if (!handlerQualifiers.isEmpty() && handlerQualifiers.equals(handler.getQualifiers()))
                            {
                                returningHandlers.add(handler);
                            }
                        }
                    }
                }
            }
        }

        log.fine(String.format("Found handlers %s for exception type %s, qualifiers %s", returningHandlers,
                exceptionClass, handlerQualifiers));
        return Collections.unmodifiableCollection(returningHandlers);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy