package com.nf2m.serializer;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
public class ObjectSerializer {
public static String serialize(@Nullable Serializable obj) throws IOException {
if (obj == null) return "";
try {
ByteArrayOutputStream serialObj = new ByteArrayOutputStream();
ObjectOutputStream objStream = new ObjectOutputStream(serialObj);
objStream.writeObject(obj);
objStream.close();
return encodeBytes(serialObj.toByteArray());
} catch (Exception e) {
throw WrappedIOException.wrap("Serialization error: " + e.getMessage(), e);
}
}
@Nullable
public static Object deserialize(@Nullable String str) throws IOException {
if (str == null || str.length() == 0) return null;
try {
ByteArrayInputStream serialObj = new ByteArrayInputStream(decodeBytes(str));
ObjectInputStream objStream = new ObjectInputStream(serialObj);
return objStream.readObject();
} catch (Exception e) {
throw WrappedIOException.wrap("Deserialization error: " + e.getMessage(), e);
}
}
private static String encodeBytes(@NonNull byte[] bytes) {
StringBuilder strBuf = new StringBuilder();
for (byte aByte : bytes) {
strBuf.append((char) (((aByte >> 4) & 0xF) + ((int) 'a')));
strBuf.append((char) (((aByte) & 0xF) + ((int) 'a')));
}
return strBuf.toString();
}
@NonNull
private static byte[] decodeBytes(@NonNull String str) {
byte[] bytes = new byte[str.length() / 2];
for (int i = 0; i < str.length(); i += 2) {
char c = str.charAt(i);
bytes[i / 2] = (byte) ((c - 'a') << 4);
c = str.charAt(i + 1);
bytes[i / 2] += (c - 'a');
}
return bytes;
}
}