/QingTingFanBianYi/src/com/alibaba/fastjson/util/IOUtils.java

https://gitlab.com/qt-prometheus/qt-prometheus · Java · 200 lines · 185 code · 11 blank · 4 comment · 28 complexity · 116abdae1bdd42ecce6ba923c7238466 MD5 · raw file

  1. package com.alibaba.fastjson.util;
  2. import com.alibaba.fastjson.JSONException;
  3. import java.io.Closeable;
  4. import java.nio.ByteBuffer;
  5. import java.nio.CharBuffer;
  6. import java.nio.charset.CharacterCodingException;
  7. import java.nio.charset.CharsetDecoder;
  8. import java.nio.charset.CoderResult;
  9. public class IOUtils
  10. {
  11. static final char[] DigitOnes = { 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57 };
  12. static final char[] DigitTens;
  13. static final char[] digits = { 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 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 };
  14. static final int[] sizeTable = { 9, 99, 999, 9999, 99999, 999999, 9999999, 99999999, 999999999, 2147483647 };
  15. static
  16. {
  17. DigitTens = new char[] { 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57 };
  18. }
  19. public static void close(Closeable paramCloseable)
  20. {
  21. if (paramCloseable != null);
  22. try
  23. {
  24. paramCloseable.close();
  25. return;
  26. }
  27. catch (Exception paramCloseable)
  28. {
  29. }
  30. }
  31. public static void decode(CharsetDecoder paramCharsetDecoder, ByteBuffer paramByteBuffer, CharBuffer paramCharBuffer)
  32. {
  33. try
  34. {
  35. paramByteBuffer = paramCharsetDecoder.decode(paramByteBuffer, paramCharBuffer, true);
  36. if (!paramByteBuffer.isUnderflow())
  37. paramByteBuffer.throwException();
  38. paramCharsetDecoder = paramCharsetDecoder.flush(paramCharBuffer);
  39. if (!paramCharsetDecoder.isUnderflow())
  40. paramCharsetDecoder.throwException();
  41. return;
  42. }
  43. catch (CharacterCodingException paramCharsetDecoder)
  44. {
  45. }
  46. throw new JSONException(paramCharsetDecoder.getMessage(), paramCharsetDecoder);
  47. }
  48. public static void getChars(byte paramByte, int paramInt, char[] paramArrayOfChar)
  49. {
  50. byte b = paramByte;
  51. int j = paramInt;
  52. int i = 0;
  53. paramInt = j;
  54. paramByte = b;
  55. if (b < 0)
  56. {
  57. i = 45;
  58. paramByte = -b;
  59. paramInt = j;
  60. }
  61. do
  62. {
  63. b = 52429 * paramByte >>> 19;
  64. j = paramInt - 1;
  65. paramArrayOfChar[j] = digits[(paramByte - ((b << 3) + (b << 1)))];
  66. paramInt = j;
  67. paramByte = b;
  68. }
  69. while (b != 0);
  70. if (i != 0)
  71. paramArrayOfChar[(j - 1)] = i;
  72. }
  73. public static void getChars(int paramInt1, int paramInt2, char[] paramArrayOfChar)
  74. {
  75. int k = paramInt2;
  76. int i = 0;
  77. int j = k;
  78. paramInt2 = paramInt1;
  79. if (paramInt1 < 0)
  80. {
  81. i = 45;
  82. paramInt2 = -paramInt1;
  83. j = k;
  84. }
  85. while (true)
  86. {
  87. paramInt1 = j;
  88. k = paramInt2;
  89. if (paramInt2 < 65536)
  90. break;
  91. paramInt1 = paramInt2 / 100;
  92. k = paramInt2 - ((paramInt1 << 6) + (paramInt1 << 5) + (paramInt1 << 2));
  93. paramInt2 = paramInt1;
  94. paramInt1 = j - 1;
  95. paramArrayOfChar[paramInt1] = DigitOnes[k];
  96. j = paramInt1 - 1;
  97. paramArrayOfChar[j] = DigitTens[k];
  98. }
  99. do
  100. {
  101. paramInt2 = 52429 * k >>> 19;
  102. j = paramInt1 - 1;
  103. paramArrayOfChar[j] = digits[(k - ((paramInt2 << 3) + (paramInt2 << 1)))];
  104. paramInt1 = j;
  105. k = paramInt2;
  106. }
  107. while (paramInt2 != 0);
  108. if (i != 0)
  109. paramArrayOfChar[(j - 1)] = i;
  110. }
  111. public static void getChars(long paramLong, int paramInt, char[] paramArrayOfChar)
  112. {
  113. int j = paramInt;
  114. int i = 0;
  115. paramInt = j;
  116. long l = paramLong;
  117. if (paramLong < 0L)
  118. {
  119. i = 45;
  120. l = -paramLong;
  121. paramInt = j;
  122. }
  123. while (l > 2147483647L)
  124. {
  125. paramLong = l / 100L;
  126. j = (int)(l - ((paramLong << 6) + (paramLong << 5) + (paramLong << 2)));
  127. l = paramLong;
  128. paramInt -= 1;
  129. paramArrayOfChar[paramInt] = DigitOnes[j];
  130. paramInt -= 1;
  131. paramArrayOfChar[paramInt] = DigitTens[j];
  132. }
  133. j = (int)l;
  134. int k;
  135. int m;
  136. while (true)
  137. {
  138. k = paramInt;
  139. m = j;
  140. if (j < 65536)
  141. break;
  142. k = j / 100;
  143. m = j - ((k << 6) + (k << 5) + (k << 2));
  144. j = k;
  145. paramInt -= 1;
  146. paramArrayOfChar[paramInt] = DigitOnes[m];
  147. paramInt -= 1;
  148. paramArrayOfChar[paramInt] = DigitTens[m];
  149. }
  150. do
  151. {
  152. paramInt = 52429 * m >>> 19;
  153. j = k - 1;
  154. paramArrayOfChar[j] = digits[(m - ((paramInt << 3) + (paramInt << 1)))];
  155. k = j;
  156. m = paramInt;
  157. }
  158. while (paramInt != 0);
  159. if (i != 0)
  160. paramArrayOfChar[(j - 1)] = i;
  161. }
  162. public static int stringSize(int paramInt)
  163. {
  164. int i = 0;
  165. while (true)
  166. {
  167. if (paramInt <= sizeTable[i])
  168. return i + 1;
  169. i += 1;
  170. }
  171. }
  172. public static int stringSize(long paramLong)
  173. {
  174. long l = 10L;
  175. int i = 1;
  176. while (i < 19)
  177. {
  178. if (paramLong < l)
  179. return i;
  180. l *= 10L;
  181. i += 1;
  182. }
  183. return 19;
  184. }
  185. }
  186. /* Location: C:\Users\User\dex2jar-2.0\dex\qting\classes-dex2jar.jar
  187. * Qualified Name: com.alibaba.fastjson.util.IOUtils
  188. * JD-Core Version: 0.6.2
  189. */