org.graylog2.periodical.Periodicals Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog2.periodical;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import org.graylog2.plugin.Tools;
import org.graylog2.plugin.periodical.Periodical;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
/**
* @author Lennart Koopmann
*/
public class Periodicals {
private static final Logger LOG = LoggerFactory.getLogger(Periodicals.class);
private final List periodicals;
private final Map futures;
private final ScheduledExecutorService scheduler;
private final ScheduledExecutorService daemonScheduler;
public Periodicals(ScheduledExecutorService scheduler, ScheduledExecutorService daemonScheduler) {
this.scheduler = scheduler;
this.daemonScheduler = daemonScheduler;
this.periodicals = Lists.newArrayList();
this.futures = Maps.newHashMap();
}
public synchronized void registerAndStart(Periodical periodical) {
if (periodical.runsForever()) {
LOG.info("Starting [{}] periodical, running forever.", periodical.getClass().getCanonicalName());
for (int i = 0; i < periodical.getParallelism(); i++) {
Thread t = new Thread(periodical);
t.setDaemon(periodical.isDaemon());
t.setName("periodical-" + periodical.getClass().getCanonicalName() + "-" + i);
t.setUncaughtExceptionHandler(new Tools.LogUncaughtExceptionHandler(LOG));
t.start();
}
} else {
LOG.info(
"Starting [{}] periodical in [{}s], polling every [{}s].",
periodical.getClass().getCanonicalName(),
periodical.getInitialDelaySeconds(),
periodical.getPeriodSeconds());
ScheduledExecutorService scheduler = periodical.isDaemon() ? this.daemonScheduler : this.scheduler;
ScheduledFuture> future = scheduler.scheduleAtFixedRate(
periodical,
periodical.getInitialDelaySeconds(),
periodical.getPeriodSeconds(),
TimeUnit.SECONDS
);
futures.put(periodical, future);
}
periodicals.add(periodical);
}
public synchronized void unregisterAndStop(Periodical periodical) {
if (isPeriodic(periodical)) {
LOG.info("Shutting down periodical [{}].", periodical.getClass().getCanonicalName());
// Cancel future executions.
if (futures.containsKey(periodical)) {
futures.remove(periodical).cancel(false);
periodicals.remove(periodical);
LOG.debug("Shutdown of periodical [{}] complete.", periodical.getClass().getCanonicalName());
} else {
LOG.error("Could not find periodical [{}] in futures list. Not stopping execution.",
periodical.getClass().getCanonicalName());
}
}
}
/**
* @return a copy of the list of all registered periodicals.
*/
public List getAll() {
return Lists.newArrayList(periodicals);
}
/**
*
* @return a copy of the list of all registered periodicals that are configured to be
* stopped on a graceful shutdown.
*/
public List getAllStoppedOnGracefulShutdown() {
List result = Lists.newArrayList();
for (Periodical periodical : periodicals) {
if (periodical.stopOnGracefulShutdown()) {
result.add(periodical);
}
}
return result;
}
/**
* All periodicals which are currently running, i.e. they have been scheduled for periodic execution and ar not just
* one-off periodicals.
*/
public Set getAllRunning() {
return periodicals.stream().filter(this::isPeriodic).collect(Collectors.toSet());
}
/**
* @return a copy of the map of all executor futures
*/
public Map getFutures() {
return Maps.newHashMap(futures);
}
private boolean isPeriodic(Periodical periodical) {
return !periodical.runsForever();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy