All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.diozero.util.Hex Maven / Gradle / Ivy

The newest version!
package com.diozero.util;

/*
 * #%L
 * Organisation: diozero
 * Project:      diozero - Core
 * Filename:     Hex.java
 * 
 * This file is part of the diozero project. More information about this project
 * can be found at https://www.diozero.com/.
 * %%
 * Copyright (C) 2016 - 2024 diozero
 * %%
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 * #L%
 */

import java.io.PrintStream;
import java.nio.IntBuffer;
import java.util.concurrent.ThreadLocalRandom;

public class Hex {
	private static final char[] HEX_ARRAY = "0123456789ABCDEF".toCharArray();
	private static final char DEFAULT_BUNDLE_SEP = ' ';

	public static String encodeHexString(byte[] bytes) {
		return encodeHexString(bytes, 0);
	}

	public static String encode(byte b) {
		return String.format("%02x", Byte.valueOf(b));
	}

	public static String encode(short s) {
		return String.format("%04x", Short.valueOf(s));
	}

	public static String encode(int i) {
		return String.format("%08x", Integer.valueOf(i));
	}

	public static String encodeHexString(byte[] bytes, int bundleSize) {
		return encodeHexString(bytes, bundleSize, DEFAULT_BUNDLE_SEP);
	}

	public static String encodeHexString(byte[] bytes, int bundleSize, char bundleSep) {
		char[] hexChars = new char[(bytes.length * 2) + (bundleSize > 0 ? (bytes.length / bundleSize) : 0)];
		for (int j = 0, k = 1; j < bytes.length; j++, k++) {
			int v = bytes[j] & 0xFF;
			int start = (j * 2) + (bundleSize > 0 ? j / bundleSize : 0);

			hexChars[start] = HEX_ARRAY[v >>> 4];
			hexChars[start + 1] = HEX_ARRAY[v & 0x0F];

			if (bundleSize > 0 && k < bytes.length && (k % bundleSize) == 0) {
				hexChars[start + 2] = bundleSep;
			}
		}
		return new String(hexChars).trim();
	}

	public static byte[] decodeHex(CharSequence s) {
		int len = s.length();
		if ((len & 0x01) != 0) {
			throw new IllegalArgumentException("Odd number of characters.");
		}

		byte[] out = new byte[len >> 1];
		for (int i = 0, j = 0; j < len; i++) {
			int f = (toDigit(s.charAt(j++)) << 4) | toDigit(s.charAt(j++));
			out[i] = (byte) (f & 0xFF);
		}

		return out;
	}

	private static int toDigit(char ch) {
		int digit = Character.digit(ch, 16);
		if (digit == -1) {
			throw new IllegalArgumentException("Invalid hex character '" + ch + "'");
		}
		return digit;
	}

	public static void dumpIntBuffer(IntBuffer buffer) {
		dumpIntBuffer(buffer, 0, buffer.capacity());
	}

	public static void dumpIntBuffer(IntBuffer buffer, int start, int end) {
		int ints_per_line = 8;
		int lines = (end - 1) / ints_per_line + 1;
		for (int i = 0; i < lines; i++) {
			System.out.format("%04x: ", Integer.valueOf(start + i * ints_per_line));
			for (int j = 0; j < ints_per_line && i * ints_per_line + j < end; j++) {
				System.out.format("%08x ", Integer.valueOf(buffer.get(start + i * ints_per_line + j)));
			}
			System.out.println();
		}
	}

	public static void dumpByteArray(byte[] bytes) {
		dumpByteArray(bytes, System.out);
	}

	public static void dumpByteArray(byte[] bytes, PrintStream out) {
		int bytes_per_line = 16;
		String ascii = "";
		int i;
		for (i = 0; i < bytes.length; i++) {
			if (i % bytes_per_line == 0) {
				out.format("s%04x: ", Integer.valueOf(i));
			}
			System.out.format("%02x ", Byte.valueOf(bytes[i]));
			ascii += (bytes[i] < ' ' || bytes[i] > 'z') ? '.' : (char) bytes[i];
			if (i % bytes_per_line == bytes_per_line / 2 - 1) {
				out.print(" ");
			}
			if (i % bytes_per_line == 15) {
				out.println(" " + ascii);
				ascii = "";
			}
		}
		int last_line_bytes = i % bytes_per_line;
		if (last_line_bytes != 0) {
			for (int space = 0; space < (bytes_per_line - (last_line_bytes)) * 3; space++) {
				out.print(' ');
			}
			if (last_line_bytes < bytes_per_line / 2) {
				out.print(' ');
			}
			out.println(" " + ascii);
			ascii = "";
		}
	}

	public static void main(String[] args) {
		byte[] bytes = { (byte) 0xde, (byte) 0xad, (byte) 0xbe, (byte) 0xef };
		String s = encodeHexString(bytes);
		System.out.println(s);
		System.out.println(encodeHexString(bytes, 2));
		System.out.println(encodeHexString(bytes, 2, ':'));
		System.out.println(encodeHexString(decodeHex(s)));

		int num_ints = 35;
		int[] ints = new int[num_ints];
		ThreadLocalRandom rand = ThreadLocalRandom.current();
		for (int i = 0; i < num_ints; i++) {
			ints[i] = rand.nextInt();
		}
		dumpIntBuffer(IntBuffer.wrap(ints));

		int num_bytes = 39;
		bytes = new byte[num_bytes];
		rand.nextBytes(bytes);
		dumpByteArray(bytes);
		System.out.println();

		num_bytes = 40;
		bytes = new byte[num_bytes];
		rand.nextBytes(bytes);
		dumpByteArray(bytes);
		System.out.println();

		num_bytes = 41;
		bytes = new byte[num_bytes];
		rand.nextBytes(bytes);
		dumpByteArray(bytes);
		System.out.println();

		num_bytes = 31;
		bytes = new byte[num_bytes];
		rand.nextBytes(bytes);
		dumpByteArray(bytes);
		System.out.println();

		num_bytes = 32;
		bytes = new byte[num_bytes];
		rand.nextBytes(bytes);
		dumpByteArray(bytes);
		System.out.println();

		num_bytes = 33;
		bytes = new byte[num_bytes];
		rand.nextBytes(bytes);
		dumpByteArray(bytes);
		System.out.println();

		System.out.println(encode((byte) 0x01));
		System.out.println(encode((byte) 0x10));
		System.out.println(encode((byte) 0x0f));
		System.out.println(encode((byte) 0xf0));
		System.out.println(encode((byte) 0xff));
		System.out.println();

		System.out.println(encode((short) 0x0001));
		System.out.println(encode((short) 0x1000));
		System.out.println(encode((short) 0x000f));
		System.out.println(encode((short) 0xf000));
		System.out.println(encode((short) 0xffff));
		System.out.println();

		System.out.println(encode(0x00000001));
		System.out.println(encode(0x10000000));
		System.out.println(encode(0x0000000f));
		System.out.println(encode(0xf0000000));
		System.out.println(encode(0xffffffff));
		System.out.println();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy