com.github.moaxcp.x11client.protocol.randr.QueryOutputPropertyReply Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-client Show documentation
Show all versions of x11-client Show documentation
An x11 client implemented in java
package com.github.moaxcp.x11client.protocol.randr;
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.Integer;
import java.lang.Override;
import java.util.List;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;
@Value
@Builder
public class QueryOutputPropertyReply implements XReply {
private short sequenceNumber;
private boolean pending;
private boolean range;
private boolean immutable;
@NonNull
private List validValues;
public static QueryOutputPropertyReply readQueryOutputPropertyReply(byte pad,
short sequenceNumber, X11Input in) throws IOException {
int length = in.readCard32();
boolean pending = in.readBool();
boolean range = in.readBool();
boolean immutable = in.readBool();
in.readPad(21);
List validValues = in.readInt32((int) (Integer.toUnsignedLong(length)));
QueryOutputPropertyReply.QueryOutputPropertyReplyBuilder javaBuilder = QueryOutputPropertyReply.builder();
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.pending(pending);
javaBuilder.range(range);
javaBuilder.immutable(immutable);
javaBuilder.validValues(validValues);
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 = validValues.size();
out.writeCard32(getLength());
out.writeBool(pending);
out.writeBool(range);
out.writeBool(immutable);
out.writePad(21);
out.writeInt32(validValues);
out.writePadAlign(getSize());
}
@Override
public int getSize() {
return 32 + 4 * validValues.size();
}
public static class QueryOutputPropertyReplyBuilder {
public int getSize() {
return 32 + 4 * validValues.size();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy