com.github.moaxcp.x11client.protocol.xproto.ListFontsReply 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.XObject;
import com.github.moaxcp.x11client.protocol.XReply;
import java.io.IOException;
import java.lang.Override;
import java.util.ArrayList;
import java.util.List;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;
@Value
@Builder
public class ListFontsReply implements XReply {
private short sequenceNumber;
private short namesLen;
@NonNull
private List names;
public static ListFontsReply readListFontsReply(byte pad, short sequenceNumber, X11Input in)
throws IOException {
int length = in.readCard32();
short namesLen = in.readCard16();
in.readPad(22);
List names = new ArrayList<>(Short.toUnsignedInt(namesLen));
for(int i = 0; i < Short.toUnsignedInt(namesLen); i++) {
names.add(Str.readStr(in));
}
ListFontsReply.ListFontsReplyBuilder javaBuilder = ListFontsReply.builder();
javaBuilder.sequenceNumber(sequenceNumber);
javaBuilder.namesLen(namesLen);
javaBuilder.names(names);
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());
out.writeCard16(namesLen);
out.writePad(22);
for(Str t : names) {
t.write(out);
}
out.writePadAlign(getSize());
}
@Override
public int getSize() {
return 32 + XObject.sizeOf(names);
}
public static class ListFontsReplyBuilder {
public int getSize() {
return 32 + XObject.sizeOf(names);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy