All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.auties.whatsapp.model.message.server.DeviceSyncMessageSpec Maven / Gradle / Ivy

package it.auties.whatsapp.model.message.server;

import it.auties.whatsapp.model.message.server.DeviceSyncMessage;
import it.auties.protobuf.stream.ProtobufInputStream;
import it.auties.protobuf.stream.ProtobufOutputStream;
import it.auties.protobuf.model.ProtobufWireType;

public class DeviceSyncMessageSpec {
    public static byte[] encode(DeviceSyncMessage protoInputObject) {
        if (protoInputObject == null) {
            return null;
        }
        var outputStream = new ProtobufOutputStream(sizeOf(protoInputObject));
        outputStream.writeBytes(1, protoInputObject.serializedXmlBytes());
        return outputStream.toByteArray();
    }

    public static DeviceSyncMessage decode(byte[] input) {
        if (input == null) {
            return null;
        }
        var protoInputStream = new ProtobufInputStream(input);
        byte[] serializedXmlBytes = null;
        while (protoInputStream.readTag()) {
            var protoFieldIndex = protoInputStream.index();
            switch (protoFieldIndex) {
                case 1 -> serializedXmlBytes = protoInputStream.readBytes();
                default -> protoInputStream.skipBytes();
            }
        }
        return new it.auties.whatsapp.model.message.server.DeviceSyncMessage(serializedXmlBytes);
    }

    public static int sizeOf(DeviceSyncMessage object) {
        if (object == null) {
            return 0;
        }
        var protoSize = 0;
        var serializedXmlBytes = object.serializedXmlBytes();
        if (serializedXmlBytes != null) {
            protoSize += ProtobufOutputStream.getFieldSize(1, 2);
            protoSize += ProtobufOutputStream.getBytesSize(serializedXmlBytes);
        }
        return protoSize;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy