com.github.moaxcp.x11client.protocol.randr.GetOutputPropertyReply 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.Byte;
import java.lang.Override;
import java.util.List;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;
@Value
@Builder
public class GetOutputPropertyReply implements XReply {
private byte format;
private short sequenceNumber;
private int type;
private int bytesAfter;
private int numItems;
@NonNull
private List data;
public static GetOutputPropertyReply readGetOutputPropertyReply(byte format, short sequenceNumber,
X11Input in) throws IOException {
int length = in.readCard32();
int type = in.readCard32();
int bytesAfter = in.readCard32();
int numItems = in.readCard32();
in.readPad(12);
List data = in.readByte((int) (Integer.toUnsignedLong(numItems) * (Byte.toUnsignedInt(format) / 8)));
GetOutputPropertyReply.GetOutputPropertyReplyBuilder javaBuilder = GetOutputPropertyReply.builder();
javaBuilder.format(format);
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.type(type);
javaBuilder.bytesAfter(bytesAfter);
javaBuilder.numItems(numItems);
javaBuilder.data(data);
if(javaBuilder.getSize() < 32) {
in.readPad(32 - javaBuilder.getSize());
}
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(getResponseCode());
out.writeCard8(format);
out.writeCard16(sequenceNumber);
out.writeCard32(getLength());
out.writeCard32(type);
out.writeCard32(bytesAfter);
out.writeCard32(numItems);
out.writePad(12);
out.writeByte(data);
out.writePadAlign(getSize());
}
@Override
public int getSize() {
return 32 + 1 * data.size();
}
public static class GetOutputPropertyReplyBuilder {
public int getSize() {
return 32 + 1 * data.size();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy