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

com.hivemq.lifecycle.LifecycleRegistry Maven / Gradle / Ivy

There is a newer version: 2025.1
Show newest version
/*
 * Copyright 2019-present HiveMQ GmbH
 *
 * Licensed 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 com.hivemq.lifecycle;

import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.common.util.concurrent.ListeningExecutorService;
import com.google.common.util.concurrent.MoreExecutors;
import com.hivemq.extension.sdk.api.annotations.NotNull;
import com.hivemq.extension.sdk.api.annotations.Nullable;
import com.hivemq.util.ThreadFactoryUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.inject.Singleton;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

import static com.google.common.base.Preconditions.checkNotNull;

/**
 * @author Dominik Obermaier
 */
@Singleton
public class LifecycleRegistry {

    private static final Logger log = LoggerFactory.getLogger(LifecycleRegistry.class);

    private final @NotNull Map singletonClassInvokedStatusList;
    private final @NotNull List preDestroyInvokables;

    private @Nullable ListeningExecutorService listeningExecutorService;

    LifecycleRegistry() {
        singletonClassInvokedStatusList = new ConcurrentHashMap<>();
        preDestroyInvokables = Collections.synchronizedList(new ArrayList<>());
    }

    public void shutdown() {
        if (listeningExecutorService != null) {
            listeningExecutorService.shutdown();
        }
    }

    public void addSingletonClass(final @NotNull Class clazz) {
        singletonClassInvokedStatusList.putIfAbsent(clazz.getCanonicalName(), new InvokeStatus());
    }

    public void addPreDestroyMethod(final @NotNull Method preDestroyMethod, final @NotNull Object onObject) {
        checkNotNull(preDestroyMethod);
        checkNotNull(onObject);
        preDestroyInvokables.add(new PreDestroyInvokable(preDestroyMethod, onObject));
    }

    public  boolean canInvokePostConstruct(final @NotNull Class clazz) {
        final InvokeStatus invokeStatus = singletonClassInvokedStatusList.get(clazz.getCanonicalName());
        if (invokeStatus != null) {
            final boolean postConstructed = invokeStatus.isPostConstructed();
            invokeStatus.setPostConstruct();
            return !postConstructed;
        }
        return true;
    }

    public  boolean canInvokePreDestroy(final @NotNull Class clazz) {
        final InvokeStatus invokeStatus = singletonClassInvokedStatusList.get(clazz.getCanonicalName());
        if (invokeStatus != null) {
            final boolean preDestroyed = invokeStatus.isPreDestroyed();
            invokeStatus.setPreDestroy();
            return !preDestroyed;
        }
        return true;
    }

    /**
     * Executes the preDestroy methods in parallel. This method does not block and
     * you have to synchronize yourself if you want so with the returned
     * {@link com.google.common.util.concurrent.ListenableFuture}
     * 

* There are no guarantees of the return type when you wait for the future. Most likely you'll get Void or null, * though. * * @return a {@link com.google.common.util.concurrent.ListenableFuture} of all preDestroy executions */ public @NotNull ListenableFuture executePreDestroy() { final ExecutorService executorService = Executors.newFixedThreadPool(3, ThreadFactoryUtil.create("PreDestroy-%d")); listeningExecutorService = MoreExecutors.listeningDecorator(executorService); final List> futures = new ArrayList<>(preDestroyInvokables.size()); for (final PreDestroyInvokable preDestroyInvokable : preDestroyInvokables) { futures.add(listeningExecutorService.submit(new Runnable() { @Override public void run() { try { preDestroyInvokable.getPreDestroyMethod().invoke(preDestroyInvokable.getOnObject()); } catch (final IllegalAccessException | InvocationTargetException e) { log.error("Could not execute preDestroy method for class {}", preDestroyInvokable.getOnObject().getClass(), e); } } })); } return Futures.allAsList(futures); } private static final class InvokeStatus { private boolean postConstruct; private boolean preDestroy; public boolean isPostConstructed() { return postConstruct; } public void setPostConstruct() { postConstruct = true; } public boolean isPreDestroyed() { return preDestroy; } public void setPreDestroy() { preDestroy = true; } } private static final class PreDestroyInvokable { private final @NotNull Method preDestroyMethod; private final @NotNull Object onObject; public PreDestroyInvokable(final @NotNull Method preDestroyMethod, final @NotNull Object onObject) { this.preDestroyMethod = preDestroyMethod; this.onObject = onObject; } public @NotNull Method getPreDestroyMethod() { return preDestroyMethod; } public @NotNull Object getOnObject() { return onObject; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy