ThreadPoolManager.java 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package com.l2jserver.gameserver;
  16. import java.util.concurrent.LinkedBlockingQueue;
  17. import java.util.concurrent.RejectedExecutionException;
  18. import java.util.concurrent.ScheduledFuture;
  19. import java.util.concurrent.ScheduledThreadPoolExecutor;
  20. import java.util.concurrent.ThreadFactory;
  21. import java.util.concurrent.ThreadPoolExecutor;
  22. import java.util.concurrent.TimeUnit;
  23. import java.util.concurrent.atomic.AtomicInteger;
  24. import java.util.logging.Logger;
  25. import org.mmocore.network.ReceivablePacket;
  26. import com.l2jserver.Config;
  27. import com.l2jserver.gameserver.network.L2GameClient;
  28. import com.l2jserver.gameserver.util.StringUtil;
  29. /**
  30. * <p>This class is made to handle all the ThreadPools used in L2j.</p>
  31. * <p>Scheduled Tasks can either be sent to a {@link #_generalScheduledThreadPool "general"} or {@link #_effectsScheduledThreadPool "effects"} {@link ScheduledThreadPoolExecutor ScheduledThreadPool}:
  32. * The "effects" one is used for every effects (skills, hp/mp regen ...) while the "general" one is used for
  33. * everything else that needs to be scheduled.<br>
  34. * There also is an {@link #_aiScheduledThreadPool "ai"} {@link ScheduledThreadPoolExecutor ScheduledThreadPool} used for AI Tasks.</p>
  35. * <p>Tasks can be sent to {@link ScheduledThreadPoolExecutor ScheduledThreadPool} either with:
  36. * <ul>
  37. * <li>{@link #scheduleEffect(Runnable, long)} : for effects Tasks that needs to be executed only once.</li>
  38. * <li>{@link #scheduleGeneral(Runnable, long)} : for scheduled Tasks that needs to be executed once.</li>
  39. * <li>{@link #scheduleAi(Runnable, long)} : for AI Tasks that needs to be executed once</li>
  40. * </ul>
  41. * or
  42. * <ul>
  43. * <li>{@link #scheduleEffectAtFixedRate(Runnable, long, long)(Runnable, long)} : for effects Tasks that needs to be executed periodicaly.</li>
  44. * <li>{@link #scheduleGeneralAtFixedRate(Runnable, long, long)(Runnable, long)} : for scheduled Tasks that needs to be executed periodicaly.</li>
  45. * <li>{@link #scheduleAiAtFixedRate(Runnable, long, long)(Runnable, long)} : for AI Tasks that needs to be executed periodicaly</li>
  46. * </ul></p>
  47. *
  48. * <p>For all Tasks that should be executed with no delay asynchronously in a ThreadPool there also are usual {@link ThreadPoolExecutor ThreadPools}
  49. * that can grow/shrink according to their load.:
  50. * <ul>
  51. * <li>{@link #_generalPacketsThreadPool GeneralPackets} where most packets handler are executed.</li>
  52. * <li>{@link #_ioPacketsThreadPool I/O Packets} where all the i/o packets are executed.</li>
  53. * <li>There will be an AI ThreadPool where AI events should be executed</li>
  54. * <li>A general ThreadPool where everything else that needs to run asynchronously with no delay should be executed ({@link com.l2jserver.gameserver.model.actor.knownlist KnownList} updates, SQL updates/inserts...)?</li>
  55. * </ul>
  56. * </p>
  57. * @author -Wooden-
  58. *
  59. */
  60. public class ThreadPoolManager
  61. {
  62. protected static final Logger _log = Logger.getLogger(ThreadPoolManager.class.getName());
  63. public ScheduledThreadPoolExecutor _effectsScheduledThreadPool;
  64. private ScheduledThreadPoolExecutor _generalScheduledThreadPool;
  65. private ThreadPoolExecutor _generalPacketsThreadPool;
  66. private ThreadPoolExecutor _ioPacketsThreadPool;
  67. // will be really used in the next AI implementation.
  68. private ThreadPoolExecutor _aiThreadPool;
  69. private ThreadPoolExecutor _generalThreadPool;
  70. // temp
  71. private ScheduledThreadPoolExecutor _aiScheduledThreadPool;
  72. /** temp workaround for VM issue */
  73. private static final long MAX_DELAY = Long.MAX_VALUE / 1000000 / 2;
  74. private boolean _shutdown;
  75. public static ThreadPoolManager getInstance()
  76. {
  77. return SingletonHolder._instance;
  78. }
  79. private ThreadPoolManager()
  80. {
  81. _effectsScheduledThreadPool = new ScheduledThreadPoolExecutor(Config.THREAD_P_EFFECTS, new PriorityThreadFactory("EffectsSTPool", Thread.NORM_PRIORITY));
  82. _generalScheduledThreadPool = new ScheduledThreadPoolExecutor(Config.THREAD_P_GENERAL, new PriorityThreadFactory("GeneralSTPool", Thread.NORM_PRIORITY));
  83. _ioPacketsThreadPool = new ThreadPoolExecutor(Config.IO_PACKET_THREAD_CORE_SIZE, Integer.MAX_VALUE, 5L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(), new PriorityThreadFactory("I/O Packet Pool", Thread.NORM_PRIORITY + 1));
  84. _generalPacketsThreadPool = new ThreadPoolExecutor(Config.GENERAL_PACKET_THREAD_CORE_SIZE, Config.GENERAL_PACKET_THREAD_CORE_SIZE + 2, 15L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(), new PriorityThreadFactory("Normal Packet Pool", Thread.NORM_PRIORITY + 1));
  85. _generalThreadPool = new ThreadPoolExecutor(Config.GENERAL_THREAD_CORE_SIZE, Config.GENERAL_THREAD_CORE_SIZE + 2, 5L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(), new PriorityThreadFactory("General Pool", Thread.NORM_PRIORITY));
  86. // will be really used in the next AI implementation.
  87. _aiThreadPool = new ThreadPoolExecutor(1, Config.AI_MAX_THREAD, 10L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>());
  88. _aiScheduledThreadPool = new ScheduledThreadPoolExecutor(Config.AI_MAX_THREAD, new PriorityThreadFactory("AISTPool", Thread.NORM_PRIORITY));
  89. }
  90. public static long validateDelay(long delay)
  91. {
  92. if (delay < 0)
  93. delay = 0;
  94. else if (delay > MAX_DELAY)
  95. delay = MAX_DELAY;
  96. return delay;
  97. }
  98. public ScheduledFuture<?> scheduleEffect(Runnable r, long delay)
  99. {
  100. try
  101. {
  102. delay = ThreadPoolManager.validateDelay(delay);
  103. return _effectsScheduledThreadPool.schedule(r, delay, TimeUnit.MILLISECONDS);
  104. }
  105. catch (RejectedExecutionException e)
  106. {
  107. return null;
  108. }
  109. }
  110. public ScheduledFuture<?> scheduleEffectAtFixedRate(Runnable r, long initial, long delay)
  111. {
  112. try
  113. {
  114. delay = ThreadPoolManager.validateDelay(delay);
  115. initial = ThreadPoolManager.validateDelay(initial);
  116. return _effectsScheduledThreadPool.scheduleAtFixedRate(r, initial, delay, TimeUnit.MILLISECONDS);
  117. }
  118. catch (RejectedExecutionException e)
  119. {
  120. return null; /* shutdown, ignore */
  121. }
  122. }
  123. public ScheduledFuture<?> scheduleGeneral(Runnable r, long delay)
  124. {
  125. try
  126. {
  127. delay = ThreadPoolManager.validateDelay(delay);
  128. return _generalScheduledThreadPool.schedule(r, delay, TimeUnit.MILLISECONDS);
  129. }
  130. catch (RejectedExecutionException e)
  131. {
  132. return null; /* shutdown, ignore */
  133. }
  134. }
  135. public ScheduledFuture<?> scheduleGeneralAtFixedRate(Runnable r, long initial, long delay)
  136. {
  137. try
  138. {
  139. delay = ThreadPoolManager.validateDelay(delay);
  140. initial = ThreadPoolManager.validateDelay(initial);
  141. return _generalScheduledThreadPool.scheduleAtFixedRate(r, initial, delay, TimeUnit.MILLISECONDS);
  142. }
  143. catch (RejectedExecutionException e)
  144. {
  145. return null; /* shutdown, ignore */
  146. }
  147. }
  148. public boolean removeGeneral(Runnable r)
  149. {
  150. return _generalScheduledThreadPool.remove(r);
  151. }
  152. public ScheduledFuture<?> scheduleAi(Runnable r, long delay)
  153. {
  154. try
  155. {
  156. delay = ThreadPoolManager.validateDelay(delay);
  157. return _aiScheduledThreadPool.schedule(r, delay, TimeUnit.MILLISECONDS);
  158. }
  159. catch (RejectedExecutionException e)
  160. {
  161. return null; /* shutdown, ignore */
  162. }
  163. }
  164. public ScheduledFuture<?> scheduleAiAtFixedRate(Runnable r, long initial, long delay)
  165. {
  166. try
  167. {
  168. delay = ThreadPoolManager.validateDelay(delay);
  169. initial = ThreadPoolManager.validateDelay(initial);
  170. return _aiScheduledThreadPool.scheduleAtFixedRate(r, initial, delay, TimeUnit.MILLISECONDS);
  171. }
  172. catch (RejectedExecutionException e)
  173. {
  174. return null; /* shutdown, ignore */
  175. }
  176. }
  177. public void executePacket(ReceivablePacket<L2GameClient> pkt)
  178. {
  179. _generalPacketsThreadPool.execute(pkt);
  180. }
  181. public void executeIOPacket(ReceivablePacket<L2GameClient> pkt)
  182. {
  183. _ioPacketsThreadPool.execute(pkt);
  184. }
  185. public void executeTask(Runnable r)
  186. {
  187. _generalThreadPool.execute(r);
  188. }
  189. public void executeAi(Runnable r)
  190. {
  191. _aiThreadPool.execute(r);
  192. }
  193. public String[] getStats()
  194. {
  195. return new String[] {
  196. "STP:",
  197. " + Effects:",
  198. " |- ActiveThreads: " + _effectsScheduledThreadPool.getActiveCount(),
  199. " |- getCorePoolSize: " + _effectsScheduledThreadPool.getCorePoolSize(),
  200. " |- PoolSize: " + _effectsScheduledThreadPool.getPoolSize(),
  201. " |- MaximumPoolSize: " + _effectsScheduledThreadPool.getMaximumPoolSize(),
  202. " |- CompletedTasks: " + _effectsScheduledThreadPool.getCompletedTaskCount(),
  203. " |- ScheduledTasks: " + (_effectsScheduledThreadPool.getTaskCount() - _effectsScheduledThreadPool.getCompletedTaskCount()),
  204. " | -------",
  205. " + General:",
  206. " |- ActiveThreads: " + _generalScheduledThreadPool.getActiveCount(),
  207. " |- getCorePoolSize: " + _generalScheduledThreadPool.getCorePoolSize(),
  208. " |- PoolSize: " + _generalScheduledThreadPool.getPoolSize(),
  209. " |- MaximumPoolSize: " + _generalScheduledThreadPool.getMaximumPoolSize(),
  210. " |- CompletedTasks: " + _generalScheduledThreadPool.getCompletedTaskCount(),
  211. " |- ScheduledTasks: " + (_generalScheduledThreadPool.getTaskCount() - _generalScheduledThreadPool.getCompletedTaskCount()),
  212. " | -------",
  213. " + AI:",
  214. " |- ActiveThreads: " + _aiScheduledThreadPool.getActiveCount(),
  215. " |- getCorePoolSize: " + _aiScheduledThreadPool.getCorePoolSize(),
  216. " |- PoolSize: " + _aiScheduledThreadPool.getPoolSize(),
  217. " |- MaximumPoolSize: " + _aiScheduledThreadPool.getMaximumPoolSize(),
  218. " |- CompletedTasks: " + _aiScheduledThreadPool.getCompletedTaskCount(),
  219. " |- ScheduledTasks: " + (_aiScheduledThreadPool.getTaskCount() - _aiScheduledThreadPool.getCompletedTaskCount()),
  220. "TP:",
  221. " + Packets:",
  222. " |- ActiveThreads: " + _generalPacketsThreadPool.getActiveCount(),
  223. " |- getCorePoolSize: " + _generalPacketsThreadPool.getCorePoolSize(),
  224. " |- MaximumPoolSize: " + _generalPacketsThreadPool.getMaximumPoolSize(),
  225. " |- LargestPoolSize: " + _generalPacketsThreadPool.getLargestPoolSize(),
  226. " |- PoolSize: " + _generalPacketsThreadPool.getPoolSize(),
  227. " |- CompletedTasks: " + _generalPacketsThreadPool.getCompletedTaskCount(),
  228. " |- QueuedTasks: " + _generalPacketsThreadPool.getQueue().size(),
  229. " | -------",
  230. " + I/O Packets:",
  231. " |- ActiveThreads: " + _ioPacketsThreadPool.getActiveCount(),
  232. " |- getCorePoolSize: " + _ioPacketsThreadPool.getCorePoolSize(),
  233. " |- MaximumPoolSize: " + _ioPacketsThreadPool.getMaximumPoolSize(),
  234. " |- LargestPoolSize: " + _ioPacketsThreadPool.getLargestPoolSize(),
  235. " |- PoolSize: " + _ioPacketsThreadPool.getPoolSize(),
  236. " |- CompletedTasks: " + _ioPacketsThreadPool.getCompletedTaskCount(),
  237. " |- QueuedTasks: " + _ioPacketsThreadPool.getQueue().size(),
  238. " | -------",
  239. " + General Tasks:",
  240. " |- ActiveThreads: " + _generalThreadPool.getActiveCount(),
  241. " |- getCorePoolSize: " + _generalThreadPool.getCorePoolSize(),
  242. " |- MaximumPoolSize: " + _generalThreadPool.getMaximumPoolSize(),
  243. " |- LargestPoolSize: " + _generalThreadPool.getLargestPoolSize(),
  244. " |- PoolSize: " + _generalThreadPool.getPoolSize(),
  245. " |- CompletedTasks: " + _generalThreadPool.getCompletedTaskCount(),
  246. " |- QueuedTasks: " + _generalThreadPool.getQueue().size(),
  247. " | -------",
  248. " + AI:",
  249. " |- Not Done"
  250. };
  251. }
  252. private class PriorityThreadFactory implements ThreadFactory
  253. {
  254. private int _prio;
  255. private String _name;
  256. private AtomicInteger _threadNumber = new AtomicInteger(1);
  257. private ThreadGroup _group;
  258. public PriorityThreadFactory(String name, int prio)
  259. {
  260. _prio = prio;
  261. _name = name;
  262. _group = new ThreadGroup(_name);
  263. }
  264. /* (non-Javadoc)
  265. * @see java.util.concurrent.ThreadFactory#newThread(java.lang.Runnable)
  266. */
  267. public Thread newThread(Runnable r)
  268. {
  269. Thread t = new Thread(_group, r);
  270. t.setName(_name + "-" + _threadNumber.getAndIncrement());
  271. t.setPriority(_prio);
  272. return t;
  273. }
  274. public ThreadGroup getGroup()
  275. {
  276. return _group;
  277. }
  278. }
  279. /**
  280. *
  281. */
  282. public void shutdown()
  283. {
  284. _shutdown = true;
  285. try
  286. {
  287. _effectsScheduledThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  288. _generalScheduledThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  289. _generalPacketsThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  290. _ioPacketsThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  291. _generalThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  292. _aiThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  293. _effectsScheduledThreadPool.shutdown();
  294. _generalScheduledThreadPool.shutdown();
  295. _generalPacketsThreadPool.shutdown();
  296. _ioPacketsThreadPool.shutdown();
  297. _generalThreadPool.shutdown();
  298. _aiThreadPool.shutdown();
  299. _log.info("All ThreadPools are now stopped");
  300. }
  301. catch (InterruptedException e)
  302. {
  303. // TODO Auto-generated catch block
  304. e.printStackTrace();
  305. }
  306. }
  307. public boolean isShutdown()
  308. {
  309. return _shutdown;
  310. }
  311. /**
  312. *
  313. */
  314. public void purge()
  315. {
  316. _effectsScheduledThreadPool.purge();
  317. _generalScheduledThreadPool.purge();
  318. _aiScheduledThreadPool.purge();
  319. _ioPacketsThreadPool.purge();
  320. _generalPacketsThreadPool.purge();
  321. _generalThreadPool.purge();
  322. _aiThreadPool.purge();
  323. }
  324. /**
  325. *
  326. */
  327. public String getPacketStats()
  328. {
  329. final StringBuilder sb = new StringBuilder(1000);
  330. ThreadFactory tf = _generalPacketsThreadPool.getThreadFactory();
  331. if (tf instanceof PriorityThreadFactory)
  332. {
  333. PriorityThreadFactory ptf = (PriorityThreadFactory) tf;
  334. int count = ptf.getGroup().activeCount();
  335. Thread[] threads = new Thread[count + 2];
  336. ptf.getGroup().enumerate(threads);
  337. StringUtil.append(sb, "General Packet Thread Pool:\r\n" + "Tasks in the queue: ", String.valueOf(_generalPacketsThreadPool.getQueue().size()), "\r\n"
  338. + "Showing threads stack trace:\r\n" + "There should be ", String.valueOf(count), " Threads\r\n");
  339. for (Thread t : threads)
  340. {
  341. if (t == null)
  342. continue;
  343. StringUtil.append(sb, t.getName(), "\r\n");
  344. for (StackTraceElement ste : t.getStackTrace())
  345. {
  346. StringUtil.append(sb, ste.toString(), "\r\n");
  347. }
  348. }
  349. }
  350. sb.append("Packet Tp stack traces printed.\r\n");
  351. return sb.toString();
  352. }
  353. public String getIOPacketStats()
  354. {
  355. final StringBuilder sb = new StringBuilder(1000);
  356. ThreadFactory tf = _ioPacketsThreadPool.getThreadFactory();
  357. if (tf instanceof PriorityThreadFactory)
  358. {
  359. PriorityThreadFactory ptf = (PriorityThreadFactory) tf;
  360. int count = ptf.getGroup().activeCount();
  361. Thread[] threads = new Thread[count + 2];
  362. ptf.getGroup().enumerate(threads);
  363. StringUtil.append(sb, "I/O Packet Thread Pool:\r\n" + "Tasks in the queue: ", String.valueOf(_ioPacketsThreadPool.getQueue().size()), "\r\n"
  364. + "Showing threads stack trace:\r\n" + "There should be ", String.valueOf(count), " Threads\r\n");
  365. for (Thread t : threads)
  366. {
  367. if (t == null)
  368. continue;
  369. StringUtil.append(sb, t.getName(), "\r\n");
  370. for (StackTraceElement ste : t.getStackTrace())
  371. {
  372. StringUtil.append(sb, ste.toString(), "\r\n");
  373. }
  374. }
  375. }
  376. sb.append("Packet Tp stack traces printed.\r\n");
  377. return sb.toString();
  378. }
  379. public String getGeneralStats()
  380. {
  381. final StringBuilder sb = new StringBuilder(1000);
  382. ThreadFactory tf = _generalThreadPool.getThreadFactory();
  383. if (tf instanceof PriorityThreadFactory)
  384. {
  385. PriorityThreadFactory ptf = (PriorityThreadFactory) tf;
  386. int count = ptf.getGroup().activeCount();
  387. Thread[] threads = new Thread[count + 2];
  388. ptf.getGroup().enumerate(threads);
  389. StringUtil.append(sb, "General Thread Pool:\r\n" + "Tasks in the queue: ", String.valueOf(_generalThreadPool.getQueue().size()), "\r\n"
  390. + "Showing threads stack trace:\r\n" + "There should be ", String.valueOf(count), " Threads\r\n");
  391. for (Thread t : threads)
  392. {
  393. if (t == null)
  394. continue;
  395. StringUtil.append(sb, t.getName(), "\r\n");
  396. for (StackTraceElement ste : t.getStackTrace())
  397. {
  398. StringUtil.append(sb, ste.toString(), "\r\n");
  399. }
  400. }
  401. }
  402. sb.append("Packet Tp stack traces printed.\r\n");
  403. return sb.toString();
  404. }
  405. @SuppressWarnings("synthetic-access")
  406. private static class SingletonHolder
  407. {
  408. protected static final ThreadPoolManager _instance = new ThreadPoolManager();
  409. }
  410. }