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

com.github.moaxcp.x11client.protocol.glx.VendorPrivateWithReplyReply Maven / Gradle / Ivy

There is a newer version: 0.18.2
Show newest version
package com.github.moaxcp.x11client.protocol.glx;

import com.github.moaxcp.x11client.protocol.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import com.github.moaxcp.x11client.protocol.XReply;
import java.io.IOException;
import java.lang.Byte;
import java.lang.Override;
import java.util.List;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;

@Value
@Builder
public class VendorPrivateWithReplyReply implements XReply {
  private short sequenceNumber;

  private int retval;

  @NonNull
  private List data1;

  @NonNull
  private List data2;

  public static VendorPrivateWithReplyReply readVendorPrivateWithReplyReply(byte pad,
      short sequenceNumber, X11Input in) throws IOException {
    int length = in.readCard32();
    int retval = in.readCard32();
    List data1 = in.readByte(24);
    List data2 = in.readByte((int) (Integer.toUnsignedLong(length) * 4));
    VendorPrivateWithReplyReply.VendorPrivateWithReplyReplyBuilder javaBuilder = VendorPrivateWithReplyReply.builder();
    javaBuilder.sequenceNumber(sequenceNumber);
    javaBuilder.retval(retval);
    javaBuilder.data1(data1);
    javaBuilder.data2(data2);
    if(javaBuilder.getSize() < 32) {
      in.readPad(32 - javaBuilder.getSize());
    }
    return javaBuilder.build();
  }

  @Override
  public void write(X11Output out) throws IOException {
    out.writeCard8(getResponseCode());
    out.writePad(1);
    out.writeCard16(sequenceNumber);
    int length = data2.size();
    out.writeCard32(getLength());
    out.writeCard32(retval);
    out.writeByte(data1);
    out.writeByte(data2);
    out.writePadAlign(getSize());
  }

  @Override
  public int getSize() {
    return 12 + 1 * data1.size() + 1 * data2.size();
  }

  public static class VendorPrivateWithReplyReplyBuilder {
    public int getSize() {
      return 12 + 1 * data1.size() + 1 * data2.size();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy