ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/dbcp/pool2/impl/EvictionTimer.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/dbcp/pool2/impl/EvictionTimer.java
Status
scanned
Type
file
Name
EvictionTimer.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
9335 (9.1 KB)
MD5
bed4e19c25b9ab47e21690a3d468ea0b
SHA1
9894b97141b26de7ecc17b026f52c168a5ae5f49
SHA256
65e2471cea59f4f9336cf968807214373945e2c9e30c399c1f37227dc81396ee
SHA512

      
    
SHA1_git
15df229cd3cde56cdb4236154c5ee4f19b7ddf7a
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
EvictionTimer.java | 9.1 KB |

/* * 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 * * https://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.tomcat.dbcp.pool2.impl; import java.lang.ref.WeakReference; import java.time.Duration; import java.util.HashMap; import java.util.Iterator; import java.util.Map.Entry; import java.util.concurrent.ScheduledFuture; import java.util.concurrent.ScheduledThreadPoolExecutor; import java.util.concurrent.ThreadFactory; import java.util.concurrent.TimeUnit; /** * Provides a shared idle object eviction timer for all pools. * <p> * This class is currently implemented using {@link ScheduledThreadPoolExecutor}. This implementation may change in any * future release. This class keeps track of how many pools are using it. If no pools are using the timer, it is * canceled. This prevents a thread being left running which, in application server environments, can lead to memory * leads and/or prevent applications from shutting down or reloading cleanly. * </p> * <p> * This class has package scope to prevent its inclusion in the pool public API. The class declaration below should * *not* be changed to public. * </p> * <p> * This class is intended to be thread-safe. * </p> * * @since 2.0 */ final class EvictionTimer { /** * Thread factory that creates a daemon thread, with the context class loader from this class. */ private static final class EvictorThreadFactory implements ThreadFactory { @Override public Thread newThread(final Runnable runnable) { final Thread thread = new Thread(null, runnable, "commons-pool-evictor"); thread.setDaemon(true); // POOL-363 - Required for applications using Runtime.addShutdownHook(). thread.setContextClassLoader(EvictorThreadFactory.class.getClassLoader()); return thread; } } /** * Task that removes references to abandoned tasks and shuts * down the executor if there are no live tasks left. */ private static final class Reaper implements Runnable { @Override public void run() { synchronized (EvictionTimer.class) { /* * Need to use iterator over TASK_MAP so entries can be removed when iterating without triggering a * ConcurrentModificationException. */ final Iterator<Entry<WeakReference<BaseGenericObjectPool<?>.Evictor>, WeakRunner<BaseGenericObjectPool<?>.Evictor>>> iterator = TASK_MAP.entrySet().iterator(); while (iterator.hasNext()) { final Entry<WeakReference<BaseGenericObjectPool<?>.Evictor>, WeakRunner<BaseGenericObjectPool<?>.Evictor>> entry = iterator.next(); if (entry.getKey().get() == null) { executor.remove(entry.getValue()); iterator.remove(); } } if (TASK_MAP.isEmpty() && executor != null) { executor.shutdown(); executor.setCorePoolSize(0); executor = null; } } } } /** * Runnable that runs the referent of a weak reference. When the referent is no * no longer reachable, run is no-op. * @param <R> The kind of Runnable. */ private static final class WeakRunner<R extends Runnable> implements Runnable { private final WeakReference<R> ref; /** * Constructs a new instance to track the given reference. * * @param ref the reference to track. */ private WeakRunner(final WeakReference<R> ref) { this.ref = ref; } @Override public void run() { final Runnable task = ref.get(); if (task != null) { task.run(); } else { synchronized (EvictionTimer.class) { executor.remove(this); TASK_MAP.remove(ref); } } } } /** Executor instance */ private static ScheduledThreadPoolExecutor executor; //@GuardedBy("EvictionTimer.class") /** Keys are weak references to tasks, values are runners managed by executor. */ private static final HashMap< WeakReference<BaseGenericObjectPool<?>.Evictor>, WeakRunner<BaseGenericObjectPool<?>.Evictor>> TASK_MAP = new HashMap<>(); // @GuardedBy("EvictionTimer.class") /** * Removes the specified eviction task from the timer. * * @param evictor Task to be canceled. * @param timeout If the associated executor is no longer required, how * long should this thread wait for the executor to * terminate? * @param restarting The state of the evictor. */ static synchronized void cancel(final BaseGenericObjectPool<?>.Evictor evictor, final Duration timeout, final boolean restarting) { if (evictor != null) { evictor.cancel(); remove(evictor); } if (!restarting && executor != null && TASK_MAP.isEmpty()) { executor.shutdown(); try { executor.awaitTermination(timeout.toMillis(), TimeUnit.MILLISECONDS); } catch (final InterruptedException e) { // Swallow // Significant API changes would be required to propagate this } executor.setCorePoolSize(0); executor = null; } } /** * @return the number of eviction tasks under management. */ static synchronized int getNumTasks() { return TASK_MAP.size(); } /** * Gets the task map. Keys are weak references to tasks, values are runners managed by executor. * * @return the task map. */ static HashMap<WeakReference<BaseGenericObjectPool<?>.Evictor>, WeakRunner<BaseGenericObjectPool<?>.Evictor>> getTaskMap() { return TASK_MAP; } /** * Removes evictor from the task set and executor. * Only called when holding the class lock. * * @param evictor Eviction task to remove */ private static void remove(final BaseGenericObjectPool<?>.Evictor evictor) { for (final Entry<WeakReference<BaseGenericObjectPool<?>.Evictor>, WeakRunner<BaseGenericObjectPool<?>.Evictor>> entry : TASK_MAP.entrySet()) { if (entry.getKey().get() == evictor) { executor.remove(entry.getValue()); TASK_MAP.remove(entry.getKey()); break; } } } /** * Adds the specified eviction task to the timer. Tasks that are added with * a call to this method *must* call {@link * #cancel(BaseGenericObjectPool.Evictor, Duration, boolean)} * to cancel the task to prevent memory and/or thread leaks in application * server environments. * * @param task Task to be scheduled. * @param delay Duration before task is executed. * @param period Duration between executions. */ static synchronized void schedule( final BaseGenericObjectPool<?>.Evictor task, final Duration delay, final Duration period) { if (null == executor) { executor = new ScheduledThreadPoolExecutor(1, new EvictorThreadFactory()); executor.setRemoveOnCancelPolicy(true); executor.scheduleAtFixedRate(new Reaper(), delay.toMillis(), period.toMillis(), TimeUnit.MILLISECONDS); } final WeakReference<BaseGenericObjectPool<?>.Evictor> ref = new WeakReference<>(task); final WeakRunner<BaseGenericObjectPool<?>.Evictor> runner = new WeakRunner<>(ref); final ScheduledFuture<?> scheduledFuture = executor.scheduleWithFixedDelay(runner, delay.toMillis(), period.toMillis(), TimeUnit.MILLISECONDS); task.setScheduledFuture(scheduledFuture); TASK_MAP.put(ref, runner); } /** Prevents instantiation */ private EvictionTimer() { // Hide the default constructor } /** * @since 2.4.3 */ @Override public String toString() { final StringBuilder builder = new StringBuilder(); builder.append("EvictionTimer []"); return builder.toString(); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
13.19
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-eb6b5ae0-4f88-4e9b-d67c-c6c8e733b1cd apache-2.0 Apache-2.0
URL Start line End line
https://www.apache.org/licenses/LICENSE-2.0 9 9