io.activej.fs.tcp._RemoteFsCommands$InfoAll_DslJsonConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activej-fs Show documentation
Show all versions of activej-fs Show documentation
Provides tools for building efficient, scalable local, remote or clustered file servers.
It utilizes ActiveJ CSP for fast and reliable file transfer.
package io.activej.fs.tcp;
public class _RemoteFsCommands$InfoAll_DslJsonConverter implements com.dslplatform.json.Configuration {
private static final java.nio.charset.Charset utf8 = java.nio.charset.Charset.forName("UTF-8");
@Override
public void configure(com.dslplatform.json.DslJson __dsljson) {
ObjectFormatConverter objectConverter = new ObjectFormatConverter(__dsljson);
__dsljson.registerReader(io.activej.fs.tcp.RemoteFsCommands.InfoAll.class, objectConverter);
__dsljson.registerWriter(io.activej.fs.tcp.RemoteFsCommands.InfoAll.class, objectConverter);
}
public final static class ObjectFormatConverter implements com.dslplatform.json.runtime.FormatConverter {
private final boolean alwaysSerialize;
private final com.dslplatform.json.DslJson __dsljson;
private final com.dslplatform.json.JsonReader.ReadObject reader_names;
private final com.dslplatform.json.JsonWriter.WriteObject writer_names;
public ObjectFormatConverter(com.dslplatform.json.DslJson __dsljson) {
this.alwaysSerialize = !__dsljson.omitDefaults;
this.__dsljson = __dsljson;
this.reader_names = com.dslplatform.json.StringConverter.READER;
this.writer_names = com.dslplatform.json.StringConverter.WRITER;
}
private static final byte[] quoted_names = "\"names\":".getBytes(utf8);
private static final byte[] name_names = "names".getBytes(utf8);
public final void write(final com.dslplatform.json.JsonWriter writer, final io.activej.fs.tcp.RemoteFsCommands.InfoAll instance) {
if (instance == null) writer.writeNull();
else {
writer.writeByte((byte)'{');
if (alwaysSerialize) { writeContentFull(writer, instance); writer.writeByte((byte)'}'); }
else if (writeContentMinimal(writer, instance)) writer.getByteBuffer()[writer.size() - 1] = '}';
else writer.writeByte((byte)'}');
}
}
public void writeContentFull(final com.dslplatform.json.JsonWriter writer, final io.activej.fs.tcp.RemoteFsCommands.InfoAll instance) {
writer.writeAscii(quoted_names);
if (instance.getNames() == null) writer.writeNull();
else writer.serialize(instance.getNames(), writer_names);
}
public boolean writeContentMinimal(final com.dslplatform.json.JsonWriter writer, final io.activej.fs.tcp.RemoteFsCommands.InfoAll instance) {
boolean hasWritten = false;
if (instance.getNames() != null) {
writer.writeByte((byte)'"'); writer.writeAscii(name_names); writer.writeByte((byte)'"'); writer.writeByte((byte)':');
writer.serialize(instance.getNames(), writer_names);
writer.writeByte((byte)','); hasWritten = true;
}
return hasWritten;
}
public io.activej.fs.tcp.RemoteFsCommands.InfoAll read(final com.dslplatform.json.JsonReader reader) throws java.io.IOException {
if (reader.wasNull()) return null;
else if (reader.last() != '{') throw reader.newParseError("Expecting '{' for object start");
reader.getNextToken();
return readContent(reader);
}
public io.activej.fs.tcp.RemoteFsCommands.InfoAll readContent(final com.dslplatform.json.JsonReader reader) throws java.io.IOException {
java.util.Set _names_ = null;
if (reader.last() == '}') {
return new io.activej.fs.tcp.RemoteFsCommands.InfoAll(_names_);
}
switch(reader.fillName()) {
case -421170801:
reader.getNextToken();
_names_ = reader.readSet(reader_names);
reader.getNextToken();
break;
default:
reader.getNextToken();
reader.skip();
}
while (reader.last() == ','){
reader.getNextToken();
switch(reader.fillName()) {
case -421170801:
reader.getNextToken();
_names_ = reader.readSet(reader_names);
reader.getNextToken();
break;
default:
reader.getNextToken();
reader.skip();
}
}
if (reader.last() != '}') throw reader.newParseError("Expecting '}' for object end");
return new io.activej.fs.tcp.RemoteFsCommands.InfoAll(_names_);
}
}
}