com.github.moaxcp.x11.protocol.xkb.GetCompatMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-protocol-xkb Show documentation
Show all versions of x11-protocol-xkb Show documentation
An implementation of the x11 xkb protocol in java
The newest version!
package com.github.moaxcp.x11.protocol.xkb;
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.NonNull;
import lombok.Value;
@Value
@Builder
public class GetCompatMap implements TwoWayRequest {
public static final String PLUGIN_NAME = "xkb";
public static final byte OPCODE = 10;
private short deviceSpec;
private byte groups;
private boolean getAllSI;
private short firstSI;
private short nSI;
public XReplyFunction getReplyFunction() {
return (field, sequenceNumber, in) -> GetCompatMapReply.readGetCompatMapReply(field, sequenceNumber, in);
}
public byte getOpCode() {
return OPCODE;
}
public static GetCompatMap readGetCompatMap(X11Input in) throws IOException {
GetCompatMap.GetCompatMapBuilder javaBuilder = GetCompatMap.builder();
byte majorOpcode = in.readCard8();
short length = in.readCard16();
short deviceSpec = in.readCard16();
byte groups = in.readCard8();
boolean getAllSI = in.readBool();
short firstSI = in.readCard16();
short nSI = in.readCard16();
javaBuilder.deviceSpec(deviceSpec);
javaBuilder.groups(groups);
javaBuilder.getAllSI(getAllSI);
javaBuilder.firstSI(firstSI);
javaBuilder.nSI(nSI);
return javaBuilder.build();
}
@Override
public void write(byte majorOpcode, X11Output out) throws IOException {
out.writeCard8(majorOpcode);
out.writeCard8((byte)(Byte.toUnsignedInt(OPCODE)));
out.writeCard16((short) getLength());
out.writeCard16(deviceSpec);
out.writeCard8(groups);
out.writeBool(getAllSI);
out.writeCard16(firstSI);
out.writeCard16(nSI);
}
public boolean isGroupsEnabled(@NonNull SetOfGroup... maskEnums) {
for(SetOfGroup m : maskEnums) {
if(!m.isEnabled(groups)) {
return false;
}
}
return true;
}
@Override
public int getSize() {
return 12;
}
public String getPluginName() {
return PLUGIN_NAME;
}
public static class GetCompatMapBuilder {
public boolean isGroupsEnabled(@NonNull SetOfGroup... maskEnums) {
for(SetOfGroup m : maskEnums) {
if(!m.isEnabled(groups)) {
return false;
}
}
return true;
}
public GetCompatMap.GetCompatMapBuilder groupsEnable(SetOfGroup... maskEnums) {
for(SetOfGroup m : maskEnums) {
groups((byte) m.enableFor(groups));
}
return this;
}
public GetCompatMap.GetCompatMapBuilder groupsDisable(SetOfGroup... maskEnums) {
for(SetOfGroup m : maskEnums) {
groups((byte) m.disableFor(groups));
}
return this;
}
public int getSize() {
return 12;
}
}
}