com.mongodb.operation.CommandResultArrayCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-driver-core Show documentation
Show all versions of mongodb-driver-core Show documentation
The Java operations layer for the MongoDB Java Driver. Third parties can ' +
'wrap this layer to provide custom higher-level APIs
/*
* Copyright 2008-present MongoDB, Inc.
*
* 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 com.mongodb.operation;
import org.bson.BsonArray;
import org.bson.BsonDocumentWrapper;
import org.bson.BsonReader;
import org.bson.BsonType;
import org.bson.BsonValue;
import org.bson.codecs.BsonArrayCodec;
import org.bson.codecs.Decoder;
import org.bson.codecs.DecoderContext;
import org.bson.codecs.configuration.CodecRegistry;
import java.util.ArrayList;
import java.util.List;
import static org.bson.BsonType.DOCUMENT;
class CommandResultArrayCodec extends BsonArrayCodec {
private final Decoder decoder;
CommandResultArrayCodec(final CodecRegistry registry, final Decoder decoder) {
super(registry);
this.decoder = decoder;
}
@Override
public BsonArray decode(final BsonReader reader, final DecoderContext decoderContext) {
reader.readStartArray();
List list = new ArrayList();
while (reader.readBsonType() != BsonType.END_OF_DOCUMENT) {
if (reader.getCurrentBsonType() == BsonType.NULL) {
reader.readNull();
list.add(null);
} else {
list.add(decoder.decode(reader, decoderContext));
}
}
reader.readEndArray();
return new BsonArrayWrapper(list);
}
@Override
protected BsonValue readValue(final BsonReader reader, final DecoderContext decoderContext) {
if (reader.getCurrentBsonType() == DOCUMENT) {
return new BsonDocumentWrapper(decoder.decode(reader, decoderContext), null);
} else {
return super.readValue(reader, decoderContext);
}
}
}