com.github.moaxcp.x11client.protocol.xselinux.GetSelectionUseContextReply 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.xselinux;
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.Byte;
import java.lang.Override;
import java.util.List;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;
@Value
@Builder
public class GetSelectionUseContextReply implements XReply {
private short sequenceNumber;
@NonNull
private List context;
public static GetSelectionUseContextReply readGetSelectionUseContextReply(byte pad,
short sequenceNumber, X11Input in) throws IOException {
int length = in.readCard32();
int contextLen = in.readCard32();
in.readPad(20);
List context = in.readChar((int) (Integer.toUnsignedLong(contextLen)));
GetSelectionUseContextReply.GetSelectionUseContextReplyBuilder javaBuilder = GetSelectionUseContextReply.builder();
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.context(context);
if(javaBuilder.getSize() < 32) {
in.readPad(32 - javaBuilder.getSize());
}
return javaBuilder.build();
}
@Override
public void write(X11Output out) throws IOException {
out.writeCard8(getResponseCode());
out.writePad(1);
out.writeCard16(sequenceNumber);
out.writeCard32(getLength());
int contextLen = context.size();
out.writeCard32(contextLen);
out.writePad(20);
out.writeChar(context);
out.writePadAlign(getSize());
}
@Override
public int getSize() {
return 32 + 1 * context.size();
}
public static class GetSelectionUseContextReplyBuilder {
public int getSize() {
return 32 + 1 * context.size();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy