mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
237 lines
6.7 KiB
Java
237 lines
6.7 KiB
Java
package com.commafeed.backend.feeds;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Queue;
|
|
import java.util.concurrent.ExecutorService;
|
|
import java.util.concurrent.Executors;
|
|
|
|
import javax.annotation.PostConstruct;
|
|
import javax.annotation.PreDestroy;
|
|
import javax.enterprise.context.ApplicationScoped;
|
|
import javax.inject.Inject;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import org.apache.commons.codec.digest.DigestUtils;
|
|
import org.apache.commons.lang.time.DateUtils;
|
|
|
|
import com.codahale.metrics.Gauge;
|
|
import com.codahale.metrics.Meter;
|
|
import com.codahale.metrics.MetricRegistry;
|
|
import com.commafeed.backend.dao.FeedDAO;
|
|
import com.commafeed.backend.model.Feed;
|
|
import com.commafeed.backend.services.ApplicationSettingsService;
|
|
import com.google.common.collect.Lists;
|
|
import com.google.common.collect.Maps;
|
|
import com.google.common.collect.Queues;
|
|
|
|
/**
|
|
* Infinite loop fetching feeds from the database and queuing them to the {@link FeedRefreshWorker} pool. Also handles feed database updates
|
|
* at the end of the cycle through {@link #giveBack(Feed)}.
|
|
*
|
|
*/
|
|
@ApplicationScoped
|
|
@Slf4j
|
|
public class FeedRefreshTaskGiver {
|
|
|
|
@Inject
|
|
FeedDAO feedDAO;
|
|
|
|
@Inject
|
|
ApplicationSettingsService applicationSettingsService;
|
|
|
|
@Inject
|
|
MetricRegistry metrics;
|
|
|
|
@Inject
|
|
FeedRefreshWorker worker;
|
|
|
|
private int backgroundThreads;
|
|
|
|
private Queue<FeedRefreshContext> addQueue = Queues.newConcurrentLinkedQueue();
|
|
private Queue<FeedRefreshContext> takeQueue = Queues.newConcurrentLinkedQueue();
|
|
private Queue<Feed> giveBackQueue = Queues.newConcurrentLinkedQueue();
|
|
|
|
private ExecutorService executor;
|
|
|
|
private Meter feedRefreshed;
|
|
private Meter threadWaited;
|
|
private Meter refill;
|
|
|
|
@PostConstruct
|
|
public void init() {
|
|
backgroundThreads = applicationSettingsService.get().getBackgroundThreads();
|
|
executor = Executors.newFixedThreadPool(1);
|
|
feedRefreshed = metrics.meter(MetricRegistry.name(getClass(), "feedRefreshed"));
|
|
threadWaited = metrics.meter(MetricRegistry.name(getClass(), "threadWaited"));
|
|
refill = metrics.meter(MetricRegistry.name(getClass(), "refill"));
|
|
metrics.register(MetricRegistry.name(getClass(), "addQueue"), new Gauge<Integer>() {
|
|
@Override
|
|
public Integer getValue() {
|
|
return addQueue.size();
|
|
}
|
|
});
|
|
metrics.register(MetricRegistry.name(getClass(), "takeQueue"), new Gauge<Integer>() {
|
|
@Override
|
|
public Integer getValue() {
|
|
return takeQueue.size();
|
|
}
|
|
});
|
|
metrics.register(MetricRegistry.name(getClass(), "giveBackQueue"), new Gauge<Integer>() {
|
|
@Override
|
|
public Integer getValue() {
|
|
return giveBackQueue.size();
|
|
}
|
|
});
|
|
}
|
|
|
|
@PreDestroy
|
|
public void shutdown() {
|
|
executor.shutdownNow();
|
|
while (!executor.isTerminated()) {
|
|
try {
|
|
Thread.sleep(100);
|
|
} catch (InterruptedException e) {
|
|
log.error("interrupted while waiting for threads to finish.");
|
|
}
|
|
}
|
|
}
|
|
|
|
public void start() {
|
|
try {
|
|
// sleeping for a little while, let everything settle
|
|
Thread.sleep(5000);
|
|
} catch (InterruptedException e) {
|
|
log.error("interrupted while sleeping");
|
|
}
|
|
log.info("starting feed refresh task giver");
|
|
|
|
executor.execute(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
while (!executor.isShutdown()) {
|
|
try {
|
|
FeedRefreshContext context = take();
|
|
if (context != null) {
|
|
feedRefreshed.mark();
|
|
worker.updateFeed(context);
|
|
} else {
|
|
log.debug("nothing to do, sleeping for 15s");
|
|
threadWaited.mark();
|
|
try {
|
|
Thread.sleep(15000);
|
|
} catch (InterruptedException e) {
|
|
log.error("interrupted while sleeping");
|
|
}
|
|
}
|
|
} catch (Exception e) {
|
|
log.error(e.getMessage(), e);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* take a feed from the refresh queue
|
|
*/
|
|
private FeedRefreshContext take() {
|
|
FeedRefreshContext context = takeQueue.poll();
|
|
|
|
if (context == null) {
|
|
refill();
|
|
context = takeQueue.poll();
|
|
}
|
|
return context;
|
|
}
|
|
|
|
public Long getUpdatableCount() {
|
|
return feedDAO.getUpdatableCount(getLastLoginThreshold());
|
|
}
|
|
|
|
/**
|
|
* add a feed to the refresh queue
|
|
*/
|
|
public void add(Feed feed, boolean urgent) {
|
|
int refreshInterval = applicationSettingsService.get().getRefreshIntervalMinutes();
|
|
if (feed.getLastUpdated() == null || feed.getLastUpdated().before(DateUtils.addMinutes(new Date(), -1 * refreshInterval))) {
|
|
addQueue.add(new FeedRefreshContext(feed, urgent));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* refills the refresh queue and empties the giveBack queue while at it
|
|
*/
|
|
private void refill() {
|
|
refill.mark();
|
|
|
|
List<FeedRefreshContext> contexts = Lists.newArrayList();
|
|
int batchSize = Math.min(100, 3 * backgroundThreads);
|
|
|
|
// add feeds we got from the add() method
|
|
int addQueueSize = addQueue.size();
|
|
for (int i = 0; i < Math.min(batchSize, addQueueSize); i++) {
|
|
contexts.add(addQueue.poll());
|
|
}
|
|
|
|
// add feeds that are up to refresh from the database
|
|
if (!applicationSettingsService.get().isCrawlingPaused()) {
|
|
int count = batchSize - contexts.size();
|
|
if (count > 0) {
|
|
List<Feed> feeds = feedDAO.findNextUpdatable(count, getLastLoginThreshold());
|
|
for (Feed feed : feeds) {
|
|
contexts.add(new FeedRefreshContext(feed, false));
|
|
}
|
|
}
|
|
}
|
|
|
|
// set the disabledDate to now as we use the disabledDate in feedDAO to decide what to refresh next. We also use a map to remove
|
|
// duplicates.
|
|
Map<Long, FeedRefreshContext> map = Maps.newLinkedHashMap();
|
|
for (FeedRefreshContext context : contexts) {
|
|
Feed feed = context.getFeed();
|
|
feed.setDisabledUntil(new Date());
|
|
map.put(feed.getId(), context);
|
|
}
|
|
|
|
// refill the queue
|
|
takeQueue.addAll(map.values());
|
|
|
|
// add feeds from the giveBack queue to the map, overriding duplicates
|
|
int giveBackQueueSize = giveBackQueue.size();
|
|
for (int i = 0; i < giveBackQueueSize; i++) {
|
|
Feed feed = giveBackQueue.poll();
|
|
map.put(feed.getId(), new FeedRefreshContext(feed, false));
|
|
}
|
|
|
|
// update all feeds in the database
|
|
List<Feed> feeds = Lists.newArrayList();
|
|
for (FeedRefreshContext context : map.values()) {
|
|
feeds.add(context.getFeed());
|
|
}
|
|
feedDAO.saveOrUpdate(feeds);
|
|
}
|
|
|
|
/**
|
|
* give a feed back, updating it to the database during the next refill()
|
|
*/
|
|
public void giveBack(Feed feed) {
|
|
String normalized = FeedUtils.normalizeURL(feed.getUrl());
|
|
feed.setNormalizedUrl(normalized);
|
|
feed.setNormalizedUrlHash(DigestUtils.sha1Hex(normalized));
|
|
feed.setLastUpdated(new Date());
|
|
giveBackQueue.add(feed);
|
|
}
|
|
|
|
private Date getLastLoginThreshold() {
|
|
if (applicationSettingsService.get().isHeavyLoad()) {
|
|
return DateUtils.addDays(new Date(), -30);
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
}
|