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

com.github.moaxcp.x11client.protocol.glx.QueryServerStringReply 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 QueryServerStringReply implements XReply {
  private short sequenceNumber;

  @NonNull
  private List string;

  public static QueryServerStringReply readQueryServerStringReply(byte pad, short sequenceNumber,
      X11Input in) throws IOException {
    int length = in.readCard32();
    in.readPad(4);
    int strLen = in.readCard32();
    in.readPad(16);
    List string = in.readChar((int) (Integer.toUnsignedLong(strLen)));
    QueryServerStringReply.QueryServerStringReplyBuilder javaBuilder = QueryServerStringReply.builder();
    javaBuilder.sequenceNumber(sequenceNumber);
    javaBuilder.string(string);
    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.writePad(4);
    int strLen = string.size();
    out.writeCard32(strLen);
    out.writePad(16);
    out.writeChar(string);
    out.writePadAlign(getSize());
  }

  @Override
  public int getSize() {
    return 32 + 1 * string.size();
  }

  public static class QueryServerStringReplyBuilder {
    public int getSize() {
      return 32 + 1 * string.size();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy