All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.resys.hdes.object.repo.mongodb.codecs.TreeEntryCodec Maven / Gradle / Ivy

There is a newer version: 0.1.11
Show newest version
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.ImmutableTreeEntry;
import io.resys.hdes.object.repo.api.ObjectRepository.TreeEntry;


public class TreeEntryCodec implements Codec {
  
  public static final String NAME = "name";
  private static final String BLOB = "blob";
  
  @Override
  public void encode(BsonWriter writer, TreeEntry command, EncoderContext encoderContext) {
    writer.writeStartDocument();
    writer.writeString(NAME, command.getName());
    writer.writeString(BLOB, command.getBlob());
    writer.writeEndDocument();
  }

  @Override
  public TreeEntry decode(BsonReader reader, DecoderContext decoderContext) {
    reader.readStartDocument();
    TreeEntry result = ImmutableTreeEntry.builder()
      .name(reader.readString(NAME))
      .blob(reader.readString(BLOB))
      .build();
    reader.readEndDocument();
    return result;
  }

  @Override
  public Class getEncoderClass() {
    return TreeEntry.class;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy