com.nordea.oss.copybook.converters.StringToString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of copybook4java Show documentation
Show all versions of copybook4java Show documentation
CopyBook serializer and deserializer for Java where CopyBook lines are used to annotate a normal Java class
The newest version!
/*
* Copyright (c) 2015. Troels Liebe Bentsen
* Copyright (c) 2016. Nordea Bank AB
* Licensed under the MIT license (LICENSE.txt)
*/
package com.nordea.oss.copybook.converters;
import com.nordea.oss.ByteUtils;
import com.nordea.oss.copybook.exceptions.TypeConverterException;
import java.util.Arrays;
public class StringToString extends TypeConverterBase {
@Override
public void validate(Class> type, int size, int decimals) {
if(!(String.class.equals(type))) {
throw new TypeConverterException("Only supports converting to and from String");
}
}
@Override
public Object to(byte[] bytes, int offset, int length, int decimals, boolean removePadding) {
if(ByteUtils.allEquals(bytes, this.nullFillerByte, offset, bytes.length)) { // All of value is null filler
if(this.defaultValue != null) {
return this.defaultValue;
} else {
return null;
}
} else {
return getString(bytes, offset, length, removePadding, 0);
}
}
@Override
public byte[] from(Object value, int length, int decimals, boolean addPadding) {
byte[] strBytes = null;
if(value != null || this.defaultValue != null) {
strBytes = (value != null ? (String)value : this.defaultValue).getBytes(this.charset);
if (strBytes.length > length) {
throw new TypeConverterException("Field to small for value: " + length + " < " + strBytes.length);
}
if (addPadding) {
strBytes = padBytes(strBytes, length);
}
} else if(addPadding) {
strBytes = new byte[length];
Arrays.fill(strBytes, this.nullFillerByte);
}
return strBytes;
}
}