com.fitbur.assertj.presentation.HexadecimalRepresentation Maven / Gradle / Ivy
/**
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2012-2016 the original author or authors.
*/
package com.fitbur.assertj.presentation;
import static com.fitbur.assertj.util.Strings.concat;
/**
* Hexadecimal object representation instead of standard java representation.
*
* @author Mariusz Smykula
*/
public class HexadecimalRepresentation implements Representation {
public static final HexadecimalRepresentation HEXA_REPRESENTATION = new HexadecimalRepresentation();
public static final String PREFIX = "0x";
public static final int NIBBLE_SIZE = 4;
/**
* Returns hexadecimal the {@code toString} representation of the given object. It may or not the object's own
* implementation of {@code toString}.
*
* @param object the given object.
* @return the {@code toString} representation of the given object.
*/
@Override
public String toStringOf(Object object) {
if (object instanceof Number) return toStringOf((Number) object);
else if (object instanceof String) return toStringOf(this, (String) object);
else if (object instanceof Character) return toStringOf((Character) object);
else return DefaultToString.toStringOf(this, object);
}
private static String toStringOf(Number number) {
if (number instanceof Byte) return toStringOf((Byte) number);
else if (number instanceof Short) return toStringOf((Short) number);
else if (number instanceof Integer) return toStringOf((Integer) number);
else if (number instanceof Long) return toStringOf((Long) number);
else if (number instanceof Float) return toStringOf((Float) number);
else if (number instanceof Double) return toStringOf((Double) number);
else return number.toString();
}
private static String toStringOf(Byte b) {
return toGroupedHex(b, 8);
}
private static String toStringOf(Short s) {
return toGroupedHex(s, 16);
}
private static String toStringOf(Integer i) {
return toGroupedHex(i, 32);
}
private static String toStringOf(Long l) {
return toGroupedHex(l, 64);
}
private static String toStringOf(Float f) {
return toGroupedHex(Float.floatToIntBits(f), 32);
}
private static String toStringOf(Double d) {
return toGroupedHex(Double.doubleToRawLongBits(d), 64);
}
private static String toStringOf(Character character) {
return concat("'", toStringOf((short) (int) character), "'");
}
private static String toStringOf(Representation representation, String s) {
return concat("\"", representation.toStringOf(s.toCharArray()), "\"");
}
private static String toGroupedHex(Number value, int size) {
return PREFIX + NumberGrouping.toHexLiteral(toHex(value, size));
}
private static String toHex(Number value, int sizeInBits) {
return String.format("%0" + sizeInBits / NIBBLE_SIZE + "X", value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy