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

com.github.moaxcp.x11client.protocol.xselinux.ListSelectionsReply Maven / Gradle / Ivy

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

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

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

  private int selectionsLen;

  @NonNull
  private List selections;

  public static ListSelectionsReply readListSelectionsReply(byte pad, short sequenceNumber,
      X11Input in) throws IOException {
    int length = in.readCard32();
    int selectionsLen = in.readCard32();
    in.readPad(20);
    List selections = new ArrayList<>((int) (Integer.toUnsignedLong(selectionsLen)));
    for(int i = 0; i < Integer.toUnsignedLong(selectionsLen); i++) {
      selections.add(ListItem.readListItem(in));
    }
    ListSelectionsReply.ListSelectionsReplyBuilder javaBuilder = ListSelectionsReply.builder();
    javaBuilder.sequenceNumber(sequenceNumber);
    javaBuilder.selectionsLen(selectionsLen);
    javaBuilder.selections(selections);
    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);
    out.writeCard32(getLength());
    out.writeCard32(selectionsLen);
    out.writePad(20);
    for(ListItem t : selections) {
      t.write(out);
    }
    out.writePadAlign(getSize());
  }

  @Override
  public int getSize() {
    return 32 + XObject.sizeOf(selections);
  }

  public static class ListSelectionsReplyBuilder {
    public int getSize() {
      return 32 + XObject.sizeOf(selections);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy