/QingTingFanBianYi/src/com/alibaba/fastjson/asm/ByteVector.java

https://gitlab.com/qt-prometheus/qt-prometheus · Java · 145 lines · 129 code · 12 blank · 4 comment · 14 complexity · 42749e8b70af462d5724f2e67fb4c20d MD5 · raw file

  1. package com.alibaba.fastjson.asm;
  2. public class ByteVector
  3. {
  4. byte[] data;
  5. int length;
  6. public ByteVector()
  7. {
  8. this.data = new byte[64];
  9. }
  10. public ByteVector(int paramInt)
  11. {
  12. this.data = new byte[paramInt];
  13. }
  14. private void enlarge(int paramInt)
  15. {
  16. int i = this.data.length * 2;
  17. paramInt = this.length + paramInt;
  18. if (i > paramInt)
  19. paramInt = i;
  20. while (true)
  21. {
  22. byte[] arrayOfByte = new byte[paramInt];
  23. System.arraycopy(this.data, 0, arrayOfByte, 0, this.length);
  24. this.data = arrayOfByte;
  25. return;
  26. }
  27. }
  28. ByteVector put11(int paramInt1, int paramInt2)
  29. {
  30. int i = this.length;
  31. if (i + 2 > this.data.length)
  32. enlarge(2);
  33. byte[] arrayOfByte = this.data;
  34. int j = i + 1;
  35. arrayOfByte[i] = ((byte)paramInt1);
  36. arrayOfByte[j] = ((byte)paramInt2);
  37. this.length = (j + 1);
  38. return this;
  39. }
  40. ByteVector put12(int paramInt1, int paramInt2)
  41. {
  42. int j = this.length;
  43. if (j + 3 > this.data.length)
  44. enlarge(3);
  45. byte[] arrayOfByte = this.data;
  46. int i = j + 1;
  47. arrayOfByte[j] = ((byte)paramInt1);
  48. paramInt1 = i + 1;
  49. arrayOfByte[i] = ((byte)(paramInt2 >>> 8));
  50. arrayOfByte[paramInt1] = ((byte)paramInt2);
  51. this.length = (paramInt1 + 1);
  52. return this;
  53. }
  54. public ByteVector putByte(int paramInt)
  55. {
  56. int i = this.length;
  57. if (i + 1 > this.data.length)
  58. enlarge(1);
  59. this.data[i] = ((byte)paramInt);
  60. this.length = (i + 1);
  61. return this;
  62. }
  63. public ByteVector putByteArray(byte[] paramArrayOfByte, int paramInt1, int paramInt2)
  64. {
  65. if (this.length + paramInt2 > this.data.length)
  66. enlarge(paramInt2);
  67. if (paramArrayOfByte != null)
  68. System.arraycopy(paramArrayOfByte, paramInt1, this.data, this.length, paramInt2);
  69. this.length += paramInt2;
  70. return this;
  71. }
  72. public ByteVector putInt(int paramInt)
  73. {
  74. int j = this.length;
  75. if (j + 4 > this.data.length)
  76. enlarge(4);
  77. byte[] arrayOfByte = this.data;
  78. int i = j + 1;
  79. arrayOfByte[j] = ((byte)(paramInt >>> 24));
  80. j = i + 1;
  81. arrayOfByte[i] = ((byte)(paramInt >>> 16));
  82. i = j + 1;
  83. arrayOfByte[j] = ((byte)(paramInt >>> 8));
  84. arrayOfByte[i] = ((byte)paramInt);
  85. this.length = (i + 1);
  86. return this;
  87. }
  88. public ByteVector putShort(int paramInt)
  89. {
  90. int i = this.length;
  91. if (i + 2 > this.data.length)
  92. enlarge(2);
  93. byte[] arrayOfByte = this.data;
  94. int j = i + 1;
  95. arrayOfByte[i] = ((byte)(paramInt >>> 8));
  96. arrayOfByte[j] = ((byte)paramInt);
  97. this.length = (j + 1);
  98. return this;
  99. }
  100. public ByteVector putUTF8(String paramString)
  101. {
  102. int k = paramString.length();
  103. int j = this.length;
  104. if (j + 2 + k > this.data.length)
  105. enlarge(k + 2);
  106. byte[] arrayOfByte = this.data;
  107. int i = j + 1;
  108. arrayOfByte[j] = ((byte)(k >>> 8));
  109. arrayOfByte[i] = ((byte)k);
  110. j = 0;
  111. i += 1;
  112. while (j < k)
  113. {
  114. int m = paramString.charAt(j);
  115. if ((m >= 1) && (m <= 127))
  116. {
  117. arrayOfByte[i] = ((byte)m);
  118. j += 1;
  119. i += 1;
  120. }
  121. else
  122. {
  123. throw new UnsupportedOperationException();
  124. }
  125. }
  126. this.length = i;
  127. return this;
  128. }
  129. }
  130. /* Location: C:\Users\User\dex2jar-2.0\dex\qting\classes-dex2jar.jar
  131. * Qualified Name: com.alibaba.fastjson.asm.ByteVector
  132. * JD-Core Version: 0.6.2
  133. */