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

https://gitlab.com/qt-prometheus/qt-prometheus · Java · 297 lines · 271 code · 22 blank · 4 comment · 67 complexity · 95884c4379ad3ab089f4dc73900ae726 MD5 · raw file

  1. package com.alibaba.fastjson.util;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. import java.lang.annotation.Annotation;
  4. import java.lang.reflect.Field;
  5. import java.lang.reflect.GenericDeclaration;
  6. import java.lang.reflect.InvocationTargetException;
  7. import java.lang.reflect.Method;
  8. import java.lang.reflect.ParameterizedType;
  9. import java.lang.reflect.Type;
  10. import java.lang.reflect.TypeVariable;
  11. public class FieldInfo
  12. implements Comparable<FieldInfo>
  13. {
  14. private final Class<?> declaringClass;
  15. private final Field field;
  16. private final Class<?> fieldClass;
  17. private final Type fieldType;
  18. private boolean getOnly = false;
  19. private final Method method;
  20. private final String name;
  21. public FieldInfo(String paramString, Class<?> paramClass1, Class<?> paramClass2, Type paramType, Field paramField)
  22. {
  23. this.name = paramString;
  24. this.declaringClass = paramClass1;
  25. this.fieldClass = paramClass2;
  26. this.fieldType = paramType;
  27. this.method = null;
  28. this.field = paramField;
  29. if (paramField != null)
  30. paramField.setAccessible(true);
  31. }
  32. public FieldInfo(String paramString, Method paramMethod, Field paramField)
  33. {
  34. this(paramString, paramMethod, paramField, null, null);
  35. }
  36. public FieldInfo(String paramString, Method paramMethod, Field paramField, Class<?> paramClass, Type paramType)
  37. {
  38. this.name = paramString;
  39. this.method = paramMethod;
  40. this.field = paramField;
  41. if (paramMethod != null)
  42. paramMethod.setAccessible(true);
  43. if (paramField != null)
  44. paramField.setAccessible(true);
  45. if (paramMethod != null)
  46. if (paramMethod.getParameterTypes().length == 1)
  47. {
  48. paramString = paramMethod.getParameterTypes()[0];
  49. paramField = paramMethod.getGenericParameterTypes()[0];
  50. this.declaringClass = paramMethod.getDeclaringClass();
  51. }
  52. while (true)
  53. {
  54. if ((paramClass == null) || (paramString != Object.class) || (!(paramField instanceof TypeVariable)))
  55. break label164;
  56. paramMethod = getInheritGenericType(paramClass, (TypeVariable)paramField);
  57. if (paramMethod == null)
  58. break label164;
  59. this.fieldClass = TypeUtils.getClass(paramMethod);
  60. this.fieldType = paramMethod;
  61. return;
  62. paramString = paramMethod.getReturnType();
  63. paramField = paramMethod.getGenericReturnType();
  64. this.getOnly = true;
  65. break;
  66. paramString = paramField.getType();
  67. paramMethod = paramField.getGenericType();
  68. this.declaringClass = paramField.getDeclaringClass();
  69. paramField = paramMethod;
  70. }
  71. label164: paramClass = getFieldType(paramClass, paramType, paramField);
  72. paramMethod = paramString;
  73. if (paramClass != paramField)
  74. {
  75. if (!(paramClass instanceof ParameterizedType))
  76. break label208;
  77. paramMethod = TypeUtils.getClass(paramClass);
  78. }
  79. while (true)
  80. {
  81. this.fieldType = paramClass;
  82. this.fieldClass = paramMethod;
  83. return;
  84. label208: paramMethod = paramString;
  85. if ((paramClass instanceof Class))
  86. paramMethod = TypeUtils.getClass(paramClass);
  87. }
  88. }
  89. public static Type getFieldType(Class<?> paramClass, Type paramType1, Type paramType2)
  90. {
  91. if ((paramClass == null) || (paramType1 == null))
  92. return paramType2;
  93. if (!(paramType1 instanceof ParameterizedType))
  94. return paramType2;
  95. ParameterizedType localParameterizedType1;
  96. Object localObject;
  97. int i;
  98. if ((paramType2 instanceof TypeVariable))
  99. {
  100. localParameterizedType1 = (ParameterizedType)paramType1;
  101. localObject = (TypeVariable)paramType2;
  102. i = 0;
  103. while (i < paramClass.getTypeParameters().length)
  104. {
  105. if (paramClass.getTypeParameters()[i].getName().equals(((TypeVariable)localObject).getName()))
  106. return localParameterizedType1.getActualTypeArguments()[i];
  107. i += 1;
  108. }
  109. }
  110. if ((paramType2 instanceof ParameterizedType))
  111. {
  112. localParameterizedType1 = (ParameterizedType)paramType2;
  113. localObject = localParameterizedType1.getActualTypeArguments();
  114. i = 0;
  115. int j = 0;
  116. while (j < localObject.length)
  117. {
  118. TypeVariable localTypeVariable = localObject[j];
  119. int m = i;
  120. if ((localTypeVariable instanceof TypeVariable))
  121. {
  122. localTypeVariable = (TypeVariable)localTypeVariable;
  123. m = i;
  124. if ((paramType1 instanceof ParameterizedType))
  125. {
  126. ParameterizedType localParameterizedType2 = (ParameterizedType)paramType1;
  127. int k = 0;
  128. while (true)
  129. {
  130. m = i;
  131. if (k >= paramClass.getTypeParameters().length)
  132. break;
  133. if (paramClass.getTypeParameters()[k].getName().equals(localTypeVariable.getName()))
  134. {
  135. localObject[j] = localParameterizedType2.getActualTypeArguments()[k];
  136. i = 1;
  137. }
  138. k += 1;
  139. }
  140. }
  141. }
  142. j += 1;
  143. i = m;
  144. }
  145. if (i != 0)
  146. return new ParameterizedTypeImpl((Type[])localObject, localParameterizedType1.getOwnerType(), localParameterizedType1.getRawType());
  147. }
  148. return paramType2;
  149. }
  150. public static Type getInheritGenericType(Class<?> paramClass, TypeVariable<?> paramTypeVariable)
  151. {
  152. Object localObject = paramTypeVariable.getGenericDeclaration();
  153. Type localType;
  154. do
  155. {
  156. localType = paramClass.getGenericSuperclass();
  157. if (localType == null);
  158. while (true)
  159. {
  160. return null;
  161. if (!(localType instanceof ParameterizedType))
  162. break;
  163. paramClass = (ParameterizedType)localType;
  164. if (paramClass.getRawType() != localObject)
  165. break;
  166. localObject = ((GenericDeclaration)localObject).getTypeParameters();
  167. paramClass = paramClass.getActualTypeArguments();
  168. int i = 0;
  169. while (i < localObject.length)
  170. {
  171. if (localObject[i] == paramTypeVariable)
  172. return paramClass[i];
  173. i += 1;
  174. }
  175. }
  176. paramClass = TypeUtils.getClass(localType);
  177. }
  178. while (localType != null);
  179. return null;
  180. }
  181. public int compareTo(FieldInfo paramFieldInfo)
  182. {
  183. return this.name.compareTo(paramFieldInfo.name);
  184. }
  185. public Object get(Object paramObject)
  186. throws IllegalAccessException, InvocationTargetException
  187. {
  188. if (this.method != null)
  189. return this.method.invoke(paramObject, new Object[0]);
  190. return this.field.get(paramObject);
  191. }
  192. public <T extends Annotation> T getAnnotation(Class<T> paramClass)
  193. {
  194. Annotation localAnnotation1 = null;
  195. if (this.method != null)
  196. localAnnotation1 = this.method.getAnnotation(paramClass);
  197. Annotation localAnnotation2 = localAnnotation1;
  198. if (localAnnotation1 == null)
  199. {
  200. localAnnotation2 = localAnnotation1;
  201. if (this.field != null)
  202. localAnnotation2 = this.field.getAnnotation(paramClass);
  203. }
  204. return localAnnotation2;
  205. }
  206. public Class<?> getDeclaringClass()
  207. {
  208. return this.declaringClass;
  209. }
  210. public Field getField()
  211. {
  212. return this.field;
  213. }
  214. public Class<?> getFieldClass()
  215. {
  216. return this.fieldClass;
  217. }
  218. public Type getFieldType()
  219. {
  220. return this.fieldType;
  221. }
  222. public String getFormat()
  223. {
  224. Object localObject1 = null;
  225. Object localObject2 = (JSONField)getAnnotation(JSONField.class);
  226. if (localObject2 != null)
  227. {
  228. localObject2 = ((JSONField)localObject2).format();
  229. localObject1 = localObject2;
  230. if (((String)localObject2).trim().length() == 0)
  231. localObject1 = null;
  232. }
  233. return localObject1;
  234. }
  235. public Method getMethod()
  236. {
  237. return this.method;
  238. }
  239. public String getName()
  240. {
  241. return this.name;
  242. }
  243. public boolean isGetOnly()
  244. {
  245. return this.getOnly;
  246. }
  247. public void set(Object paramObject1, Object paramObject2)
  248. throws IllegalAccessException, InvocationTargetException
  249. {
  250. if (this.method != null)
  251. {
  252. this.method.invoke(paramObject1, new Object[] { paramObject2 });
  253. return;
  254. }
  255. this.field.set(paramObject1, paramObject2);
  256. }
  257. public void setAccessible(boolean paramBoolean)
  258. throws SecurityException
  259. {
  260. if (this.method != null)
  261. {
  262. this.method.setAccessible(paramBoolean);
  263. return;
  264. }
  265. this.field.setAccessible(paramBoolean);
  266. }
  267. public String toString()
  268. {
  269. return this.name;
  270. }
  271. }
  272. /* Location: C:\Users\User\dex2jar-2.0\dex\qting\classes-dex2jar.jar
  273. * Qualified Name: com.alibaba.fastjson.util.FieldInfo
  274. * JD-Core Version: 0.6.2
  275. */