/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.hive.common.util; import java.io.File; import java.util.Collections; import java.util.HashSet; import java.util.Set; import org.apache.hadoop.fs.FileSystem; import com.google.common.annotations.VisibleForTesting; /** * This is just a wrapper around hadoop's ShutdownHookManager but also manages delete on exit hook for temp files. */ public class ShutdownHookManager { private static final org.apache.hadoop.util.ShutdownHookManager MGR = org.apache.hadoop.util.ShutdownHookManager.get(); private static final DeleteOnExitHook DELETE_ON_EXIT_HOOK = new DeleteOnExitHook(); static { MGR.addShutdownHook(DELETE_ON_EXIT_HOOK, -1); } /** * Adds shutdown hook with default priority (10) * @param shutdownHook - shutdown hook */ public static void addShutdownHook(Runnable shutdownHook) { addShutdownHook(shutdownHook, FileSystem.SHUTDOWN_HOOK_PRIORITY); } /** * Adds a shutdownHook with a priority, the higher the priority * the earlier will run. ShutdownHooks with same priority run * in a non-deterministic order. * * @param shutdownHook shutdownHook <code>Runnable</code> * @param priority priority of the shutdownHook. */ public static void addShutdownHook(Runnable shutdownHook, int priority) { if (priority < 0) { throw new IllegalArgumentException("Priority should be greater than or equal to zero"); } MGR.addShutdownHook(shutdownHook, priority); } /** * Indicates if shutdown is in progress or not. * * @return TRUE if the shutdown is in progress, otherwise FALSE. */ public static boolean isShutdownInProgress() { return MGR.isShutdownInProgress(); } /** * Removes a shutdownHook. * * @param shutdownHook shutdownHook to remove. * @return TRUE if the shutdownHook was registered and removed, * FALSE otherwise (including when shutdownHook == null) */ public static boolean removeShutdownHook(Runnable shutdownHook) { if (shutdownHook == null) { return false; } return MGR.removeShutdownHook(shutdownHook); } /** * register file to delete-on-exit hook * * {@link org.apache.hadoop.hive.common.FileUtils#createTempFile} */ public static void deleteOnExit(File file) { if (MGR.isShutdownInProgress()) { throw new IllegalStateException("Shutdown in progress, cannot add a deleteOnExit"); } DELETE_ON_EXIT_HOOK.deleteTargets.add(file); } /** * deregister file from delete-on-exit hook */ public static void cancelDeleteOnExit(File file) { if (MGR.isShutdownInProgress()) { throw new IllegalStateException("Shutdown in progress, cannot cancel a deleteOnExit"); } DELETE_ON_EXIT_HOOK.deleteTargets.remove(file); } @VisibleForTesting static boolean isRegisteredToDeleteOnExit(File file) { return DELETE_ON_EXIT_HOOK.deleteTargets.contains(file); } private static class DeleteOnExitHook implements Runnable { private final Set<File> deleteTargets = Collections.synchronizedSet(new HashSet<File>()); @Override public void run() { for (File deleteTarget : deleteTargets) { deleteTarget.delete(); } deleteTargets.clear(); } } }