com.github.moaxcp.x11.protocol.xproto.SetupAuthenticate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-protocol-xproto Show documentation
Show all versions of x11-protocol-xproto Show documentation
An implementation of the x11 xproto protocol in java
The newest version!
package com.github.moaxcp.x11.protocol.xproto;
import com.github.moaxcp.x11.protocol.X11Input;
import com.github.moaxcp.x11.protocol.X11Output;
import com.github.moaxcp.x11.protocol.XStruct;
import java.io.IOException;
import java.util.List;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;
@Value
@Builder
public class SetupAuthenticate implements XStruct {
public static final String PLUGIN_NAME = "xproto";
private byte status;
@NonNull
private List reason;
public static SetupAuthenticate readSetupAuthenticate(X11Input in) throws IOException {
SetupAuthenticate.SetupAuthenticateBuilder javaBuilder = SetupAuthenticate.builder();
byte status = in.readCard8();
byte[] pad1 = in.readPad(5);
short length = in.readCard16();
List reason = in.readChar(Short.toUnsignedInt(length) * 4);
javaBuilder.status(status);
javaBuilder.reason(reason);
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(status);
out.writePad(5);
short length = (short) reason.size();
out.writeCard16(length);
out.writeChar(reason);
}
@Override
public int getSize() {
return 8 + 1 * reason.size();
}
public String getPluginName() {
return PLUGIN_NAME;
}
public static class SetupAuthenticateBuilder {
public int getSize() {
return 8 + 1 * reason.size();
}
}
}