io.resys.thena.docdb.spi.codec.TreeEntryCodec Maven / Gradle / Ivy
package io.resys.thena.docdb.spi.codec;
/*-
* #%L
* hdes-storage-mongodb
* %%
* Copyright (C) 2020 Copyright 2020 ReSys OÜ
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import org.bson.BsonReader;
import org.bson.BsonWriter;
import org.bson.codecs.Codec;
import org.bson.codecs.DecoderContext;
import org.bson.codecs.EncoderContext;
import io.resys.thena.docdb.api.models.ImmutableTreeValue;
import io.resys.thena.docdb.api.models.Objects.TreeValue;
public class TreeEntryCodec implements Codec {
public static final String NAME = "name";
private static final String BLOB = "blob";
@Override
public void encode(BsonWriter writer, TreeValue command, EncoderContext encoderContext) {
writer.writeStartDocument();
writer.writeString(NAME, command.getName());
writer.writeString(BLOB, command.getBlob());
writer.writeEndDocument();
}
@Override
public TreeValue decode(BsonReader reader, DecoderContext decoderContext) {
reader.readStartDocument();
TreeValue result = ImmutableTreeValue.builder()
.name(reader.readString(NAME))
.blob(reader.readString(BLOB))
.build();
reader.readEndDocument();
return result;
}
@Override
public Class getEncoderClass() {
return TreeValue.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy