use of io.protostuff.ProtobufOutput in project incubator-servicecomb-java-chassis by apache.
the class TestProtobufSchemaUtils method object.
@Test
public void object() throws Exception {
WrapSchema schema = ProtobufSchemaUtils.getOrCreateSchema(Object.class);
LinkedBuffer linkedBuf = LinkedBuffer.allocate();
ProtobufOutput output = new ProtobufOutput(linkedBuf);
schema.writeObject(output, 1);
Input input = new ByteArrayInput(output.toByteArray(), false);
Object result = schema.readObject(input);
Assert.assertEquals(1, result);
Assert.assertThat(result, Matchers.instanceOf(Integer.class));
}
use of io.protostuff.ProtobufOutput in project incubator-servicecomb-java-chassis by apache.
the class TestProtobufCompatibleUtils method testProtostuff.
protected byte[] testProtostuff(Map<String, String> map, Map<String, User> userMap) throws IOException {
ProtobufCompatibleUtils.init();
RuntimeSchema<ModelProtostuff> schema = RuntimeSchema.createFrom(ModelProtostuff.class);
ModelProtostuff model = new ModelProtostuff();
model.setContext(map);
model.setUserMap(userMap);
model.getList().add("l1");
model.getList().add("l2");
LinkedBuffer linkedBuffer = LinkedBuffer.allocate();
ProtobufOutput output = new ProtobufOutput(linkedBuffer);
ProtobufFeature protobufFeature = new ProtobufFeature();
protobufFeature.setUseProtobufMapCodec(true);
ProtobufFeatureUtils.setProtobufFeature(protobufFeature);
schema.writeTo(output, model);
ByteArrayOutputStream s = new ByteArrayOutputStream();
LinkedBuffer.writeTo(s, linkedBuffer);
byte[] bytes = s.toByteArray();
ModelProtostuff newModel = new ModelProtostuff();
ByteArrayInput bai = new ByteArrayInput(bytes, false);
schema.mergeFrom(bai, newModel);
ProtobufFeatureUtils.removeProtobufFeature();
Assert.assertEquals("v1", newModel.getContext().get("k1"));
Assert.assertEquals("v2", newModel.getContext().get("k2"));
Assert.assertEquals("n1", newModel.getUserMap().get("u1").getName());
Assert.assertEquals("n2", newModel.getUserMap().get("u2").getName());
Assert.assertEquals("l1", newModel.getList().get(0));
Assert.assertEquals("l2", newModel.getList().get(1));
return bytes;
}
use of io.protostuff.ProtobufOutput in project java-chassis by ServiceComb.
the class Protostuff method serialize.
@Override
public byte[] serialize(Object model) throws IOException {
LinkedBuffer linkedBuffer = LinkedBuffer.allocate();
ProtobufOutput output = new ProtobufOutput(linkedBuffer);
if (model != null) {
rootSchema.writeTo(output, (Root) model);
}
return output.toByteArray();
}
Aggregations