/QingTingFanBianYi/src/com/alibaba/fastjson/parser/JSONReaderScanner.java

https://gitlab.com/qt-prometheus/qt-prometheus · Java · 255 lines · 237 code · 18 blank · 0 comment · 36 complexity · 5d9b167429b96d381405e8d870c626a1 MD5 · raw file

  1. package com.alibaba.fastjson.parser;
  2. import com.alibaba.fastjson.JSON;
  3. import com.alibaba.fastjson.JSONException;
  4. import com.alibaba.fastjson.util.Base64;
  5. import com.alibaba.fastjson.util.IOUtils;
  6. import java.io.CharArrayReader;
  7. import java.io.IOException;
  8. import java.io.Reader;
  9. import java.io.StringReader;
  10. import java.lang.ref.SoftReference;
  11. public final class JSONReaderScanner extends JSONLexerBase
  12. {
  13. public static final int BUF_INIT_LEN = 8192;
  14. private static final ThreadLocal<SoftReference<char[]>> BUF_REF_LOCAL = new ThreadLocal();
  15. private char[] buf;
  16. private int bufLength;
  17. private Reader reader;
  18. public JSONReaderScanner(Reader paramReader)
  19. {
  20. this(paramReader, JSON.DEFAULT_PARSER_FEATURE);
  21. }
  22. public JSONReaderScanner(Reader paramReader, int paramInt)
  23. {
  24. this.reader = paramReader;
  25. this.features = paramInt;
  26. SoftReference localSoftReference = (SoftReference)BUF_REF_LOCAL.get();
  27. if (localSoftReference != null)
  28. {
  29. this.buf = ((char[])localSoftReference.get());
  30. BUF_REF_LOCAL.set(null);
  31. }
  32. if (this.buf == null)
  33. this.buf = new char[8192];
  34. try
  35. {
  36. this.bufLength = paramReader.read(this.buf);
  37. this.bp = -1;
  38. next();
  39. if (this.ch == 65279)
  40. next();
  41. return;
  42. }
  43. catch (IOException paramReader)
  44. {
  45. }
  46. throw new JSONException(paramReader.getMessage(), paramReader);
  47. }
  48. public JSONReaderScanner(String paramString)
  49. {
  50. this(paramString, JSON.DEFAULT_PARSER_FEATURE);
  51. }
  52. public JSONReaderScanner(String paramString, int paramInt)
  53. {
  54. this(new StringReader(paramString), paramInt);
  55. }
  56. public JSONReaderScanner(char[] paramArrayOfChar, int paramInt)
  57. {
  58. this(paramArrayOfChar, paramInt, JSON.DEFAULT_PARSER_FEATURE);
  59. }
  60. public JSONReaderScanner(char[] paramArrayOfChar, int paramInt1, int paramInt2)
  61. {
  62. this(new CharArrayReader(paramArrayOfChar, 0, paramInt1), paramInt2);
  63. }
  64. public final String addSymbol(int paramInt1, int paramInt2, int paramInt3, SymbolTable paramSymbolTable)
  65. {
  66. return paramSymbolTable.addSymbol(this.buf, paramInt1, paramInt2, paramInt3);
  67. }
  68. protected final void arrayCopy(int paramInt1, char[] paramArrayOfChar, int paramInt2, int paramInt3)
  69. {
  70. System.arraycopy(this.buf, paramInt1, paramArrayOfChar, paramInt2, paramInt3);
  71. }
  72. public byte[] bytesValue()
  73. {
  74. return Base64.decodeFast(this.buf, this.np + 1, this.sp);
  75. }
  76. public final boolean charArrayCompare(char[] paramArrayOfChar)
  77. {
  78. int i = 0;
  79. while (i < paramArrayOfChar.length)
  80. {
  81. if (charAt(this.bp + i) != paramArrayOfChar[i])
  82. return false;
  83. i += 1;
  84. }
  85. return true;
  86. }
  87. public final char charAt(int paramInt)
  88. {
  89. char c = '\032';
  90. int i = paramInt;
  91. if (paramInt >= this.bufLength)
  92. {
  93. if (this.bufLength == -1)
  94. if (paramInt < this.sp)
  95. c = this.buf[paramInt];
  96. do
  97. {
  98. return c;
  99. i = this.bufLength - this.bp;
  100. if (i > 0)
  101. System.arraycopy(this.buf, this.bp, this.buf, 0, i);
  102. try
  103. {
  104. this.bufLength = this.reader.read(this.buf, i, this.buf.length - i);
  105. if (this.bufLength == 0)
  106. throw new JSONException("illegal stat, textLength is zero");
  107. }
  108. catch (IOException localIOException)
  109. {
  110. throw new JSONException(localIOException.getMessage(), localIOException);
  111. }
  112. }
  113. while (this.bufLength == -1);
  114. this.bufLength += i;
  115. i = paramInt - this.bp;
  116. this.np -= this.bp;
  117. this.bp = 0;
  118. }
  119. return this.buf[i];
  120. }
  121. public void close()
  122. {
  123. super.close();
  124. BUF_REF_LOCAL.set(new SoftReference(this.buf));
  125. this.buf = null;
  126. IOUtils.close(this.reader);
  127. }
  128. protected final void copyTo(int paramInt1, int paramInt2, char[] paramArrayOfChar)
  129. {
  130. System.arraycopy(this.buf, paramInt1, paramArrayOfChar, 0, paramInt2);
  131. }
  132. public final int indexOf(char paramChar, int paramInt)
  133. {
  134. paramInt -= this.bp;
  135. while (true)
  136. {
  137. if (paramChar == charAt(this.bp + paramInt))
  138. return this.bp + paramInt;
  139. if (paramChar == '\032')
  140. return -1;
  141. paramInt += 1;
  142. }
  143. }
  144. public boolean isEOF()
  145. {
  146. return (this.bufLength == -1) || (this.bp == this.buf.length) || ((this.ch == '\032') && (this.bp + 1 == this.buf.length));
  147. }
  148. public final char next()
  149. {
  150. int j = this.bp + 1;
  151. this.bp = j;
  152. int i = j;
  153. if (j >= this.bufLength)
  154. {
  155. if (this.bufLength == -1)
  156. return '\032';
  157. if (this.sp > 0)
  158. {
  159. j = this.bufLength - this.sp;
  160. i = j;
  161. if (this.ch == '"')
  162. i = j - 1;
  163. System.arraycopy(this.buf, i, this.buf, 0, this.sp);
  164. }
  165. this.np = -1;
  166. i = this.sp;
  167. this.bp = i;
  168. try
  169. {
  170. j = this.bp;
  171. int k = this.buf.length;
  172. this.bufLength = this.reader.read(this.buf, this.bp, k - j);
  173. if (this.bufLength == 0)
  174. throw new JSONException("illegal stat, textLength is zero");
  175. }
  176. catch (IOException localIOException)
  177. {
  178. throw new JSONException(localIOException.getMessage(), localIOException);
  179. }
  180. if (this.bufLength == -1)
  181. {
  182. this.ch = '\032';
  183. return '\032';
  184. }
  185. this.bufLength += this.bp;
  186. }
  187. char c = this.buf[i];
  188. this.ch = c;
  189. return c;
  190. }
  191. public final String numberString()
  192. {
  193. int j = this.np;
  194. int i = j;
  195. if (j == -1)
  196. i = 0;
  197. int m = charAt(this.sp + i - 1);
  198. int k = this.sp;
  199. if ((m != 76) && (m != 83) && (m != 66) && (m != 70))
  200. {
  201. j = k;
  202. if (m != 68);
  203. }
  204. else
  205. {
  206. j = k - 1;
  207. }
  208. return new String(this.buf, i, j);
  209. }
  210. public final String stringVal()
  211. {
  212. if (!this.hasSpecial)
  213. {
  214. int i = this.np + 1;
  215. if (i < 0)
  216. throw new IllegalStateException();
  217. if (i > this.buf.length - this.sp)
  218. throw new IllegalStateException();
  219. return new String(this.buf, i, this.sp);
  220. }
  221. return new String(this.sbuf, 0, this.sp);
  222. }
  223. public final String subString(int paramInt1, int paramInt2)
  224. {
  225. if (paramInt2 < 0)
  226. throw new StringIndexOutOfBoundsException(paramInt2);
  227. return new String(this.buf, paramInt1, paramInt2);
  228. }
  229. }
  230. /* Location: C:\Users\User\dex2jar-2.0\dex\qting\classes-dex2jar.jar
  231. * Qualified Name: com.alibaba.fastjson.parser.JSONReaderScanner
  232. * JD-Core Version: 0.6.2
  233. */