2
0

StringUtil.java 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /*
  2. * Copyright (C) 2004-2015 L2J Server
  3. *
  4. * This file is part of L2J Server.
  5. *
  6. * L2J Server is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * L2J Server is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.l2jserver.util;
  20. import com.l2jserver.Config;
  21. /**
  22. * String utilities optimized for the best performance.<br>
  23. * <h1>How to Use It</h1> <h2>concat() or append()</h2> If concatenating strings<br>
  24. * in single call, use StringUtil.concat(), otherwise use StringUtil.append()<br>
  25. * and its variants.<br>
  26. * <br>
  27. * <h2>Minimum Calls</h2><br>
  28. * Bad:
  29. *
  30. * <pre>
  31. * final StringBuilder sbString = new StringBuilder();
  32. * StringUtil.append(sbString, &quot;text 1&quot;, String.valueOf(npcId));
  33. * StringUtil.append(&quot;text 2&quot;);
  34. * </pre>
  35. *
  36. * Good:
  37. *
  38. * <pre>
  39. * final StringBuilder sbString = new StringBuilder();
  40. * StringUtil.append(sbString, &quot;text 1&quot;, String.valueOf(npcId), &quot;text 2&quot;);
  41. * </pre>
  42. *
  43. * Why?<br/>
  44. * Because the less calls you do, the less memory re-allocations have to be done<br>
  45. * so the whole text fits into the memory and less array copy tasks has to be<br>
  46. * performed. So if using less calls, less memory is used and string concatenation is faster.<br>
  47. * <br>
  48. * <h2>Size Hints for Loops</h2><br>
  49. * Bad:
  50. *
  51. * <pre>
  52. * final StringBuilder sbString = new StringBuilder();
  53. * StringUtil.append(sbString, &quot;header start&quot;, someText, &quot;header end&quot;);
  54. * for (int i = 0; i &lt; 50; i++)
  55. * {
  56. * StringUtil.append(sbString, &quot;text 1&quot;, stringArray[i], &quot;text 2&quot;);
  57. * }
  58. * </pre>
  59. *
  60. * Good:
  61. *
  62. * <pre>
  63. * final StringBuilder sbString = StringUtil.startAppend(1300, &quot;header start&quot;, someText, &quot;header end&quot;);
  64. * for (int i = 0; i &lt; 50; i++)
  65. * {
  66. * StringUtil.append(sbString, &quot;text 1&quot;, stringArray[i], &quot;text 2&quot;);
  67. * }
  68. * </pre>
  69. *
  70. * Why?<br/>
  71. * When using StringUtil.append(), memory is only allocated to fit in the strings in method argument. So on each loop new memory for the string has to be allocated and old string has to be copied to the new string. With size hint, even if the size hint is above the needed memory, memory is saved
  72. * because new memory has not to be allocated on each cycle. Also it is much faster if no string copy tasks has to be performed. So if concatenating strings in a loop, count approximately the size and set it as the hint for the string builder size. It's better to make the size hint little bit larger
  73. * rather than smaller.<br/>
  74. * In case there is no text appended before the cycle, just use <code>new
  75. * StringBuilder(1300)</code>.<br>
  76. * <br>
  77. * <h2>Concatenation and Constants</h2><br>
  78. * Bad:
  79. *
  80. * <pre>
  81. * StringUtil.concat(&quot;text 1 &quot;, &quot;text 2&quot;, String.valueOf(npcId));
  82. * </pre>
  83. *
  84. * Good:
  85. *
  86. * <pre>
  87. * StringUtil.concat(&quot;text 1 &quot; + &quot;text 2&quot;, String.valueOf(npcId));
  88. * </pre>
  89. *
  90. * or
  91. *
  92. * <pre>
  93. * StringUtil.concat(&quot;text 1 text 2&quot;, String.valueOf(npcId));
  94. * </pre>
  95. *
  96. * Why?<br/>
  97. * It saves some cycles when determining size of memory that needs to be allocated because less strings are passed to concat() method. But do not use + for concatenation of non-constant strings, that degrades performance and makes extra memory allocations needed.<br>
  98. * <h2>Concatenation and Constant Variables</h2> Bad:
  99. *
  100. * <pre>
  101. * String glue = &quot;some glue&quot;;
  102. * StringUtil.concat(&quot;text 1&quot;, glue, &quot;text 2&quot;, glue, String.valueOf(npcId));
  103. * </pre>
  104. *
  105. * Good:
  106. *
  107. * <pre>
  108. * final String glue = &quot;some glue&quot;;
  109. * StringUtil.concat(&quot;text 1&quot; + glue + &quot;text2&quot; + glue, String.valueOf(npcId));
  110. * </pre>
  111. *
  112. * Why? Because when using <code>final</code> keyword, the <code>glue</code> is marked as constant string and compiler treats it as a constant string so it is able to create string "text1some gluetext2some glue" during the compilation. But this only works in case the value is known at compilation
  113. * time, so this cannot be used for cases like <code>final String objectIdString =
  114. * String.valueOf(getObjectId)</code>.<br>
  115. * <br>
  116. * <h2>StringBuilder Reuse</h2><br>
  117. * Bad:
  118. *
  119. * <pre>
  120. * final StringBuilder sbString1 = new StringBuilder();
  121. * StringUtil.append(sbString1, &quot;text 1&quot;, String.valueOf(npcId), &quot;text 2&quot;);
  122. * ... // output of sbString1, it is no more needed
  123. * final StringBuilder sbString2 = new StringBuilder();
  124. * StringUtil.append(sbString2, &quot;text 3&quot;, String.valueOf(npcId), &quot;text 4&quot;);
  125. * </pre>
  126. *
  127. * Good:
  128. *
  129. * <pre>
  130. * final StringBuilder sbString = new StringBuilder();
  131. * StringUtil.append(sbString, &quot;text 1&quot;, String.valueOf(npcId), &quot;text 2&quot;);
  132. * ... // output of sbString, it is no more needed
  133. * sbString.setLength(0);
  134. * StringUtil.append(sbString, &quot;text 3&quot;, String.valueOf(npcId), &quot;text 4&quot;);
  135. * </pre>
  136. *
  137. * Why?</br> In first case, new memory has to be allocated for the second string. In second case already allocated memory is reused, but only in case the new string is not longer than the previously allocated string. Anyway, the second way is better because the string either fits in the memory and
  138. * some memory is saved, or it does not fit in the memory, and in that case it works as in the first case. <h2>Primitives to Strings</h2> To convert primitives to string, use String.valueOf().<br>
  139. * <br>
  140. * <h2>How much faster is it?</h2><br>
  141. * Here are some results of my tests. Count is number of strings concatenated. Don't take the numbers as 100% true as the numbers are affected by other programs running on my computer at the same time. Anyway, from the results it is obvious that using StringBuilder with predefined size is the
  142. * fastest (and also most memory efficient) solution. It is about 5 times faster when concatenating 7 strings, compared to TextBuilder. Also, with more strings concatenated, the difference between StringBuilder and TextBuilder gets larger. In code, there are many cases, where there are concatenated
  143. * 50+ strings so the time saving is even greater.<br>
  144. *
  145. * <pre>
  146. * Count: 2
  147. * TextBuilder: 1893
  148. * TextBuilder with size: 1703
  149. * String: 1033
  150. * StringBuilder: 993
  151. * StringBuilder with size: 1024
  152. * Count: 3
  153. * TextBuilder: 1973
  154. * TextBuilder with size: 1872
  155. * String: 2583
  156. * StringBuilder: 1633
  157. * StringBuilder with size: 1156
  158. * Count: 4
  159. * TextBuilder: 2188
  160. * TextBuilder with size: 2229
  161. * String: 4207
  162. * StringBuilder: 1816
  163. * StringBuilder with size: 1444
  164. * Count: 5
  165. * TextBuilder: 9185
  166. * TextBuilder with size: 9464
  167. * String: 6937
  168. * StringBuilder: 2745
  169. * StringBuilder with size: 1882
  170. * Count: 6
  171. * TextBuilder: 9785
  172. * TextBuilder with size: 10082
  173. * String: 9471
  174. * StringBuilder: 2889
  175. * StringBuilder with size: 1857
  176. * Count: 7
  177. * TextBuilder: 10169
  178. * TextBuilder with size: 10528
  179. * String: 12746
  180. * StringBuilder: 3081
  181. * StringBuilder with size: 2139
  182. * </pre>
  183. * @author fordfrog
  184. */
  185. public final class StringUtil
  186. {
  187. private StringUtil()
  188. {
  189. }
  190. /**
  191. * Concatenates strings.
  192. * @param strings strings to be concatenated
  193. * @return concatenated string
  194. */
  195. public static String concat(final String... strings)
  196. {
  197. final StringBuilder sbString = new StringBuilder();
  198. for (final String string : strings)
  199. {
  200. sbString.append(string);
  201. }
  202. return sbString.toString();
  203. }
  204. /**
  205. * Creates new string builder with size initializated to <code>sizeHint</code>, unless total length of strings is greater than <code>sizeHint</code>.
  206. * @param sizeHint hint for string builder size allocation
  207. * @param strings strings to be appended
  208. * @return created string builder
  209. */
  210. public static StringBuilder startAppend(final int sizeHint, final String... strings)
  211. {
  212. final int length = getLength(strings);
  213. final StringBuilder sbString = new StringBuilder(sizeHint > length ? sizeHint : length);
  214. for (final String string : strings)
  215. {
  216. sbString.append(string);
  217. }
  218. return sbString;
  219. }
  220. /**
  221. * Appends strings to existing string builder.
  222. * @param sbString string builder
  223. * @param strings strings to be appended
  224. */
  225. public static void append(final StringBuilder sbString, final String... strings)
  226. {
  227. sbString.ensureCapacity(sbString.length() + getLength(strings));
  228. for (final String string : strings)
  229. {
  230. sbString.append(string);
  231. }
  232. }
  233. public static int getLength(final Iterable<String> strings)
  234. {
  235. int length = 0;
  236. for (final String string : strings)
  237. {
  238. length += (string == null) ? 4 : string.length();
  239. }
  240. return length;
  241. }
  242. /**
  243. * Counts total length of all the strings.
  244. * @param strings array of strings
  245. * @return total length of all the strings
  246. */
  247. public static int getLength(final String[] strings)
  248. {
  249. int length = 0;
  250. for (final String string : strings)
  251. {
  252. length += (string == null) ? 4 : string.length();
  253. }
  254. return length;
  255. }
  256. public static String getTraceString(StackTraceElement[] trace)
  257. {
  258. final StringBuilder sbString = new StringBuilder();
  259. for (final StackTraceElement element : trace)
  260. {
  261. sbString.append(element.toString()).append(Config.EOL);
  262. }
  263. return sbString.toString();
  264. }
  265. }