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

com.github.moaxcp.x11.protocol.xproto.ListHosts Maven / Gradle / Ivy

package com.github.moaxcp.x11.protocol.xproto;

import com.github.moaxcp.x11.protocol.TwoWayRequest;
import com.github.moaxcp.x11.protocol.X11Input;
import com.github.moaxcp.x11.protocol.X11Output;
import com.github.moaxcp.x11.protocol.XReplyFunction;
import java.io.IOException;
import lombok.Builder;
import lombok.Value;

@Value
@Builder
public class ListHosts implements TwoWayRequest {
  public static final String PLUGIN_NAME = "xproto";

  public static final byte OPCODE = 110;

  public XReplyFunction getReplyFunction() {
    return (field, sequenceNumber, in) -> ListHostsReply.readListHostsReply(field, sequenceNumber, in);
  }

  public byte getOpCode() {
    return OPCODE;
  }

  public static ListHosts readListHosts(X11Input in) throws IOException {
    ListHosts.ListHostsBuilder javaBuilder = ListHosts.builder();
    byte[] pad1 = in.readPad(1);
    short length = in.readCard16();
    return javaBuilder.build();
  }

  @Override
  public void write(byte majorOpcode, X11Output out) throws IOException {
    out.writeCard8((byte)(Byte.toUnsignedInt(OPCODE)));
    out.writePad(1);
    out.writeCard16((short) getLength());
  }

  @Override
  public int getSize() {
    return 4;
  }

  public String getPluginName() {
    return PLUGIN_NAME;
  }

  public static class ListHostsBuilder {
    public int getSize() {
      return 4;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy