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

org.projectnessie.versioned.mongodb.MongoFragment Maven / Gradle / Ivy

There is a newer version: 0.9.2
Show newest version
/*
 * Copyright (C) 2020 Dremio
 *
 * 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.
 */
package org.projectnessie.versioned.mongodb;

import static org.projectnessie.versioned.mongodb.MongoSerDe.deserializeKeys;

import java.util.stream.Stream;
import org.bson.BsonWriter;
import org.bson.Document;
import org.projectnessie.versioned.Key;
import org.projectnessie.versioned.WithPayload;
import org.projectnessie.versioned.tiered.Fragment;

final class MongoFragment extends MongoBaseValue implements Fragment {
  static final String KEY_LIST = "keys";

  static void produce(Document document, Fragment v) {
    produceBase(document, v).keys(deserializeKeys(document, KEY_LIST));
  }

  MongoFragment(BsonWriter bsonWriter) {
    super(bsonWriter);
  }

  @Override
  public Fragment keys(Stream> keys) {
    addProperty(KEY_LIST);
    bsonWriter.writeStartArray(KEY_LIST);
    keys.forEach(
        k -> {
          String payload =
              k.getPayload() == null
                  ? Character.toString(MongoSerDe.ZERO_BYTE)
                  : k.getPayload().toString();
          bsonWriter.writeStartArray();
          bsonWriter.writeString(payload);
          k.getValue().getElements().forEach(bsonWriter::writeString);
          bsonWriter.writeEndArray();
        });
    bsonWriter.writeEndArray();
    return this;
  }

  @Override
  BsonWriter build() {
    checkPresent(KEY_LIST, "keys");

    return super.build();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy