use of com.mongodb.client.model.IndexModel in project mongo-java-driver by mongodb.
the class MongoCollectionImpl method createIndexes.
@Override
public List<String> createIndexes(final List<IndexModel> indexes) {
notNull("indexes", indexes);
List<IndexRequest> indexRequests = new ArrayList<IndexRequest>(indexes.size());
for (IndexModel model : indexes) {
if (model == null) {
throw new IllegalArgumentException("indexes can not contain a null value");
}
indexRequests.add(new IndexRequest(toBsonDocument(model.getKeys())).name(model.getOptions().getName()).background(model.getOptions().isBackground()).unique(model.getOptions().isUnique()).sparse(model.getOptions().isSparse()).expireAfter(model.getOptions().getExpireAfter(TimeUnit.SECONDS), TimeUnit.SECONDS).version(model.getOptions().getVersion()).weights(toBsonDocument(model.getOptions().getWeights())).defaultLanguage(model.getOptions().getDefaultLanguage()).languageOverride(model.getOptions().getLanguageOverride()).textVersion(model.getOptions().getTextVersion()).sphereVersion(model.getOptions().getSphereVersion()).bits(model.getOptions().getBits()).min(model.getOptions().getMin()).max(model.getOptions().getMax()).bucketSize(model.getOptions().getBucketSize()).storageEngine(toBsonDocument(model.getOptions().getStorageEngine())).partialFilterExpression(toBsonDocument(model.getOptions().getPartialFilterExpression())).collation(model.getOptions().getCollation()));
}
CreateIndexesOperation createIndexesOperation = new CreateIndexesOperation(getNamespace(), indexRequests, writeConcern);
executor.execute(createIndexesOperation);
return createIndexesOperation.getIndexNames();
}
use of com.mongodb.client.model.IndexModel in project mongo-java-driver by mongodb.
the class MongoCollectionImpl method createIndexes.
@Override
public void createIndexes(final List<IndexModel> indexes, final SingleResultCallback<List<String>> callback) {
notNull("indexes", indexes);
List<IndexRequest> indexRequests = new ArrayList<IndexRequest>(indexes.size());
for (IndexModel model : indexes) {
if (model == null) {
throw new IllegalArgumentException("indexes can not contain a null value");
}
indexRequests.add(new IndexRequest(toBsonDocument(model.getKeys())).name(model.getOptions().getName()).background(model.getOptions().isBackground()).unique(model.getOptions().isUnique()).sparse(model.getOptions().isSparse()).expireAfter(model.getOptions().getExpireAfter(TimeUnit.SECONDS), TimeUnit.SECONDS).version(model.getOptions().getVersion()).weights(toBsonDocument(model.getOptions().getWeights())).defaultLanguage(model.getOptions().getDefaultLanguage()).languageOverride(model.getOptions().getLanguageOverride()).textVersion(model.getOptions().getTextVersion()).sphereVersion(model.getOptions().getSphereVersion()).bits(model.getOptions().getBits()).min(model.getOptions().getMin()).max(model.getOptions().getMax()).bucketSize(model.getOptions().getBucketSize()).storageEngine(toBsonDocument(model.getOptions().getStorageEngine())).partialFilterExpression(toBsonDocument(model.getOptions().getPartialFilterExpression())).collation(model.getOptions().getCollation()));
}
final CreateIndexesOperation createIndexesOperation = new CreateIndexesOperation(getNamespace(), indexRequests, writeConcern);
executor.execute(createIndexesOperation, new SingleResultCallback<Void>() {
@Override
public void onResult(final Void result, final Throwable t) {
if (t != null) {
callback.onResult(null, t);
} else {
callback.onResult(createIndexesOperation.getIndexNames(), null);
}
}
});
}
use of com.mongodb.client.model.IndexModel in project mongo-java-driver by mongodb.
the class Operations method createIndexes.
@SuppressWarnings("deprecation")
public CreateIndexesOperation createIndexes(final List<IndexModel> indexes, final CreateIndexOptions createIndexOptions) {
notNull("indexes", indexes);
notNull("createIndexOptions", createIndexOptions);
List<IndexRequest> indexRequests = new ArrayList<>(indexes.size());
for (IndexModel model : indexes) {
if (model == null) {
throw new IllegalArgumentException("indexes can not contain a null value");
}
indexRequests.add(new IndexRequest(toBsonDocument(model.getKeys())).name(model.getOptions().getName()).background(model.getOptions().isBackground()).unique(model.getOptions().isUnique()).sparse(model.getOptions().isSparse()).expireAfter(model.getOptions().getExpireAfter(TimeUnit.SECONDS), TimeUnit.SECONDS).version(model.getOptions().getVersion()).weights(toBsonDocument(model.getOptions().getWeights())).defaultLanguage(model.getOptions().getDefaultLanguage()).languageOverride(model.getOptions().getLanguageOverride()).textVersion(model.getOptions().getTextVersion()).sphereVersion(model.getOptions().getSphereVersion()).bits(model.getOptions().getBits()).min(model.getOptions().getMin()).max(model.getOptions().getMax()).bucketSize(model.getOptions().getBucketSize()).storageEngine(toBsonDocument(model.getOptions().getStorageEngine())).partialFilterExpression(toBsonDocument(model.getOptions().getPartialFilterExpression())).collation(model.getOptions().getCollation()).wildcardProjection(toBsonDocument(model.getOptions().getWildcardProjection())).hidden(model.getOptions().isHidden()));
}
return new CreateIndexesOperation(namespace, indexRequests, writeConcern).maxTime(createIndexOptions.getMaxTime(MILLISECONDS), MILLISECONDS).commitQuorum(createIndexOptions.getCommitQuorum());
}
use of com.mongodb.client.model.IndexModel in project mongo-java-driver by mongodb.
the class MongoCollectionImplTest method testCreateIndexes.
@Test
public void testCreateIndexes() {
Bson key = BsonDocument.parse("{key: 1}");
CreateIndexOptions createIndexOptions = new CreateIndexOptions();
CreateIndexOptions customCreateIndexOptions = new CreateIndexOptions().commitQuorum(CreateIndexCommitQuorum.VOTING_MEMBERS);
List<IndexModel> indexes = singletonList(new IndexModel(key, new IndexOptions().background(true).bits(9)));
assertAll("createIndexes", () -> assertAll("check validation", () -> assertThrows(IllegalArgumentException.class, () -> collection.createIndexes(null)), () -> assertThrows(IllegalArgumentException.class, () -> collection.createIndexes(indexes, null)), () -> assertThrows(IllegalArgumentException.class, () -> collection.createIndexes(clientSession, null)), () -> assertThrows(IllegalArgumentException.class, () -> collection.createIndexes(clientSession, indexes, null)), () -> assertThrows(IllegalArgumentException.class, () -> collection.createIndexes(null, indexes)), () -> assertThrows(IllegalArgumentException.class, () -> collection.createIndexes(null, indexes, createIndexOptions))), () -> {
Publisher<String> expected = mongoOperationPublisher.createIndexes(null, indexes, createIndexOptions);
assertPublisherIsTheSameAs(expected, collection.createIndexes(indexes), "Default");
}, () -> {
Publisher<String> expected = mongoOperationPublisher.createIndexes(null, indexes, customCreateIndexOptions);
assertPublisherIsTheSameAs(expected, collection.createIndexes(indexes, customCreateIndexOptions), "With custom options");
}, () -> {
Publisher<String> expected = mongoOperationPublisher.createIndexes(clientSession, indexes, createIndexOptions);
assertPublisherIsTheSameAs(expected, collection.createIndexes(clientSession, indexes), "With client session");
}, () -> {
Publisher<String> expected = mongoOperationPublisher.createIndexes(clientSession, indexes, customCreateIndexOptions);
assertPublisherIsTheSameAs(expected, collection.createIndexes(clientSession, indexes, customCreateIndexOptions), "With client session, & custom options");
});
}
Aggregations