/* * Copyright (C) 2012-2016 Facebook, 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 com.facebook.nifty.core; import io.airlift.log.Logger; import org.jboss.netty.channel.ChannelFactory; import org.jboss.netty.channel.group.ChannelGroup; import java.util.concurrent.ExecutorService; import java.util.concurrent.TimeUnit; public class ShutdownUtil { private static final Logger log = Logger.get(ShutdownUtil.class); public static void shutdownChannelFactory(ChannelFactory channelFactory, ExecutorService bossExecutor, ExecutorService workerExecutor, ChannelGroup allChannels) { // Close all channels if (allChannels != null) { closeChannels(allChannels); } // Shutdown the channel factory if (channelFactory != null) { channelFactory.shutdown(); } // Stop boss threads if (bossExecutor != null) { shutdownExecutor(bossExecutor, "bossExecutor"); } // Finally stop I/O workers if (workerExecutor != null) { shutdownExecutor(workerExecutor, "workerExecutor"); } // Release any other resources netty might be holding onto via this channelFactory if (channelFactory != null) { channelFactory.releaseExternalResources(); } } public static void closeChannels(ChannelGroup allChannels) { if (allChannels.size() > 0) { // TODO : allow an option here to control if we need to drain connections and wait instead of killing them all try { log.info("Closing %s open client connections", allChannels.size()); if (!allChannels.close().await(5, TimeUnit.SECONDS)) { log.warn("Failed to close all open client connections"); } } catch (InterruptedException e) { log.warn("Interrupted while closing client connections"); Thread.currentThread().interrupt(); } } } // TODO : make wait time configurable ? public static void shutdownExecutor(ExecutorService executor, final String name) { executor.shutdown(); try { log.info("Waiting for %s to shutdown", name); if (!executor.awaitTermination(5, TimeUnit.SECONDS)) { log.warn("%s did not shutdown properly", name); } } catch (InterruptedException e) { log.warn("Interrupted while waiting for %s to shutdown", name); Thread.currentThread().interrupt(); } } }