com.github.sonus21.rqueue.utils.QueueThreadPool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rqueue-core Show documentation
Show all versions of rqueue-core Show documentation
Asynchronous and scheduled task executor
The newest version!
/*
* Copyright (c) 2021-2023 Sonu Kumar
*
* 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
*
* https://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.github.sonus21.rqueue.utils;
import com.github.sonus21.rqueue.core.RqueueMessage;
import com.github.sonus21.rqueue.listener.QueueDetail;
import java.util.concurrent.Semaphore;
import java.util.concurrent.TimeUnit;
import lombok.extern.slf4j.Slf4j;
import org.springframework.core.task.AsyncTaskExecutor;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
@Slf4j
public final class QueueThreadPool {
private final AsyncTaskExecutor taskExecutor;
private final boolean defaultExecutor;
private final Semaphore semaphore;
private final int maxJobsCount;
public QueueThreadPool(
AsyncTaskExecutor taskExecutor, boolean defaultExecutor, int maxJobsCount) {
this.taskExecutor = taskExecutor;
this.defaultExecutor = defaultExecutor;
this.maxJobsCount = maxJobsCount;
this.semaphore = new Semaphore(maxJobsCount);
}
public void release() {
release(1);
}
public void release(int n) {
if (n > 0) {
semaphore.release(n);
}
}
public boolean acquire(int n, long timeout) throws InterruptedException {
if (log.isDebugEnabled() && taskExecutor instanceof ThreadPoolTaskExecutor) {
ThreadPoolTaskExecutor executor = ((ThreadPoolTaskExecutor) taskExecutor);
log.debug("Current active threads {}", executor.getActiveCount());
}
return semaphore.tryAcquire(n, timeout, TimeUnit.MILLISECONDS);
}
public void execute(Runnable r) {
this.taskExecutor.execute(r);
}
public int availableThreads() {
return semaphore.availablePermits();
}
public boolean allTasksCompleted() {
int permits = availableThreads();
if (permits > maxJobsCount) {
log.error("More number of release is called");
}
return permits >= maxJobsCount;
}
public String destroy() {
if (!defaultExecutor) {
return null;
}
if (taskExecutor instanceof ThreadPoolTaskExecutor) {
ThreadPoolTaskExecutor executor = ((ThreadPoolTaskExecutor) taskExecutor);
executor.destroy();
return executor.getThreadNamePrefix();
}
return null;
}
public void taskRejected(QueueDetail queueDetail, RqueueMessage message) {
log.warn(
"Task rejected by executor Queue: {}, Message: {}",
queueDetail.getName(),
message.getMessage());
}
}