io.resys.hdes.object.repo.mongodb.codecs.BlobCodec Maven / Gradle / Ivy
package io.resys.hdes.object.repo.mongodb.codecs;
/*-
* #%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.hdes.object.repo.api.ImmutableBlob;
import io.resys.hdes.object.repo.api.ObjectRepository.Blob;
public class BlobCodec implements Codec {
public static final String ID = "_id";
private static final String VALUE = "value";
@Override
public void encode(BsonWriter writer, Blob command, EncoderContext encoderContext) {
writer.writeStartDocument();
writer.writeString(ID, command.getId());
writer.writeString(VALUE, command.getValue());
writer.writeEndDocument();
}
@Override
public Blob decode(BsonReader reader, DecoderContext decoderContext) {
reader.readStartDocument();
Blob result = ImmutableBlob.builder()
.id(reader.readString(ID))
.value(reader.readString(VALUE))
.build();
reader.readEndDocument();
return result;
}
@Override
public Class getEncoderClass() {
return Blob.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy