ThreadPoolManager.java 17 KB

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