1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
| import java.util.concurrent.*; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.locks.LockSupport;
public class ThreadUtil {
private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors();
private static final int KEEP_ALIVE_SECONDS = 30;
private static final int QUEUE_SIZE = 10000;
private static final int CPU_MAX_POOL_SIZE = CPU_COUNT;
private static final int IO_MAX_POOL_SIZE = Math.max(2, CPU_COUNT * 2);
private static final int MIXED_MAX_POOL_SIZE = 128; private static final String MIXED_THREAD_AMOUNT = "mixed.thread.amount";
public static class CustomThreadFactory implements ThreadFactory { private static final AtomicInteger poolNumber = new AtomicInteger(1); private final ThreadGroup group; private final AtomicInteger threadNumber = new AtomicInteger(1); private final String threadTag;
CustomThreadFactory(String threadTag) { this.group = Thread.currentThread().getThreadGroup(); this.threadTag = "appPool-" + poolNumber.getAndIncrement() + "-" + threadTag + "-"; }
@Override public Thread newThread(Runnable target) { Thread t = new Thread(group, target, threadTag + threadNumber.getAndIncrement(), 0); if (t.isDaemon()) { t.setDaemon(false); } if (t.getPriority() != Thread.NORM_PRIORITY) { t.setPriority(Thread.NORM_PRIORITY); } return t; } }
static class ShutdownHookThread extends Thread { private volatile boolean hasShutdown = false; private final Callable<?> callback;
public ShutdownHookThread(String name, Callable<?> callback) { super("JVM退出钩子(" + name + ")"); this.callback = callback; }
@Override public void run() { synchronized (this) { System.out.println(getName() + " starting.... "); if (!this.hasShutdown) { this.hasShutdown = true; long beginTime = System.currentTimeMillis(); try { this.callback.call(); } catch (Exception e) { System.out.println(getName() + " error: " + e.getMessage()); } long consumingTimeTotal = System.currentTimeMillis() - beginTime; System.out.println(getName() + " 耗时(ms): " + consumingTimeTotal); } } } }
private static class CpuThreadPoolInstanceHolder { private static final ThreadPoolExecutor EXECUTOR = new ThreadPoolExecutor( CPU_MAX_POOL_SIZE, CPU_MAX_POOL_SIZE, KEEP_ALIVE_SECONDS, TimeUnit.SECONDS, new LinkedBlockingQueue<>(QUEUE_SIZE), new CustomThreadFactory("cpu"));
static { EXECUTOR.allowCoreThreadTimeOut(true); Runtime.getRuntime().addShutdownHook(new ShutdownHookThread("CPU密集型任务线程池", () -> { shutdownThreadPoolGracefully(EXECUTOR); return null; })); } }
private static class IoThreadPoolInstanceHolder { private static final ThreadPoolExecutor EXECUTOR = new ThreadPoolExecutor( IO_MAX_POOL_SIZE, IO_MAX_POOL_SIZE, KEEP_ALIVE_SECONDS, TimeUnit.SECONDS, new LinkedBlockingQueue<>(QUEUE_SIZE), new CustomThreadFactory("io"));
static { EXECUTOR.allowCoreThreadTimeOut(true); Runtime.getRuntime().addShutdownHook( new ShutdownHookThread("IO密集型任务线程池", () -> { shutdownThreadPoolGracefully(EXECUTOR); return null; })); } }
private static class MixedThreadPoolInstanceHolder { private static final int max = (null != System.getProperty(MIXED_THREAD_AMOUNT)) ? Integer.parseInt(System.getProperty(MIXED_THREAD_AMOUNT)) : MIXED_MAX_POOL_SIZE; private static final ThreadPoolExecutor EXECUTOR = new ThreadPoolExecutor( max, max, KEEP_ALIVE_SECONDS, TimeUnit.SECONDS, new LinkedBlockingQueue<>(QUEUE_SIZE), new CustomThreadFactory("mixed"));
static { EXECUTOR.allowCoreThreadTimeOut(true); Runtime.getRuntime().addShutdownHook(new ShutdownHookThread("混合型任务线程池", () -> { shutdownThreadPoolGracefully(EXECUTOR); return null; })); } }
static class SeqOrScheduledTargetThreadPoolLazyHolder { static final ScheduledThreadPoolExecutor EXECUTOR = new ScheduledThreadPoolExecutor( 1, new CustomThreadFactory("seq"));
static { Runtime.getRuntime().addShutdownHook( new ShutdownHookThread("定时和顺序任务线程池", (Callable<Void>) () -> { shutdownThreadPoolGracefully(EXECUTOR); return null; })); } }
public static ThreadPoolExecutor getCpuThreadPoolInstance() { return CpuThreadPoolInstanceHolder.EXECUTOR; }
public static ThreadPoolExecutor getIoThreadPoolInstance() { return IoThreadPoolInstanceHolder.EXECUTOR; }
public static ThreadPoolExecutor getMixedThreadPoolInstance() { return MixedThreadPoolInstanceHolder.EXECUTOR; }
public static ScheduledThreadPoolExecutor getSeqOrScheduledExecutorService() { return SeqOrScheduledTargetThreadPoolLazyHolder.EXECUTOR; }
public static void seqExecute(Runnable command) { getSeqOrScheduledExecutorService().execute(command); }
public static void delayRun(Runnable command, int i, TimeUnit unit) { getSeqOrScheduledExecutorService().schedule(command, i, unit); }
public static void scheduleAtFixedRate(Runnable command, int i, TimeUnit unit) { getSeqOrScheduledExecutorService().scheduleAtFixedRate(command, i, i, unit); }
public static void shutdownThreadPoolGracefully(ExecutorService threadPool) { if (threadPool == null || threadPool.isTerminated()) { return; } try { threadPool.shutdown(); } catch (SecurityException | NullPointerException e) { return; } try { if (!threadPool.awaitTermination(60, TimeUnit.SECONDS)) { threadPool.shutdownNow(); if (!threadPool.awaitTermination(60, TimeUnit.SECONDS)) { System.err.println("线程池任务未正常执行结束"); } } } catch (InterruptedException ie) { threadPool.shutdownNow(); } if (!threadPool.isTerminated()) { try { for (int i = 0; i < 1000; i++) { if (threadPool.awaitTermination(10, TimeUnit.MILLISECONDS)) { break; } threadPool.shutdownNow(); } } catch (Throwable e) { System.err.println(e.getMessage()); } } }
public static void sleepSeconds(int second) { LockSupport.parkNanos(second * 1000L * 1000L * 1000L); }
public static void sleepMilliSeconds(int millisecond) { LockSupport.parkNanos(millisecond * 1000L * 1000L); }
public static String getCurThreadName() { return Thread.currentThread().getName(); }
public static long getCurThreadId() { return Thread.currentThread().getId(); }
public static Thread getCurThread() { return Thread.currentThread(); }
public static String stackClassName(int level) { return Thread.currentThread().getStackTrace()[level].getClassName(); }
public static String stackMethodName(int level) { return Thread.currentThread().getStackTrace()[level].getMethodName(); } }
|