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

com.wl4g.component.common.eventbus.EventBusSupport Maven / Gradle / Ivy

/*
 * Copyright 2017 ~ 2025 the original author or authors. 
 *
 * 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.wl4g.component.common.eventbus;

import static com.wl4g.component.common.lang.Assert2.isTrueOf;
import static java.lang.String.valueOf;
import static java.util.Objects.isNull;
import static java.util.Objects.nonNull;
import static java.util.concurrent.TimeUnit.MILLISECONDS;

import java.io.Closeable;
import java.io.IOException;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.atomic.AtomicInteger;

import com.google.common.eventbus.AsyncEventBus;
import com.google.common.eventbus.EventBus;

/**
 * {@link EventBusSupport}
 *
 * @author Wangl.sir 
 * @version v1.0 2020-08-18
 * @since
 */
public class EventBusSupport implements Closeable {

	/** {@link EventBus} */
	protected final EventBus bus;

	/** {@link ThreadPoolExecutor} */
	protected ThreadPoolExecutor executor;

	public EventBusSupport(int eventThreads) {
		isTrueOf(eventThreads > 0, "eventThreads >0");
		this.bus = initEventBus(eventThreads);
	}

	/**
	 * Gets default singleton instance of {@link EventBusSupport}.
	 * 
	 * @param config
	 * @return
	 */
	public static EventBusSupport getDefault(int eventThreads) {
		if (isNull(DEFAULT)) { // Single checked
			synchronized (EventBusSupport.class) {
				if (isNull(DEFAULT)) { // Double checked
					DEFAULT = new EventBusSupport(eventThreads);
				}
			}
		}
		return DEFAULT;
	}

	/**
	 * Gets {@link EventBus} instance.
	 * 
	 * @return
	 */
	public EventBus getBus() {
		return bus;
	}

	/**
	 * Registers all subscriber methods. 
* see {@link EventBus#register(Object)} * * @param objects * object whose subscriber methods should be registered. */ public void register(Object... objects) { if (nonNull(objects)) { for (Object obj : objects) { this.bus.register(obj); } } } /** * Unregisters all subscriber methods.
* see {@link EventBus#unregister(Object)} * * @param objects * object whose subscriber methods should be registered. */ public void unregister(Object... objects) { if (nonNull(objects)) { for (Object obj : objects) { this.bus.unregister(obj); } } } /** * Post events to bus.
* see {@link EventBus#post(Object)} * * @param events */ public void post(Object... events) { if (isActive()) { getBus().post(events); } } /** * Check {@link EventBus} worker is active? * * @return */ public boolean isActive() { return nonNull(executor) && !executor.isShutdown(); } @Override public void close() throws IOException { if (isActive()) { executor.shutdown(); } } /** * Init create {@link EventBus} * * @param eventThreads * @return */ private final EventBus initEventBus(int eventThreads) { final AtomicInteger incr = new AtomicInteger(0); ThreadPoolExecutor executor = new ThreadPoolExecutor(eventThreads, eventThreads, 0, MILLISECONDS, new LinkedBlockingQueue<>(), r -> { Thread t = new Thread(r, "scm-event-".concat(valueOf(incr.getAndIncrement()))); if (t.isDaemon()) t.setDaemon(false); if (t.getPriority() != Thread.NORM_PRIORITY) t.setPriority(Thread.NORM_PRIORITY); return t; }); return new AsyncEventBus("scm-event-bus", executor); } /** Single default instance of {@link EventBusSupport} */ private static volatile EventBusSupport DEFAULT; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy