ThreadPoolManager.java 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  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 executeCommunityPacket(Runnable r)
  182. {
  183. _generalPacketsThreadPool.execute(r);
  184. }
  185. public void executeIOPacket(ReceivablePacket<L2GameClient> pkt)
  186. {
  187. _ioPacketsThreadPool.execute(pkt);
  188. }
  189. public void executeTask(Runnable r)
  190. {
  191. _generalThreadPool.execute(r);
  192. }
  193. public void executeAi(Runnable r)
  194. {
  195. _aiThreadPool.execute(r);
  196. }
  197. public String[] getStats()
  198. {
  199. return new String[] {
  200. "STP:",
  201. " + Effects:",
  202. " |- ActiveThreads: " + _effectsScheduledThreadPool.getActiveCount(),
  203. " |- getCorePoolSize: " + _effectsScheduledThreadPool.getCorePoolSize(),
  204. " |- PoolSize: " + _effectsScheduledThreadPool.getPoolSize(),
  205. " |- MaximumPoolSize: " + _effectsScheduledThreadPool.getMaximumPoolSize(),
  206. " |- CompletedTasks: " + _effectsScheduledThreadPool.getCompletedTaskCount(),
  207. " |- ScheduledTasks: " + (_effectsScheduledThreadPool.getTaskCount() - _effectsScheduledThreadPool.getCompletedTaskCount()),
  208. " | -------",
  209. " + General:",
  210. " |- ActiveThreads: " + _generalScheduledThreadPool.getActiveCount(),
  211. " |- getCorePoolSize: " + _generalScheduledThreadPool.getCorePoolSize(),
  212. " |- PoolSize: " + _generalScheduledThreadPool.getPoolSize(),
  213. " |- MaximumPoolSize: " + _generalScheduledThreadPool.getMaximumPoolSize(),
  214. " |- CompletedTasks: " + _generalScheduledThreadPool.getCompletedTaskCount(),
  215. " |- ScheduledTasks: " + (_generalScheduledThreadPool.getTaskCount() - _generalScheduledThreadPool.getCompletedTaskCount()),
  216. " | -------",
  217. " + AI:",
  218. " |- ActiveThreads: " + _aiScheduledThreadPool.getActiveCount(),
  219. " |- getCorePoolSize: " + _aiScheduledThreadPool.getCorePoolSize(),
  220. " |- PoolSize: " + _aiScheduledThreadPool.getPoolSize(),
  221. " |- MaximumPoolSize: " + _aiScheduledThreadPool.getMaximumPoolSize(),
  222. " |- CompletedTasks: " + _aiScheduledThreadPool.getCompletedTaskCount(),
  223. " |- ScheduledTasks: " + (_aiScheduledThreadPool.getTaskCount() - _aiScheduledThreadPool.getCompletedTaskCount()),
  224. "TP:",
  225. " + Packets:",
  226. " |- ActiveThreads: " + _generalPacketsThreadPool.getActiveCount(),
  227. " |- getCorePoolSize: " + _generalPacketsThreadPool.getCorePoolSize(),
  228. " |- MaximumPoolSize: " + _generalPacketsThreadPool.getMaximumPoolSize(),
  229. " |- LargestPoolSize: " + _generalPacketsThreadPool.getLargestPoolSize(),
  230. " |- PoolSize: " + _generalPacketsThreadPool.getPoolSize(),
  231. " |- CompletedTasks: " + _generalPacketsThreadPool.getCompletedTaskCount(),
  232. " |- QueuedTasks: " + _generalPacketsThreadPool.getQueue().size(),
  233. " | -------",
  234. " + I/O Packets:",
  235. " |- ActiveThreads: " + _ioPacketsThreadPool.getActiveCount(),
  236. " |- getCorePoolSize: " + _ioPacketsThreadPool.getCorePoolSize(),
  237. " |- MaximumPoolSize: " + _ioPacketsThreadPool.getMaximumPoolSize(),
  238. " |- LargestPoolSize: " + _ioPacketsThreadPool.getLargestPoolSize(),
  239. " |- PoolSize: " + _ioPacketsThreadPool.getPoolSize(),
  240. " |- CompletedTasks: " + _ioPacketsThreadPool.getCompletedTaskCount(),
  241. " |- QueuedTasks: " + _ioPacketsThreadPool.getQueue().size(),
  242. " | -------",
  243. " + General Tasks:",
  244. " |- ActiveThreads: " + _generalThreadPool.getActiveCount(),
  245. " |- getCorePoolSize: " + _generalThreadPool.getCorePoolSize(),
  246. " |- MaximumPoolSize: " + _generalThreadPool.getMaximumPoolSize(),
  247. " |- LargestPoolSize: " + _generalThreadPool.getLargestPoolSize(),
  248. " |- PoolSize: " + _generalThreadPool.getPoolSize(),
  249. " |- CompletedTasks: " + _generalThreadPool.getCompletedTaskCount(),
  250. " |- QueuedTasks: " + _generalThreadPool.getQueue().size(),
  251. " | -------",
  252. " + AI:",
  253. " |- Not Done"
  254. };
  255. }
  256. private class PriorityThreadFactory implements ThreadFactory
  257. {
  258. private int _prio;
  259. private String _name;
  260. private AtomicInteger _threadNumber = new AtomicInteger(1);
  261. private ThreadGroup _group;
  262. public PriorityThreadFactory(String name, int prio)
  263. {
  264. _prio = prio;
  265. _name = name;
  266. _group = new ThreadGroup(_name);
  267. }
  268. /* (non-Javadoc)
  269. * @see java.util.concurrent.ThreadFactory#newThread(java.lang.Runnable)
  270. */
  271. public Thread newThread(Runnable r)
  272. {
  273. Thread t = new Thread(_group, r);
  274. t.setName(_name + "-" + _threadNumber.getAndIncrement());
  275. t.setPriority(_prio);
  276. return t;
  277. }
  278. public ThreadGroup getGroup()
  279. {
  280. return _group;
  281. }
  282. }
  283. /**
  284. *
  285. */
  286. public void shutdown()
  287. {
  288. _shutdown = true;
  289. try
  290. {
  291. _effectsScheduledThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  292. _generalScheduledThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  293. _generalPacketsThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  294. _ioPacketsThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  295. _generalThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  296. _aiThreadPool.awaitTermination(1, TimeUnit.SECONDS);
  297. _effectsScheduledThreadPool.shutdown();
  298. _generalScheduledThreadPool.shutdown();
  299. _generalPacketsThreadPool.shutdown();
  300. _ioPacketsThreadPool.shutdown();
  301. _generalThreadPool.shutdown();
  302. _aiThreadPool.shutdown();
  303. _log.info("All ThreadPools are now stopped");
  304. }
  305. catch (InterruptedException e)
  306. {
  307. // TODO Auto-generated catch block
  308. e.printStackTrace();
  309. }
  310. }
  311. public boolean isShutdown()
  312. {
  313. return _shutdown;
  314. }
  315. /**
  316. *
  317. */
  318. public void purge()
  319. {
  320. _effectsScheduledThreadPool.purge();
  321. _generalScheduledThreadPool.purge();
  322. _aiScheduledThreadPool.purge();
  323. _ioPacketsThreadPool.purge();
  324. _generalPacketsThreadPool.purge();
  325. _generalThreadPool.purge();
  326. _aiThreadPool.purge();
  327. }
  328. /**
  329. *
  330. */
  331. public String getPacketStats()
  332. {
  333. final StringBuilder sb = new StringBuilder(1000);
  334. ThreadFactory tf = _generalPacketsThreadPool.getThreadFactory();
  335. if (tf instanceof PriorityThreadFactory)
  336. {
  337. PriorityThreadFactory ptf = (PriorityThreadFactory) tf;
  338. int count = ptf.getGroup().activeCount();
  339. Thread[] threads = new Thread[count + 2];
  340. ptf.getGroup().enumerate(threads);
  341. StringUtil.append(sb, "General Packet Thread Pool:\r\n" + "Tasks in the queue: ", String.valueOf(_generalPacketsThreadPool.getQueue().size()), "\r\n"
  342. + "Showing threads stack trace:\r\n" + "There should be ", String.valueOf(count), " Threads\r\n");
  343. for (Thread t : threads)
  344. {
  345. if (t == null)
  346. continue;
  347. StringUtil.append(sb, t.getName(), "\r\n");
  348. for (StackTraceElement ste : t.getStackTrace())
  349. {
  350. StringUtil.append(sb, ste.toString(), "\r\n");
  351. }
  352. }
  353. }
  354. sb.append("Packet Tp stack traces printed.\r\n");
  355. return sb.toString();
  356. }
  357. public String getIOPacketStats()
  358. {
  359. final StringBuilder sb = new StringBuilder(1000);
  360. ThreadFactory tf = _ioPacketsThreadPool.getThreadFactory();
  361. if (tf instanceof PriorityThreadFactory)
  362. {
  363. PriorityThreadFactory ptf = (PriorityThreadFactory) tf;
  364. int count = ptf.getGroup().activeCount();
  365. Thread[] threads = new Thread[count + 2];
  366. ptf.getGroup().enumerate(threads);
  367. StringUtil.append(sb, "I/O Packet Thread Pool:\r\n" + "Tasks in the queue: ", String.valueOf(_ioPacketsThreadPool.getQueue().size()), "\r\n"
  368. + "Showing threads stack trace:\r\n" + "There should be ", String.valueOf(count), " Threads\r\n");
  369. for (Thread t : threads)
  370. {
  371. if (t == null)
  372. continue;
  373. StringUtil.append(sb, t.getName(), "\r\n");
  374. for (StackTraceElement ste : t.getStackTrace())
  375. {
  376. StringUtil.append(sb, ste.toString(), "\r\n");
  377. }
  378. }
  379. }
  380. sb.append("Packet Tp stack traces printed.\r\n");
  381. return sb.toString();
  382. }
  383. public String getGeneralStats()
  384. {
  385. final StringBuilder sb = new StringBuilder(1000);
  386. ThreadFactory tf = _generalThreadPool.getThreadFactory();
  387. if (tf instanceof PriorityThreadFactory)
  388. {
  389. PriorityThreadFactory ptf = (PriorityThreadFactory) tf;
  390. int count = ptf.getGroup().activeCount();
  391. Thread[] threads = new Thread[count + 2];
  392. ptf.getGroup().enumerate(threads);
  393. StringUtil.append(sb, "General Thread Pool:\r\n" + "Tasks in the queue: ", String.valueOf(_generalThreadPool.getQueue().size()), "\r\n"
  394. + "Showing threads stack trace:\r\n" + "There should be ", String.valueOf(count), " Threads\r\n");
  395. for (Thread t : threads)
  396. {
  397. if (t == null)
  398. continue;
  399. StringUtil.append(sb, t.getName(), "\r\n");
  400. for (StackTraceElement ste : t.getStackTrace())
  401. {
  402. StringUtil.append(sb, ste.toString(), "\r\n");
  403. }
  404. }
  405. }
  406. sb.append("Packet Tp stack traces printed.\r\n");
  407. return sb.toString();
  408. }
  409. @SuppressWarnings("synthetic-access")
  410. private static class SingletonHolder
  411. {
  412. protected static final ThreadPoolManager _instance = new ThreadPoolManager();
  413. }
  414. }