/src/Blockchainj/Util/Utils.java

https://bitbucket.org/aimylos/blockchainj · Java · 190 lines · 141 code · 33 blank · 16 comment · 12 complexity · a34490bec6c93d10738565e49039fc65 MD5 · raw file

  1. package Blockchainj.Util;
  2. import org.apache.commons.codec.binary.Hex;
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.UnsupportedEncodingException;
  6. import java.security.SecureRandom;
  7. import java.util.Arrays;
  8. import java.util.Locale;
  9. import java.util.Random;
  10. public class Utils {
  11. public static void suggestGarbageCollectorRun() {
  12. System.gc();
  13. System.runFinalization();
  14. }
  15. public static void uint32ToByteArrayBE(long val, byte[] out, int offset) {
  16. out[offset] = (byte) (0xFF & (val >> 24));
  17. out[offset + 1] = (byte) (0xFF & (val >> 16));
  18. out[offset + 2] = (byte) (0xFF & (val >> 8));
  19. out[offset + 3] = (byte) (0xFF & val);
  20. }
  21. public static void uint32ToByteArrayLE(long val, byte[] out, int offset) {
  22. out[offset] = (byte) (0xFF & val);
  23. out[offset + 1] = (byte) (0xFF & (val >> 8));
  24. out[offset + 2] = (byte) (0xFF & (val >> 16));
  25. out[offset + 3] = (byte) (0xFF & (val >> 24));
  26. }
  27. public static void int32ToByteArrayLE(int val, byte[] out, int offset) {
  28. out[offset] = (byte) (0xFF & val);
  29. out[offset + 1] = (byte) (0xFF & (val >> 8));
  30. out[offset + 2] = (byte) (0xFF & (val >> 16));
  31. out[offset + 3] = (byte) (0xFF & (val >> 24));
  32. }
  33. public static void uint64ToByteArrayLE(long val, byte[] out, int offset) {
  34. out[offset] = (byte) (0xFF & val);
  35. out[offset + 1] = (byte) (0xFF & (val >> 8));
  36. out[offset + 2] = (byte) (0xFF & (val >> 16));
  37. out[offset + 3] = (byte) (0xFF & (val >> 24));
  38. out[offset + 4] = (byte) (0xFF & (val >> 32));
  39. out[offset + 5] = (byte) (0xFF & (val >> 40));
  40. out[offset + 6] = (byte) (0xFF & (val >> 48));
  41. out[offset + 7] = (byte) (0xFF & (val >> 56));
  42. }
  43. /* Parse 4 bytes from the byte array (starting at the offset) as unsigned 32-bit
  44. integer in little endian format. Since java doesn't have unsigned int, using long
  45. ensures unsigned 32-bit will be read correctly. */
  46. public static long readUint32LE(byte[] bytes, int offset) {
  47. return (bytes[offset] & 0xFFL) |
  48. ((bytes[offset + 1] & 0xFFL) << 8) |
  49. ((bytes[offset + 2] & 0xFFL) << 16) |
  50. ((bytes[offset + 3] & 0xFFL) << 24);
  51. }
  52. /* Parse 4 bytes from byte array (starting at the offeset) as signed 32-bit integer in little
  53. endian format. */
  54. public static int readInt32LE(byte[] bytes, int offset) {
  55. return (bytes[offset] & 0xFF) |
  56. ((bytes[offset + 1] & 0xFF) << 8) |
  57. ((bytes[offset + 2] & 0xFF) << 16) |
  58. ((bytes[offset + 3] & 0xFF) << 24);
  59. }
  60. /* Parse 8 bytes from the byte array (starting at the offset) as signed 64-bit integer
  61. in little endian format. */
  62. public static long readInt64LE(byte[] bytes, int offset) {
  63. return (bytes[offset] & 0xFFL) |
  64. ((bytes[offset + 1] & 0xFFL) << 8) |
  65. ((bytes[offset + 2] & 0xFFL) << 16) |
  66. ((bytes[offset + 3] & 0xFFL) << 24) |
  67. ((bytes[offset + 4] & 0xFFL) << 32) |
  68. ((bytes[offset + 5] & 0xFFL) << 40) |
  69. ((bytes[offset + 6] & 0xFFL) << 48) |
  70. ((bytes[offset + 7] & 0xFFL) << 56);
  71. }
  72. /** Parse 4 bytes from the byte array (starting at the offset) as unsigned 32-bit integer in big endian format. */
  73. public static long readUint32BE(byte[] bytes, int offset) {
  74. return ((bytes[offset] & 0xFFL) << 24) |
  75. ((bytes[offset + 1] & 0xFFL) << 16) |
  76. ((bytes[offset + 2] & 0xFFL) << 8) |
  77. (bytes[offset + 3] & 0xFFL);
  78. }
  79. /* Returns a copy of the given byte array in reverse order. */
  80. public static byte[] reverseBytes(byte[] bytes) {
  81. byte[] buf = new byte[bytes.length];
  82. for (int i = 0; i < bytes.length; i++)
  83. buf[i] = bytes[bytes.length - 1 - i];
  84. return buf;
  85. }
  86. /* Read bytes from input stream. */
  87. public static byte[] readBytesFromInputStream(InputStream inputStream, int numBytes)
  88. throws IOException {
  89. if(numBytes == 0) {
  90. return new byte[0];
  91. }
  92. byte[] output = new byte[numBytes];
  93. int bytesRead = inputStream.read(output, 0, numBytes);
  94. if( bytesRead != numBytes ) {
  95. throw new IOException("Expected " + numBytes + " but read " + bytesRead + ".");
  96. }
  97. return output;
  98. }
  99. /* Read bytes from byte array */
  100. public static byte[] readBytesFromByteArray(byte[] data, int offset, int numBytes) {
  101. byte[] outBytes = new byte[numBytes];
  102. System.arraycopy(data, offset, outBytes, 0, numBytes);
  103. return outBytes;
  104. }
  105. /* Read bytes from input stream form socket */
  106. @Deprecated
  107. public static byte[] readBytesFromInputStreamSocket(InputStream inputStream, int numBytes)
  108. throws IOException {
  109. final int tries = 20;
  110. final int millis = 100;
  111. for(int i=0; i<tries; i++) {
  112. if( inputStream.available() >= numBytes ) {
  113. byte[] output = new byte[numBytes];
  114. int bytesRead = inputStream.read(output, 0, numBytes);
  115. if( bytesRead != numBytes ) {
  116. throw new IOException("Expected " + numBytes + " but read " + bytesRead + ".");
  117. }
  118. return output;
  119. } else {
  120. try {
  121. Thread.sleep(millis);
  122. } catch (InterruptedException e) {
  123. throw new IOException(e);
  124. }
  125. }
  126. }
  127. throw new IOException("Failed to read " + numBytes + ".");
  128. }
  129. /* Try to return ASCII string from byte array else return hex string */
  130. public static String getStringFromBytes(byte[] src, int offset, int len) {
  131. try {
  132. return new String(src, offset, len, "UTF-8");
  133. } catch (UnsupportedEncodingException e) {
  134. return Hex.encodeHexString( Arrays.copyOfRange(src, offset, offset+len));
  135. }
  136. }
  137. /* Source: https://stackoverflow.com/questions/41107/
  138. how-to-generate-a-random-alpha-numeric-string */
  139. public static String getRandomString(int length) {
  140. if (length < 1) throw new IllegalArgumentException();
  141. String upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  142. String lower = upper.toLowerCase(Locale.ROOT);
  143. String digits = "0123456789";
  144. String symbolsString = upper + lower + digits;
  145. char[] symbols = symbolsString.toCharArray();
  146. char[] buf = new char[length];
  147. Random random = new SecureRandom();
  148. for (int idx = 0; idx < buf.length; ++idx) {
  149. buf[idx] = symbols[random.nextInt(symbols.length)];
  150. }
  151. return new String(buf);
  152. }
  153. /* Returns a new apache byte array outputstream */
  154. public static org.apache.commons.io.output.ByteArrayOutputStream getNewOutputStream(int size) {
  155. return new org.apache.commons.io.output.ByteArrayOutputStream(size);
  156. }
  157. }