/* * Copyright 2015-2016 OpenCB * * 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 org.opencb.opencga.catalog.monitor; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.servlet.ServletContextHandler; import org.eclipse.jetty.servlet.ServletHolder; import org.glassfish.jersey.server.ResourceConfig; import org.glassfish.jersey.servlet.ServletContainer; import org.opencb.opencga.catalog.config.Configuration; import org.opencb.opencga.catalog.exceptions.CatalogException; import org.opencb.opencga.catalog.managers.CatalogManager; import org.opencb.opencga.catalog.monitor.daemons.ExecutionDaemon; import org.opencb.opencga.catalog.monitor.daemons.FileDaemon; import org.opencb.opencga.catalog.monitor.daemons.IndexDaemon; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.IOException; import java.net.URISyntaxException; /** * Created by imedina on 16/06/16. */ public class MonitorService { private Configuration configuration; private CatalogManager catalogManager; private String appHome; private static Server server; private int port; private ExecutionDaemon executionDaemon; private IndexDaemon indexDaemon; private FileDaemon fileDaemon; private Thread executionThread; private Thread indexThread; private Thread fileThread; private boolean exit; protected static Logger logger; public MonitorService(String password, Configuration configuration, String appHome) throws IOException, URISyntaxException { this.configuration = configuration; this.appHome = appHome; init(password); } private void init(String password) throws IOException, URISyntaxException { logger = LoggerFactory.getLogger(this.getClass()); try { this.catalogManager = new CatalogManager(this.configuration); String sessionId = this.catalogManager.login("admin", password, this.configuration.getCatalog().getDatabase().getHosts().get(0)).first().getId(); executionDaemon = new ExecutionDaemon(configuration.getMonitor().getExecutionDaemonInterval(), sessionId, catalogManager, appHome); indexDaemon = new IndexDaemon(configuration.getMonitor().getExecutionDaemonInterval(), sessionId, catalogManager, appHome); fileDaemon = new FileDaemon(configuration.getMonitor().getFileDaemonInterval(), configuration.getMonitor().getDaysToRemove(), sessionId, catalogManager); executionThread = new Thread(executionDaemon, "execution-thread"); indexThread = new Thread(indexDaemon, "index-thread"); fileThread = new Thread(fileDaemon, "file-thread"); this.port = configuration.getMonitor().getPort(); } catch (CatalogException e) { e.printStackTrace(); } } public void start() throws Exception { // Launching the two daemons in two different threads executionThread.start(); indexThread.start(); // fileThread.start(); // Preparing the REST server configuration ResourceConfig resourceConfig = new ResourceConfig(); resourceConfig.registerClasses(AdminWebService.class); ServletContainer sc = new ServletContainer(resourceConfig); ServletHolder sh = new ServletHolder("opencga", sc); server = new Server(port); ServletContextHandler context = new ServletContextHandler(server, null, ServletContextHandler.SESSIONS); context.addServlet(sh, "/opencga/monitor/*"); server.start(); logger.info("REST server started, listening on {}", port); // A hook is added in case the JVM is shutting down Runtime.getRuntime().addShutdownHook(new Thread() { @Override public void run() { try { if (server.isRunning()) { stopRestServer(); } } catch (Exception e) { e.printStackTrace(); } } }); // A separated thread is launched to shut down the server new Thread(() -> { try { while (true) { if (exit) { stopRestServer(); break; } Thread.sleep(1000); } } catch (Exception e) { e.printStackTrace(); } }).start(); // AdminWSServer server needs a reference to this class to cll to .stop() AdminWebService.setServer(this); } public void stop() throws Exception { executionDaemon.setExit(true); fileDaemon.setExit(true); indexDaemon.setExit(true); executionDaemon.setExit(true); // By setting exit to true the monitor thread will close the Jetty server exit = true; } public void blockUntilShutdown() throws InterruptedException { if (server != null) { // Blocking the main thread server.join(); } } private void stopRestServer() throws Exception { // By setting exit to true the monitor thread will close the Jetty server logger.info("*********************************"); logger.info("Shutting down Jetty REST server"); server.stop(); logger.info("REST server shut down"); logger.info("*********************************"); } }