com.github.moaxcp.x11.protocol.xproto.GetProperty 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.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 GetProperty implements TwoWayRequest {
public static final String PLUGIN_NAME = "xproto";
public static final byte OPCODE = 20;
private boolean delete;
private int window;
private int property;
private int type;
private int longOffset;
private int longLength;
public XReplyFunction getReplyFunction() {
return (field, sequenceNumber, in) -> GetPropertyReply.readGetPropertyReply(field, sequenceNumber, in);
}
public byte getOpCode() {
return OPCODE;
}
public static GetProperty readGetProperty(X11Input in) throws IOException {
GetProperty.GetPropertyBuilder javaBuilder = GetProperty.builder();
boolean delete = in.readBool();
short length = in.readCard16();
int window = in.readCard32();
int property = in.readCard32();
int type = in.readCard32();
int longOffset = in.readCard32();
int longLength = in.readCard32();
javaBuilder.delete(delete);
javaBuilder.window(window);
javaBuilder.property(property);
javaBuilder.type(type);
javaBuilder.longOffset(longOffset);
javaBuilder.longLength(longLength);
return javaBuilder.build();
}
@Override
public void write(byte majorOpcode, X11Output out) throws IOException {
out.writeCard8((byte)(Byte.toUnsignedInt(OPCODE)));
out.writeBool(delete);
out.writeCard16((short) getLength());
out.writeCard32(window);
out.writeCard32(property);
out.writeCard32(type);
out.writeCard32(longOffset);
out.writeCard32(longLength);
}
@Override
public int getSize() {
return 24;
}
public String getPluginName() {
return PLUGIN_NAME;
}
public static class GetPropertyBuilder {
public int getSize() {
return 24;
}
}
}