com.github.moaxcp.x11.protocol.xtest.XtestPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-protocol-xtest Show documentation
Show all versions of x11-protocol-xtest Show documentation
An implementation of the x11 xtest protocol in java
The newest version!
package com.github.moaxcp.x11.protocol.xtest;
import com.github.moaxcp.x11.protocol.X11Input;
import com.github.moaxcp.x11.protocol.XError;
import com.github.moaxcp.x11.protocol.XEvent;
import com.github.moaxcp.x11.protocol.XGenericEvent;
import com.github.moaxcp.x11.protocol.XProtocolPlugin;
import com.github.moaxcp.x11.protocol.XRequest;
import java.io.IOException;
import java.util.Optional;
import lombok.Getter;
import lombok.Setter;
public class XtestPlugin implements XProtocolPlugin {
@Getter
@Setter
private byte majorOpcode;
@Getter
@Setter
private byte firstEvent;
@Getter
@Setter
private byte firstError;
public String getPluginName() {
return "xtest";
}
public Optional getExtensionXName() {
return Optional.ofNullable("XTEST");
}
public Optional getExtensionName() {
return Optional.ofNullable("Test");
}
public Optional getExtensionMultiword() {
return Optional.ofNullable(true);
}
public Optional getMajorVersion() {
return Optional.ofNullable((byte) 2);
}
public Optional getMinorVersion() {
return Optional.ofNullable((byte) 2);
}
@Override
public boolean supportedRequest(XRequest request) {
return request.getPluginName().equals(getPluginName());
}
@Override
public boolean supportedRequest(byte majorOpcode, byte minorOpcode) {
boolean isMajorOpcode = majorOpcode == getMajorOpcode();
if(minorOpcode == 0) {
return isMajorOpcode;
}
if(minorOpcode == 1) {
return isMajorOpcode;
}
if(minorOpcode == 2) {
return isMajorOpcode;
}
if(minorOpcode == 3) {
return isMajorOpcode;
}
return false;
}
@Override
public boolean supportedEvent(byte number) {
return false;
}
@Override
public boolean supportedError(byte code) {
return false;
}
@Override
public XRequest readRequest(byte majorOpcode, byte minorOpcode, X11Input in) throws IOException {
if(minorOpcode == GetVersion.OPCODE) {
return GetVersion.readGetVersion(in);
}
if(minorOpcode == CompareCursor.OPCODE) {
return CompareCursor.readCompareCursor(in);
}
if(minorOpcode == FakeInput.OPCODE) {
return FakeInput.readFakeInput(in);
}
if(minorOpcode == GrabControl.OPCODE) {
return GrabControl.readGrabControl(in);
}
throw new IllegalArgumentException("majorOpcode " + majorOpcode + ", minorOpcode " + minorOpcode + " is not supported");
}
@Override
public XEvent readEvent(byte number, boolean sentEvent, X11Input in) throws IOException {
throw new IllegalArgumentException("number " + number + " is not supported");
}
@Override
public XError readError(byte code, X11Input in) throws IOException {
throw new IllegalArgumentException("code " + code + " is not supported");
}
@Override
public XGenericEvent readGenericEvent(boolean sentEvent, byte extension, short sequenceNumber,
int length, short eventType, X11Input in) throws IOException {
throw new IllegalArgumentException("eventType " + eventType + " is not supported");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy