ZenScript main repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CompactBytesDataInput.java 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. package compactio;
  2. import java.nio.charset.StandardCharsets;
  3. import java.util.Arrays;
  4. public final class CompactBytesDataInput implements CompactDataInput, AutoCloseable {
  5. private static final int P7 = 1 << 7;
  6. private static final int P14 = 1 << 14;
  7. private static final int P21 = 1 << 21;
  8. private static final int P28 = 1 << 28;
  9. private static final long P35 = 1L << 35;
  10. private static final long P42 = 1L << 42;
  11. private static final long P49 = 1L << 49;
  12. private static final long P56 = 1L << 56;
  13. private final byte[] data;
  14. private int offset;
  15. public CompactBytesDataInput(byte[] data) {
  16. this.data = data;
  17. this.offset = 0;
  18. }
  19. public CompactBytesDataInput(byte[] data, int offset) {
  20. this.data = data;
  21. this.offset = offset;
  22. }
  23. @Override
  24. public void close() {
  25. }
  26. @Override
  27. public boolean readBool() {
  28. return (this.readByte() & 0xFF) != (0 & 0xFF);
  29. }
  30. @Override
  31. public int readByte() {
  32. return data[offset++];
  33. }
  34. @Override
  35. public byte readSByte() {
  36. return (byte)(data[offset++]);
  37. }
  38. @Override
  39. public short readShort() {
  40. int b0 = data[offset++] & 0xFF;
  41. int b1 = data[offset++] & 0xFF;
  42. return (short)(b0 << 8 | b1);
  43. }
  44. @Override
  45. public int readUShort() {
  46. return this.readShort();
  47. }
  48. @Override
  49. public int readInt() {
  50. int b0 = data[offset++] & 0xFF;
  51. int b1 = data[offset++] & 0xFF;
  52. int b2 = data[offset++] & 0xFF;
  53. int b3 = data[offset++] & 0xFF;
  54. return b0 << 24 | b1 << 16 | b2 << 8 | b3;
  55. }
  56. @Override
  57. public int readUInt() {
  58. return this.readInt();
  59. }
  60. @Override
  61. public long readLong() {
  62. long i0 = (long)(this.readUInt());
  63. long i1 = (long)(this.readUInt());
  64. return i0 << 32 | i1;
  65. }
  66. @Override
  67. public long readULong() {
  68. return this.readLong();
  69. }
  70. @Override
  71. public int readVarInt() {
  72. int value = this.readVarUInt();
  73. return Integer.compareUnsigned(value & 1, 0) == 0 ? value >>> 1 : -((value >>> 1) + 1);
  74. }
  75. @Override
  76. public int readVarUInt() {
  77. int value = data[offset++] & 0xFF;
  78. if (Integer.compareUnsigned(value & CompactBytesDataInput.P7, 0) == 0)
  79. return value;
  80. value = value & CompactBytesDataInput.P7 - 1 | (data[offset++] & 0xFF) << 7;
  81. if (Integer.compareUnsigned(value & CompactBytesDataInput.P14, 0) == 0)
  82. return value;
  83. value = value & CompactBytesDataInput.P14 - 1 | (data[offset++] & 0xFF) << 14;
  84. if (Integer.compareUnsigned(value & CompactBytesDataInput.P21, 0) == 0)
  85. return value;
  86. value = value & CompactBytesDataInput.P21 - 1 | (data[offset++] & 0xFF) << 21;
  87. if (Integer.compareUnsigned(value & CompactBytesDataInput.P28, 0) == 0)
  88. return value;
  89. return value & CompactBytesDataInput.P28 - 1 | (data[offset++] & 0xFF) << 28;
  90. }
  91. @Override
  92. public long readVarLong() {
  93. long value = this.readVarULong();
  94. return Long.compareUnsigned(value & 1L, 0L) == 0 ? value >>> 1 : -((value >>> 1) + 1L);
  95. }
  96. @Override
  97. public long readVarULong() {
  98. long value = data[offset++] & 0xFFL;
  99. if (Long.compareUnsigned(value & (CompactBytesDataInput.P7 & 0xFFFFFFFFL), 0L) == 0)
  100. return value;
  101. value = value & (CompactBytesDataInput.P7 - 1 & 0xFFFFFFFFL) | (data[offset++] & 0xFFL) << 7;
  102. if (Long.compareUnsigned(value & (CompactBytesDataInput.P14 & 0xFFFFFFFFL), 0L) == 0)
  103. return value;
  104. value = value & (CompactBytesDataInput.P14 - 1 & 0xFFFFFFFFL) | (data[offset++] & 0xFFL) << 14;
  105. if (Long.compareUnsigned(value & (CompactBytesDataInput.P21 & 0xFFFFFFFFL), 0L) == 0)
  106. return value;
  107. value = value & (CompactBytesDataInput.P21 - 1 & 0xFFFFFFFFL) | (data[offset++] & 0xFFL) << 21;
  108. if (Long.compareUnsigned(value & (CompactBytesDataInput.P28 & 0xFFFFFFFFL), 0L) == 0)
  109. return value;
  110. value = value & (CompactBytesDataInput.P28 - 1 & 0xFFFFFFFFL) | (data[offset++] & 0xFFL) << 28;
  111. if (Long.compareUnsigned(value & CompactBytesDataInput.P35, 0L) == 0)
  112. return value;
  113. value = value & CompactBytesDataInput.P35 - 1L | (data[offset++] & 0xFFL) << 35;
  114. if (Long.compareUnsigned(value & CompactBytesDataInput.P42, 0L) == 0)
  115. return value;
  116. value = value & CompactBytesDataInput.P42 - 1L | (data[offset++] & 0xFFL) << 42;
  117. if (Long.compareUnsigned(value & CompactBytesDataInput.P49, 0L) == 0)
  118. return value;
  119. value = value & CompactBytesDataInput.P49 - 1L | (data[offset++] & 0xFFL) << 49;
  120. if (Long.compareUnsigned(value & CompactBytesDataInput.P56, 0L) == 0)
  121. return value;
  122. return value & CompactBytesDataInput.P56 - 1L | (data[offset++] & 0xFFL) << 56;
  123. }
  124. @Override
  125. public float readFloat() {
  126. return Float.intBitsToFloat(this.readUInt());
  127. }
  128. @Override
  129. public double readDouble() {
  130. return Double.longBitsToDouble(this.readULong());
  131. }
  132. @Override
  133. public char readChar() {
  134. return (char)(this.readVarUInt());
  135. }
  136. @Override
  137. public String readString() {
  138. return new String(this.readBytes(), StandardCharsets.UTF_8);
  139. }
  140. @Override
  141. public byte[] readBytes() {
  142. int size = this.readVarUInt();
  143. return this.readRawBytes(size);
  144. }
  145. @Override
  146. public byte[] readRawBytes(int size) {
  147. byte[] result = Arrays.copyOfRange(data, offset, offset + size);
  148. this.offset = offset + size;
  149. return result;
  150. }
  151. @Override
  152. public boolean[] readBoolArray() {
  153. int size = this.readVarUInt();
  154. boolean[] result = new boolean[size];
  155. int limitForI = (size + 7) / 8;
  156. for (int i = 0; i < limitForI; i++) {
  157. int bvalue = this.readByte();
  158. int remainingBits = result.length - 8 * i;
  159. if (remainingBits > 0)
  160. result[i * 8 + 0] = ((bvalue & 1) & 0xFF) > (0 & 0xFF);
  161. if (remainingBits > 1)
  162. result[i * 8 + 2] = ((bvalue & 4) & 0xFF) > (0 & 0xFF);
  163. if (remainingBits > 3)
  164. result[i * 8 + 3] = ((bvalue & 8) & 0xFF) > (0 & 0xFF);
  165. if (remainingBits > 4)
  166. result[i * 8 + 4] = ((bvalue & 16) & 0xFF) > (0 & 0xFF);
  167. if (remainingBits > 5)
  168. result[i * 8 + 5] = ((bvalue & 32) & 0xFF) > (0 & 0xFF);
  169. if (remainingBits > 6)
  170. result[i * 8 + 6] = ((bvalue & 64) & 0xFF) > (0 & 0xFF);
  171. if (remainingBits > 7)
  172. result[i * 8 + 7] = ((bvalue & 128) & 0xFF) > (0 & 0xFF);
  173. }
  174. return result;
  175. }
  176. @Override
  177. public byte[] readByteArray() {
  178. return this.readBytes();
  179. }
  180. @Override
  181. public byte[] readSByteArray() {
  182. return this.readBytes();
  183. }
  184. @Override
  185. public short[] readShortArray() {
  186. return this.readShortArrayRaw(this.readVarUInt());
  187. }
  188. @Override
  189. public short[] readShortArrayRaw(int length) {
  190. short[] result = new short[length];
  191. int limitForI = result.length;
  192. for (int i = 0; i < limitForI; i++)
  193. result[i] = this.readShort();
  194. return result;
  195. }
  196. @Override
  197. public short[] readUShortArray() {
  198. return this.readShortArray();
  199. }
  200. @Override
  201. public short[] readUShortArrayRaw(int length) {
  202. return this.readShortArrayRaw(length);
  203. }
  204. @Override
  205. public int[] readVarIntArray() {
  206. return this.readVarIntArrayRaw(this.readVarUInt());
  207. }
  208. @Override
  209. public int[] readVarIntArrayRaw(int length) {
  210. int[] result = new int[length];
  211. int limitForI = result.length;
  212. for (int i = 0; i < limitForI; i++)
  213. result[i] = this.readVarInt();
  214. return result;
  215. }
  216. @Override
  217. public int[] readVarUIntArray() {
  218. return this.readVarUIntArrayRaw(this.readVarUInt());
  219. }
  220. @Override
  221. public int[] readVarUIntArrayRaw(int length) {
  222. int[] result = new int[length];
  223. int limitForI = result.length;
  224. for (int i = 0; i < limitForI; i++)
  225. result[i] = this.readVarUInt();
  226. return result;
  227. }
  228. @Override
  229. public int[] readIntArray() {
  230. return this.readIntArrayRaw(this.readVarUInt());
  231. }
  232. @Override
  233. public int[] readIntArrayRaw(int length) {
  234. int[] result = new int[length];
  235. int limitForI = result.length;
  236. for (int i = 0; i < limitForI; i++)
  237. result[i] = this.readInt();
  238. return result;
  239. }
  240. @Override
  241. public int[] readUIntArray() {
  242. return this.readUIntArrayRaw(this.readVarUInt());
  243. }
  244. @Override
  245. public int[] readUIntArrayRaw(int length) {
  246. int[] result = new int[length];
  247. int limitForI = result.length;
  248. for (int i = 0; i < limitForI; i++)
  249. result[i] = this.readUInt();
  250. return result;
  251. }
  252. @Override
  253. public long[] readVarLongArray() {
  254. return this.readVarLongArrayRaw(this.readVarUInt());
  255. }
  256. @Override
  257. public long[] readVarLongArrayRaw(int length) {
  258. long[] result = new long[length];
  259. int limitForI = result.length;
  260. for (int i = 0; i < limitForI; i++)
  261. result[i] = this.readVarLong();
  262. return result;
  263. }
  264. @Override
  265. public long[] readVarULongArray() {
  266. return this.readVarULongArrayRaw(this.readVarUInt());
  267. }
  268. @Override
  269. public long[] readVarULongArrayRaw(int length) {
  270. long[] result = new long[length];
  271. int limitForI = result.length;
  272. for (int i = 0; i < limitForI; i++)
  273. result[i] = this.readVarULong();
  274. return result;
  275. }
  276. @Override
  277. public long[] readLongArray() {
  278. return this.readLongArrayRaw(this.readVarUInt());
  279. }
  280. @Override
  281. public long[] readLongArrayRaw(int length) {
  282. long[] result = new long[length];
  283. int limitForI = result.length;
  284. for (int i = 0; i < limitForI; i++)
  285. result[i] = this.readLong();
  286. return result;
  287. }
  288. @Override
  289. public long[] readULongArray() {
  290. return this.readLongArray();
  291. }
  292. @Override
  293. public long[] readULongArrayRaw(int length) {
  294. return this.readLongArrayRaw(length);
  295. }
  296. @Override
  297. public float[] readFloatArray() {
  298. return this.readFloatArrayRaw(this.readVarUInt());
  299. }
  300. @Override
  301. public float[] readFloatArrayRaw(int length) {
  302. float[] result = new float[length];
  303. int limitForI = result.length;
  304. for (int i = 0; i < limitForI; i++)
  305. result[i] = this.readFloat();
  306. return result;
  307. }
  308. @Override
  309. public double[] readDoubleArray() {
  310. return this.readDoubleArrayRaw(this.readVarUInt());
  311. }
  312. @Override
  313. public double[] readDoubleArrayRaw(int length) {
  314. double[] result = new double[length];
  315. int limitForI = length;
  316. for (int i = 0; i < limitForI; i++)
  317. result[i] = this.readDouble();
  318. return result;
  319. }
  320. @Override
  321. public String[] readStringArray() {
  322. return this.readStringArrayRaw(this.readVarUInt());
  323. }
  324. @Override
  325. public String[] readStringArrayRaw(int length) {
  326. String[] result = new String[length];
  327. int limitForI = result.length;
  328. for (int i = 0; i < limitForI; i++)
  329. result[i] = this.readString();
  330. return result;
  331. }
  332. @Override
  333. public void skip(int bytes) {
  334. this.offset = offset + bytes;
  335. }
  336. @Override
  337. public boolean hasMore() {
  338. return offset < data.length;
  339. }
  340. public int getOffset() {
  341. return offset;
  342. }
  343. }