/QingTingFanBianYi/src/com/alibaba/fastjson/JSONReader.java

https://gitlab.com/qt-prometheus/qt-prometheus · Java · 313 lines · 283 code · 26 blank · 4 comment · 46 complexity · 201d34ff5a8ddfb0d440d741d1f3d3f8 MD5 · raw file

  1. package com.alibaba.fastjson;
  2. import com.alibaba.fastjson.parser.DefaultJSONParser;
  3. import com.alibaba.fastjson.parser.Feature;
  4. import com.alibaba.fastjson.parser.JSONLexer;
  5. import com.alibaba.fastjson.parser.JSONReaderScanner;
  6. import com.alibaba.fastjson.util.IOUtils;
  7. import com.alibaba.fastjson.util.TypeUtils;
  8. import java.io.Closeable;
  9. import java.io.Reader;
  10. import java.lang.reflect.Type;
  11. import java.util.Map;
  12. public class JSONReader
  13. implements Closeable
  14. {
  15. private JSONStreamContext context;
  16. private final DefaultJSONParser parser;
  17. public JSONReader(DefaultJSONParser paramDefaultJSONParser)
  18. {
  19. this.parser = paramDefaultJSONParser;
  20. }
  21. public JSONReader(JSONLexer paramJSONLexer)
  22. {
  23. this(new DefaultJSONParser(paramJSONLexer));
  24. }
  25. public JSONReader(Reader paramReader)
  26. {
  27. this(new JSONReaderScanner(paramReader));
  28. }
  29. private void endStructure()
  30. {
  31. this.context = this.context.getParent();
  32. if (this.context == null);
  33. while (true)
  34. {
  35. return;
  36. int j = this.context.getState();
  37. int i = -1;
  38. switch (j)
  39. {
  40. default:
  41. case 1002:
  42. case 1004:
  43. case 1001:
  44. case 1003:
  45. }
  46. while (i != -1)
  47. {
  48. this.context.setState(i);
  49. return;
  50. i = 1003;
  51. continue;
  52. i = 1005;
  53. continue;
  54. i = 1002;
  55. }
  56. }
  57. }
  58. private void readAfter()
  59. {
  60. int j = this.context.getState();
  61. int i = -1;
  62. switch (j)
  63. {
  64. default:
  65. throw new JSONException("illegal state : " + j);
  66. case 1001:
  67. i = 1002;
  68. case 1005:
  69. case 1002:
  70. case 1003:
  71. case 1004:
  72. }
  73. while (true)
  74. {
  75. if (i != -1)
  76. this.context.setState(i);
  77. return;
  78. i = 1003;
  79. continue;
  80. i = 1002;
  81. continue;
  82. i = 1005;
  83. }
  84. }
  85. private void readBefore()
  86. {
  87. int i = this.context.getState();
  88. switch (i)
  89. {
  90. default:
  91. throw new JSONException("illegal state : " + i);
  92. case 1002:
  93. this.parser.accept(17);
  94. case 1001:
  95. case 1004:
  96. return;
  97. case 1003:
  98. this.parser.accept(16, 18);
  99. return;
  100. case 1005:
  101. }
  102. this.parser.accept(16);
  103. }
  104. private void startStructure()
  105. {
  106. switch (this.context.getState())
  107. {
  108. default:
  109. throw new JSONException("illegal state : " + this.context.getState());
  110. case 1002:
  111. this.parser.accept(17);
  112. case 1001:
  113. case 1004:
  114. return;
  115. case 1003:
  116. case 1005:
  117. }
  118. this.parser.accept(16);
  119. }
  120. public void close()
  121. {
  122. IOUtils.close(this.parser);
  123. }
  124. public void config(Feature paramFeature, boolean paramBoolean)
  125. {
  126. this.parser.config(paramFeature, paramBoolean);
  127. }
  128. public void endArray()
  129. {
  130. this.parser.accept(15);
  131. endStructure();
  132. }
  133. public void endObject()
  134. {
  135. this.parser.accept(13);
  136. endStructure();
  137. }
  138. public boolean hasNext()
  139. {
  140. if (this.context == null)
  141. throw new JSONException("context is null");
  142. int i = this.parser.getLexer().token();
  143. int j = this.context.getState();
  144. switch (j)
  145. {
  146. case 1002:
  147. default:
  148. throw new JSONException("illegal state : " + j);
  149. case 1004:
  150. case 1005:
  151. if (i == 15)
  152. break;
  153. case 1001:
  154. case 1003:
  155. }
  156. do
  157. {
  158. return true;
  159. return false;
  160. }
  161. while (i != 13);
  162. return false;
  163. }
  164. public Integer readInteger()
  165. {
  166. Object localObject;
  167. if (this.context == null)
  168. localObject = this.parser.parse();
  169. while (true)
  170. {
  171. return TypeUtils.castToInt(localObject);
  172. readBefore();
  173. localObject = this.parser.parse();
  174. readAfter();
  175. }
  176. }
  177. public Long readLong()
  178. {
  179. Object localObject;
  180. if (this.context == null)
  181. localObject = this.parser.parse();
  182. while (true)
  183. {
  184. return TypeUtils.castToLong(localObject);
  185. readBefore();
  186. localObject = this.parser.parse();
  187. readAfter();
  188. }
  189. }
  190. public Object readObject()
  191. {
  192. if (this.context == null)
  193. return this.parser.parse();
  194. readBefore();
  195. switch (this.context.getState())
  196. {
  197. case 1002:
  198. default:
  199. case 1001:
  200. case 1003:
  201. }
  202. for (Object localObject = this.parser.parse(); ; localObject = this.parser.parseKey())
  203. {
  204. readAfter();
  205. return localObject;
  206. }
  207. }
  208. public <T> T readObject(TypeReference<T> paramTypeReference)
  209. {
  210. return readObject(paramTypeReference.getType());
  211. }
  212. public <T> T readObject(Class<T> paramClass)
  213. {
  214. if (this.context == null)
  215. return this.parser.parseObject(paramClass);
  216. readBefore();
  217. paramClass = this.parser.parseObject(paramClass);
  218. readAfter();
  219. return paramClass;
  220. }
  221. public <T> T readObject(Type paramType)
  222. {
  223. if (this.context == null)
  224. return this.parser.parseObject(paramType);
  225. readBefore();
  226. paramType = this.parser.parseObject(paramType);
  227. readAfter();
  228. return paramType;
  229. }
  230. public Object readObject(Map paramMap)
  231. {
  232. if (this.context == null)
  233. return this.parser.parseObject(paramMap);
  234. readBefore();
  235. paramMap = this.parser.parseObject(paramMap);
  236. readAfter();
  237. return paramMap;
  238. }
  239. public void readObject(Object paramObject)
  240. {
  241. if (this.context == null)
  242. {
  243. this.parser.parseObject(paramObject);
  244. return;
  245. }
  246. readBefore();
  247. this.parser.parseObject(paramObject);
  248. readAfter();
  249. }
  250. public String readString()
  251. {
  252. Object localObject;
  253. if (this.context == null)
  254. localObject = this.parser.parse();
  255. while (true)
  256. {
  257. return TypeUtils.castToString(localObject);
  258. readBefore();
  259. localObject = this.parser.parse();
  260. readAfter();
  261. }
  262. }
  263. public void startArray()
  264. {
  265. if (this.context == null);
  266. for (this.context = new JSONStreamContext(null, 1004); ; this.context = new JSONStreamContext(this.context, 1004))
  267. {
  268. this.parser.accept(14);
  269. return;
  270. startStructure();
  271. }
  272. }
  273. public void startObject()
  274. {
  275. if (this.context == null);
  276. for (this.context = new JSONStreamContext(null, 1001); ; this.context = new JSONStreamContext(this.context, 1001))
  277. {
  278. this.parser.accept(12, 18);
  279. return;
  280. startStructure();
  281. }
  282. }
  283. }
  284. /* Location: C:\Users\User\dex2jar-2.0\dex\qting\classes-dex2jar.jar
  285. * Qualified Name: com.alibaba.fastjson.JSONReader
  286. * JD-Core Version: 0.6.2
  287. */