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

it.auties.whatsapp.model.sync.PrimaryFeatureSpec Maven / Gradle / Ivy

package it.auties.whatsapp.model.sync;

import it.auties.whatsapp.model.sync.PrimaryFeature;
import it.auties.protobuf.stream.ProtobufInputStream;
import it.auties.protobuf.stream.ProtobufOutputStream;
import it.auties.protobuf.model.ProtobufWireType;

public class PrimaryFeatureSpec {
    public static byte[] encode(PrimaryFeature protoInputObject) {
        if (protoInputObject == null) {
            return null;
        }
        var outputStream = new ProtobufOutputStream(sizeOf(protoInputObject));
        if (protoInputObject.flags() != null) {
            for (var flagsEntry : protoInputObject.flags()) { 
                outputStream.writeString(1, flagsEntry);
            }
        }
        return outputStream.toByteArray();
    }

    public static PrimaryFeature decode(byte[] input) {
        if (input == null) {
            return null;
        }
        var protoInputStream = new ProtobufInputStream(input);
        java.util.List flags = it.auties.protobuf.builtin.ProtobufRepeatedMixin.newList();
        while (protoInputStream.readTag()) {
            var protoFieldIndex = protoInputStream.index();
            switch (protoFieldIndex) {
                case 1 -> flags.add(protoInputStream.readString());
                default -> protoInputStream.skipBytes();
            }
        }
        return new it.auties.whatsapp.model.sync.PrimaryFeature(flags);
    }

    public static int sizeOf(PrimaryFeature object) {
        if (object == null) {
            return 0;
        }
        var protoSize = 0;
        var flagsRepeatedField = object.flags();
        if (flagsRepeatedField != null) {
            for (var flagsEntry : flagsRepeatedField) { 
                if (flagsEntry != null) {
                    protoSize += ProtobufOutputStream.getFieldSize(1, 2);
                    protoSize += ProtobufOutputStream.getStringSize(flagsEntry);
                }
            }
        }
        return protoSize;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy