use of com.mongodb.internal.validator.NoOpFieldNameValidator in project mongo-java-driver by mongodb.
the class FindAndUpdateOperation method getValidator.
private FieldNameValidator getValidator() {
Map<String, FieldNameValidator> map = new HashMap<String, FieldNameValidator>();
map.put("update", new UpdateFieldNameValidator());
return new MappedFieldNameValidator(new NoOpFieldNameValidator(), map);
}
use of com.mongodb.internal.validator.NoOpFieldNameValidator in project mongo-java-driver by mongodb.
the class InsertCommandMessage method getFieldNameValidator.
@Override
protected FieldNameValidator getFieldNameValidator() {
Map<String, FieldNameValidator> map = new HashMap<String, FieldNameValidator>();
map.put("documents", new CollectibleDocumentFieldNameValidator());
return new MappedFieldNameValidator(new NoOpFieldNameValidator(), map);
}
use of com.mongodb.internal.validator.NoOpFieldNameValidator in project mongo-java-driver by mongodb.
the class SingleServerClusterTest method shouldSuccessfullyQueryASecondaryWithPrimaryReadPreference.
@Test
public void shouldSuccessfullyQueryASecondaryWithPrimaryReadPreference() {
// given
ServerAddress secondary = getSecondary();
setUpCluster(secondary);
String collectionName = getClass().getName();
Connection connection = cluster.selectServer(new ServerAddressSelector(secondary)).getServer().getConnection();
// when
BsonDocument result = connection.command(getDefaultDatabaseName(), new BsonDocument("count", new BsonString(collectionName)), new NoOpFieldNameValidator(), ReadPreference.primary(), new BsonDocumentCodec(), NoOpSessionContext.INSTANCE, getServerApi(), IgnorableRequestContext.INSTANCE);
// then
assertEquals(new BsonDouble(1.0).intValue(), result.getNumber("ok").intValue());
}
use of com.mongodb.internal.validator.NoOpFieldNameValidator in project mongo-java-driver by mongodb.
the class DeleteMessage method encodeMessageBodyWithMetadata.
@Override
protected EncodingMetadata encodeMessageBodyWithMetadata(final BsonOutput bsonOutput) {
// reserved
bsonOutput.writeInt32(0);
bsonOutput.writeCString(getCollectionName());
if (deleteRequest.isMulti()) {
bsonOutput.writeInt32(0);
} else {
bsonOutput.writeInt32(1);
}
int firstDocumentStartPosition = bsonOutput.getPosition();
addDocument(deleteRequest.getFilter(), bsonOutput, new NoOpFieldNameValidator());
return new EncodingMetadata(firstDocumentStartPosition);
}
use of com.mongodb.internal.validator.NoOpFieldNameValidator in project mongo-java-driver by mongodb.
the class UpdateMessage method encodeMessageBodyWithMetadata.
@Override
protected EncodingMetadata encodeMessageBodyWithMetadata(final BsonOutput bsonOutput) {
// reserved
bsonOutput.writeInt32(0);
bsonOutput.writeCString(getCollectionName());
int flags = 0;
if (updateRequest.isUpsert()) {
flags |= 1;
}
if (updateRequest.isMulti()) {
flags |= 2;
}
bsonOutput.writeInt32(flags);
int firstDocumentStartPosition = bsonOutput.getPosition();
addDocument(updateRequest.getFilter(), bsonOutput, new NoOpFieldNameValidator());
if (updateRequest.getType() == REPLACE && updateRequest.getUpdateValue().isDocument()) {
addDocument(updateRequest.getUpdateValue().asDocument(), bsonOutput, new ReplacingDocumentFieldNameValidator());
} else {
int bufferPosition = bsonOutput.getPosition();
BsonValue update = updateRequest.getUpdateValue();
if (update.isDocument()) {
addDocument(update.asDocument(), bsonOutput, new UpdateFieldNameValidator());
} else {
throw new IllegalArgumentException("Invalid update filter in update request. The filter must be a document.");
}
if (bsonOutput.getPosition() == bufferPosition + 5) {
throw new IllegalArgumentException("Invalid BSON document for an update");
}
}
return new EncodingMetadata(firstDocumentStartPosition);
}
Aggregations