1. 程式人生 > >Protostuff序列化和反序列化

Protostuff序列化和反序列化

Java序列化和反序列化

序列化和反序列化是在應對網路程式設計最常遇到的問題之一。
序列化就是將Java Object轉成byte[];反序列化就是將byte[]轉成Java Object。
這裡不介紹JDK serializable的序列化方式,而是介紹一個更高效的序列化庫-protostuff。

Protostuff簡介

Protostuff是一個序列化庫,支援一下序列化格式:

  • protobuf
  • protostuff(本地)
  • graph
  • json
  • smile
  • xml
  • yaml
  • kvp

序列化和反序列化工具

序列化
@SuppressWarnings("unchecked")
public static
<T> byte[] serialize(T obj) { Class<T> cls = (Class<T>) obj.getClass(); LinkedBuffer buffer = LinkedBuffer.allocate(LinkedBuffer.DEFAULT_BUFFER_SIZE); try { Schema<T> schema = getSchema(cls); return ProtostuffIOUtil.toByteArray(obj, schema, buffer); } catch
(Exception e) { throw new IllegalStateException(e.getMessage(), e); } finally { buffer.clear(); } }

第3行:獲得物件的類;
第4行:使用LinkedBuffer分配一塊預設大小的buffer空間;
第6行:通過物件的類構建對應的schema;
第7行:使用給定的schema將物件序列化為一個byte陣列,並返回。

反序列化
public static <T> T deserialize(byte[] data, Class<T> cls)
{ try { T message = objenesis.newInstance(cls); Schema<T> schema = getSchema(cls); ProtostuffIOUtil.mergeFrom(data, message, schema); return message; } catch (Exception e) { throw new IllegalStateException(e.getMessage(), e); } }

第3行:使用objenesis例項化一個類的物件;
第4行:通過物件的類構建對應的schema;
第5,6行:使用給定的schema將byte陣列和物件合併,並返回。

構建schema

構建schema的過程可能會比較耗時,因此希望使用過的類對應的schema能被快取起來。程式碼如下,不再贅述:

private static Map<Class<?>, Schema<?>> cachedSchema = new ConcurrentHashMap<>();

private static <T> Schema<T> getSchema(Class<T> cls) {
    Schema<T> schema = (Schema<T>) cachedSchema.get(cls);
    if (schema == null) {
        schema = RuntimeSchema.createFrom(cls);
        if (schema != null) {
            cachedSchema.put(cls, schema);
        }
    }
    return schema;
}

可以看到方法第4行使用了RuntimeSchema,關於RuntimeSchema的用法