com.github.moaxcp.x11client.protocol.xproto.GetKeyboardMappingReply 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.xproto;
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 GetKeyboardMappingReply implements XReply {
private byte keysymsPerKeycode;
private short sequenceNumber;
@NonNull
private List keysyms;
public static GetKeyboardMappingReply readGetKeyboardMappingReply(byte keysymsPerKeycode,
short sequenceNumber, X11Input in) throws IOException {
int length = in.readCard32();
in.readPad(24);
List keysyms = in.readCard32((int) (Integer.toUnsignedLong(length)));
GetKeyboardMappingReply.GetKeyboardMappingReplyBuilder javaBuilder = GetKeyboardMappingReply.builder();
javaBuilder.keysymsPerKeycode(keysymsPerKeycode);
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.keysyms(keysyms);
if(javaBuilder.getSize() < 32) {
in.readPad(32 - javaBuilder.getSize());
}
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(getResponseCode());
out.writeByte(keysymsPerKeycode);
out.writeCard16(sequenceNumber);
int length = keysyms.size();
out.writeCard32(getLength());
out.writePad(24);
out.writeCard32(keysyms);
out.writePadAlign(getSize());
}
@Override
public int getSize() {
return 32 + 4 * keysyms.size();
}
public static class GetKeyboardMappingReplyBuilder {
public int getSize() {
return 32 + 4 * keysyms.size();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy