/* * Copyright © 2016 Cask Data, Inc. * * 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 co.cask.cdap.common.service; import com.google.common.util.concurrent.AbstractIdleService; import org.slf4j.Logger; import java.util.concurrent.Executor; /** * An AbstractIdleService that overrides its executor to use one that doesn't print to stderr the exceptions * it gets, but instead */ public abstract class UncaughtExceptionIdleService extends AbstractIdleService { public static Thread.UncaughtExceptionHandler newHandler(final Logger logger) { return new Thread.UncaughtExceptionHandler() { @Override public void uncaughtException(Thread t, Throwable e) { logger.error("Uncaught exception from " + t.toString(), e); } }; } @SuppressWarnings("NullableProblems") @Override protected Executor executor(State state) { final String name = getClass().getSimpleName() + " " + state; return new Executor() { @Override public void execute(Runnable runnable) { Thread t = new Thread(runnable, name); t.setUncaughtExceptionHandler(newHandler(getUncaughtExceptionLogger())); t.start(); } }; } protected abstract Logger getUncaughtExceptionLogger(); }