mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
117 lines
3.1 KiB
Java
117 lines
3.1 KiB
Java
package com.commafeed.backend;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.Calendar;
|
|
import java.util.concurrent.ExecutorService;
|
|
import java.util.concurrent.Executors;
|
|
|
|
import javax.annotation.PostConstruct;
|
|
import javax.annotation.PreDestroy;
|
|
import javax.ejb.ConcurrencyManagement;
|
|
import javax.ejb.ConcurrencyManagementType;
|
|
import javax.ejb.Singleton;
|
|
import javax.ejb.Startup;
|
|
import javax.enterprise.inject.Instance;
|
|
import javax.inject.Inject;
|
|
|
|
import org.apache.commons.lang.mutable.MutableBoolean;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import com.commafeed.backend.dao.FeedCategoryDAO;
|
|
import com.commafeed.backend.dao.FeedDAO;
|
|
import com.commafeed.backend.dao.FeedSubscriptionDAO;
|
|
import com.commafeed.backend.dao.UserDAO;
|
|
import com.commafeed.backend.feeds.FeedRefreshWorker;
|
|
import com.commafeed.backend.model.ApplicationSettings;
|
|
import com.commafeed.backend.model.UserRole.Role;
|
|
import com.commafeed.backend.services.ApplicationSettingsService;
|
|
import com.commafeed.backend.services.UserService;
|
|
|
|
@Startup
|
|
@Singleton
|
|
@ConcurrencyManagement(ConcurrencyManagementType.BEAN)
|
|
public class StartupBean {
|
|
|
|
private static Logger log = LoggerFactory.getLogger(StartupBean.class);
|
|
public static final String USERNAME_ADMIN = "admin";
|
|
public static final String USERNAME_DEMO = "demo";
|
|
|
|
@Inject
|
|
FeedDAO feedDAO;
|
|
|
|
@Inject
|
|
FeedCategoryDAO feedCategoryDAO;
|
|
|
|
@Inject
|
|
FeedSubscriptionDAO feedSubscriptionDAO;
|
|
|
|
@Inject
|
|
UserDAO userDAO;
|
|
|
|
@Inject
|
|
UserService userService;
|
|
|
|
@Inject
|
|
ApplicationSettingsService applicationSettingsService;
|
|
|
|
@Inject
|
|
Instance<FeedRefreshWorker> workers;
|
|
|
|
private long startupTime;
|
|
|
|
private ExecutorService executor;
|
|
private MutableBoolean running = new MutableBoolean(true);
|
|
|
|
@PostConstruct
|
|
private void init() {
|
|
startupTime = Calendar.getInstance().getTimeInMillis();
|
|
if (userDAO.getCount() == 0) {
|
|
initialData();
|
|
}
|
|
|
|
ApplicationSettings settings = applicationSettingsService.get();
|
|
int threads = settings.getBackgroundThreads();
|
|
log.info("Starting {} background threads", threads);
|
|
|
|
executor = Executors.newFixedThreadPool(threads);
|
|
for (int i = 0; i < threads; i++) {
|
|
final int threadId = i;
|
|
executor.execute(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
FeedRefreshWorker worker = workers.get();
|
|
worker.start(running, "Thread " + threadId);
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
private void initialData() {
|
|
log.info("Populating database with default values");
|
|
applicationSettingsService.save(new ApplicationSettings());
|
|
userService.register(USERNAME_ADMIN, "admin",
|
|
Arrays.asList(Role.ADMIN, Role.USER));
|
|
userService.register(USERNAME_DEMO, "demo", Arrays.asList(Role.USER));
|
|
}
|
|
|
|
public long getStartupTime() {
|
|
return startupTime;
|
|
}
|
|
|
|
@PreDestroy
|
|
public void shutdown() {
|
|
running.setValue(false);
|
|
executor.shutdownNow();
|
|
while (!executor.isTerminated()) {
|
|
try {
|
|
Thread.sleep(100);
|
|
} catch (InterruptedException e) {
|
|
log.error("interrupted while waiting for threads to finish.");
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|