Bump odlparent to 8.1.2
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / concurrent / FastThreadPoolExecutor.java
1 /*
2  * Copyright (c) 2014 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.yangtools.util.concurrent;
10
11 import com.google.common.base.MoreObjects;
12 import com.google.common.base.MoreObjects.ToStringHelper;
13 import java.util.concurrent.ThreadPoolExecutor;
14 import java.util.concurrent.TimeUnit;
15 import org.slf4j.LoggerFactory;
16
17 /**
18  * A ThreadPoolExecutor with a specified bounded queue capacity that favors creating new threads
19  * over queuing, as the former is faster.
20  *
21  * <p>See {@link SpecialExecutors#newBoundedFastThreadPool} for more details.
22  *
23  * @author Thomas Pantelis
24  */
25 public class FastThreadPoolExecutor extends ThreadPoolExecutor {
26
27     private static final long DEFAULT_IDLE_TIMEOUT_IN_SEC = 15L;
28
29     private final String threadPrefix;
30     private final int maximumQueueSize;
31
32     /**
33      * Constructs a FastThreadPoolExecutor instance.
34      *
35      * @param maximumPoolSize
36      *            the maximum number of threads to allow in the pool. Threads will terminate after
37      *            being idle for 15 seconds.
38      * @param maximumQueueSize
39      *            the capacity of the queue.
40      * @param threadPrefix
41      *            the name prefix for threads created by this executor.
42      * @param loggerIdentity
43      *               the class to use as logger name for logging uncaught exceptions from the threads.
44      */
45     public FastThreadPoolExecutor(final int maximumPoolSize, final int maximumQueueSize, final String threadPrefix,
46             final Class<?> loggerIdentity) {
47         this(maximumPoolSize, maximumQueueSize, DEFAULT_IDLE_TIMEOUT_IN_SEC, TimeUnit.SECONDS,
48               threadPrefix, loggerIdentity);
49     }
50
51     /**
52      * Constructs a FastThreadPoolExecutor instance.
53      *
54      * @param maximumPoolSize
55      *            the maximum number of threads to allow in the pool.
56      * @param maximumQueueSize
57      *            the capacity of the queue.
58      * @param keepAliveTime
59      *            the maximum time that idle threads will wait for new tasks before terminating.
60      * @param unit
61      *            the time unit for the keepAliveTime argument
62      * @param threadPrefix
63      *            the name prefix for threads created by this executor.
64      * @param loggerIdentity
65      *               the class to use as logger name for logging uncaught exceptions from the threads.
66      */
67     // due to loggerIdentity argument usage
68     @SuppressWarnings("checkstyle:LoggerFactoryClassParameter")
69     public FastThreadPoolExecutor(final int maximumPoolSize, final int maximumQueueSize, final long keepAliveTime,
70             final TimeUnit unit, final String threadPrefix, final Class<?> loggerIdentity) {
71         // We use all core threads (the first 2 parameters below equal) so, when a task is submitted,
72         // if the thread limit hasn't been reached, a new thread will be spawned to execute
73         // the task even if there is an existing idle thread in the pool. This is faster than
74         // handing the task to an existing idle thread via the queue. Once the thread limit is
75         // reached, subsequent tasks will be queued. If the queue is full, tasks will be rejected.
76
77         super(maximumPoolSize, maximumPoolSize, keepAliveTime, unit,
78                 new TrackingLinkedBlockingQueue<>(maximumQueueSize));
79
80         this.threadPrefix = threadPrefix;
81         this.maximumQueueSize = maximumQueueSize;
82
83         setThreadFactory(ThreadFactoryProvider.builder().namePrefix(threadPrefix)
84                 .logger(LoggerFactory.getLogger(loggerIdentity)).build().get());
85
86         if (keepAliveTime > 0) {
87             // Need to specifically configure core threads to timeout.
88             allowCoreThreadTimeOut(true);
89         }
90
91         setRejectedExecutionHandler(CountingRejectedExecutionHandler.newAbortPolicy());
92     }
93
94     public long getLargestQueueSize() {
95         return ((TrackingLinkedBlockingQueue<?>)getQueue()).getLargestQueueSize();
96     }
97
98     protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) {
99         return toStringHelper;
100     }
101
102     @Override
103     public final String toString() {
104         return addToStringAttributes(MoreObjects.toStringHelper(this)
105                 .add("Thread Prefix", threadPrefix)
106                 .add("Current Thread Pool Size", getPoolSize())
107                 .add("Largest Thread Pool Size", getLargestPoolSize())
108                 .add("Max Thread Pool Size", getMaximumPoolSize())
109                 .add("Current Queue Size", getQueue().size())
110                 .add("Largest Queue Size", getLargestQueueSize())
111                 .add("Max Queue Size", maximumQueueSize)
112                 .add("Active Thread Count", getActiveCount())
113                 .add("Completed Task Count", getCompletedTaskCount())
114                 .add("Total Task Count", getTaskCount())).toString();
115     }
116 }