org.projectnessie.versioned.mongodb.MongoWrappedValue Maven / Gradle / Ivy
/*
* 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 com.google.protobuf.ByteString;
import org.bson.BsonWriter;
import org.bson.Document;
import org.bson.types.Binary;
import org.projectnessie.versioned.tiered.BaseWrappedValue;
class MongoWrappedValue> extends MongoBaseValue
implements BaseWrappedValue {
static final String VALUE = "value";
static > void produce(Document document, C v) {
produceBase(document, v).value(ByteString.copyFrom(((Binary) document.get(VALUE)).getData()));
}
MongoWrappedValue(BsonWriter bsonWriter) {
super(bsonWriter);
}
@SuppressWarnings("unchecked")
@Override
public C value(ByteString value) {
addProperty(VALUE);
bsonWriter.writeBinaryData(VALUE, MongoSerDe.serializeBytes(value));
return (C) this;
}
@Override
BsonWriter build() {
checkPresent(VALUE, "value");
return super.build();
}
}