com.github.moaxcp.x11client.protocol.shape.Offset 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.shape;
import com.github.moaxcp.x11client.protocol.OneWayRequest;
import com.github.moaxcp.x11client.protocol.X11Input;
import com.github.moaxcp.x11client.protocol.X11Output;
import java.io.IOException;
import java.lang.Byte;
import java.lang.Override;
import lombok.Builder;
import lombok.Value;
@Value
@Builder
public class Offset implements OneWayRequest {
public static final byte OPCODE = 4;
private byte destinationKind;
private int destinationWindow;
private short xOffset;
private short yOffset;
public byte getOpCode() {
return OPCODE;
}
public static Offset readOffset(X11Input in) throws IOException {
byte destinationKind = in.readCard8();
short length = in.readCard16();
in.readPad(3);
int destinationWindow = in.readCard32();
short xOffset = in.readInt16();
short yOffset = in.readInt16();
Offset.OffsetBuilder javaBuilder = Offset.builder();
javaBuilder.destinationKind(destinationKind);
javaBuilder.destinationWindow(destinationWindow);
javaBuilder.xOffset(xOffset);
javaBuilder.yOffset(yOffset);
in.readPadAlign(javaBuilder.getSize());
return javaBuilder.build();
}
@Override
public void write(byte offset, X11Output out) throws IOException {
out.writeCard8((byte)(Byte.toUnsignedInt(OPCODE) + Byte.toUnsignedInt(offset)));
out.writeCard8(destinationKind);
out.writeCard16((short) getLength());
out.writePad(3);
out.writeCard32(destinationWindow);
out.writeInt16(xOffset);
out.writeInt16(yOffset);
out.writePadAlign(getSize());
}
@Override
public int getSize() {
return 15;
}
public static class OffsetBuilder {
public Offset.OffsetBuilder destinationKind(Sk destinationKind) {
this.destinationKind = (byte) destinationKind.getValue();
return this;
}
public Offset.OffsetBuilder destinationKind(byte destinationKind) {
this.destinationKind = destinationKind;
return this;
}
public int getSize() {
return 15;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy