/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/ExecutableInsertOperationSupport.java

http://github.com/SpringSource/spring-data-mongodb · Java · 139 lines · 60 code · 29 blank · 50 comment · 1 complexity · 075d36c5a376d5b8705b46f8b2727ab7 MD5 · raw file

  1. /*
  2. * Copyright 2017-2021 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * https://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.springframework.data.mongodb.core;
  17. import java.util.ArrayList;
  18. import java.util.Collection;
  19. import org.springframework.data.mongodb.core.BulkOperations.BulkMode;
  20. import org.springframework.lang.Nullable;
  21. import org.springframework.util.Assert;
  22. import org.springframework.util.StringUtils;
  23. import com.mongodb.bulk.BulkWriteResult;
  24. /**
  25. * Implementation of {@link ExecutableInsertOperation}.
  26. *
  27. * @author Christoph Strobl
  28. * @author Mark Paluch
  29. * @since 2.0
  30. */
  31. class ExecutableInsertOperationSupport implements ExecutableInsertOperation {
  32. private final MongoTemplate template;
  33. ExecutableInsertOperationSupport(MongoTemplate template) {
  34. this.template = template;
  35. }
  36. /*
  37. * (non-Javadoc)
  38. * @see org.springframework.data.mongodb.coreExecutableInsertOperation#insert(java.lan.Class)
  39. */
  40. @Override
  41. public <T> ExecutableInsert<T> insert(Class<T> domainType) {
  42. Assert.notNull(domainType, "DomainType must not be null!");
  43. return new ExecutableInsertSupport<>(template, domainType, null, null);
  44. }
  45. /**
  46. * @author Christoph Strobl
  47. * @since 2.0
  48. */
  49. static class ExecutableInsertSupport<T> implements ExecutableInsert<T> {
  50. private final MongoTemplate template;
  51. private final Class<T> domainType;
  52. @Nullable private final String collection;
  53. @Nullable private final BulkMode bulkMode;
  54. ExecutableInsertSupport(MongoTemplate template, Class<T> domainType, String collection, BulkMode bulkMode) {
  55. this.template = template;
  56. this.domainType = domainType;
  57. this.collection = collection;
  58. this.bulkMode = bulkMode;
  59. }
  60. /*
  61. * (non-Javadoc)
  62. * @see org.springframework.data.mongodb.core.ExecutableInsertOperation.TerminatingInsert#insert(java.lang.Class)
  63. */
  64. @Override
  65. public T one(T object) {
  66. Assert.notNull(object, "Object must not be null!");
  67. return template.insert(object, getCollectionName());
  68. }
  69. /*
  70. * (non-Javadoc)
  71. * @see org.springframework.data.mongodb.core.ExecutableInsertOperation.TerminatingInsert#all(java.util.Collection)
  72. */
  73. @Override
  74. public Collection<T> all(Collection<? extends T> objects) {
  75. Assert.notNull(objects, "Objects must not be null!");
  76. return template.insert(objects, getCollectionName());
  77. }
  78. /*
  79. * (non-Javadoc)
  80. * @see org.springframework.data.mongodb.core.ExecutableInsertOperation.TerminatingBulkInsert#bulk(java.util.Collection)
  81. */
  82. @Override
  83. public BulkWriteResult bulk(Collection<? extends T> objects) {
  84. Assert.notNull(objects, "Objects must not be null!");
  85. return template.bulkOps(bulkMode != null ? bulkMode : BulkMode.ORDERED, domainType, getCollectionName())
  86. .insert(new ArrayList<>(objects)).execute();
  87. }
  88. /*
  89. * (non-Javadoc)
  90. * @see org.springframework.data.mongodb.core.ExecutableInsertOperation.InsertWithCollection#inCollection(java.lang.String)
  91. */
  92. @Override
  93. public InsertWithBulkMode<T> inCollection(String collection) {
  94. Assert.hasText(collection, "Collection must not be null nor empty.");
  95. return new ExecutableInsertSupport<>(template, domainType, collection, bulkMode);
  96. }
  97. /*
  98. * (non-Javadoc)
  99. * @see org.springframework.data.mongodb.core.ExecutableInsertOperation.InsertWithBulkMode#withBulkMode(org.springframework.data.mongodb.core.BulkMode)
  100. */
  101. @Override
  102. public TerminatingBulkInsert<T> withBulkMode(BulkMode bulkMode) {
  103. Assert.notNull(bulkMode, "BulkMode must not be null!");
  104. return new ExecutableInsertSupport<>(template, domainType, collection, bulkMode);
  105. }
  106. private String getCollectionName() {
  107. return StringUtils.hasText(collection) ? collection : template.getCollectionName(domainType);
  108. }
  109. }
  110. }