|
99 | 99 | import org.springframework.data.mongodb.core.query.Query;
|
100 | 100 | import org.springframework.data.mongodb.core.query.UpdateDefinition;
|
101 | 101 | import org.springframework.data.mongodb.core.query.UpdateDefinition.ArrayFilter;
|
102 |
| -import org.springframework.data.mongodb.core.timeseries.Granularities; |
| 102 | +import org.springframework.data.mongodb.core.timeseries.Granularity; |
103 | 103 | import org.springframework.data.mongodb.core.validation.Validator;
|
104 | 104 | import org.springframework.data.mongodb.util.BsonUtils;
|
105 | 105 | import org.springframework.data.projection.SpelAwareProxyProjectionFactory;
|
@@ -2436,14 +2436,15 @@ protected MongoCollection<Document> doCreateCollection(String collectionName, Do
|
2436 | 2436 | co.validationOptions(options);
|
2437 | 2437 | }
|
2438 | 2438 |
|
2439 |
| - if(collectionOptions.containsKey("timeseries")) { |
| 2439 | + if (collectionOptions.containsKey("timeseries")) { |
2440 | 2440 |
|
2441 | 2441 | Document timeSeries = collectionOptions.get("timeseries", Document.class);
|
2442 |
| - com.mongodb.client.model.TimeSeriesOptions options = new com.mongodb.client.model.TimeSeriesOptions(timeSeries.getString("timeField")); |
2443 |
| - if(timeSeries.containsKey("metaField")) { |
| 2442 | + com.mongodb.client.model.TimeSeriesOptions options = new com.mongodb.client.model.TimeSeriesOptions( |
| 2443 | + timeSeries.getString("timeField")); |
| 2444 | + if (timeSeries.containsKey("metaField")) { |
2444 | 2445 | options.metaField(timeSeries.getString("metaField"));
|
2445 | 2446 | }
|
2446 |
| - if(timeSeries.containsKey("granularity")) { |
| 2447 | + if (timeSeries.containsKey("granularity")) { |
2447 | 2448 | options.granularity(TimeSeriesGranularity.valueOf(timeSeries.getString("granularity").toUpperCase()));
|
2448 | 2449 | }
|
2449 | 2450 | co.timeSeriesOptions(options);
|
@@ -2604,17 +2605,18 @@ protected Document convertToDocument(@Nullable CollectionOptions collectionOptio
|
2604 | 2605 | collectionOptions.getValidationOptions().ifPresent(it -> it.getValidator() //
|
2605 | 2606 | .ifPresent(val -> doc.put("validator", getMappedValidator(val, targetType))));
|
2606 | 2607 |
|
2607 |
| - collectionOptions.getTimeSeriesOptions().map(operations.forType(targetType)::mapTimeSeriesOptions).ifPresent(it -> { |
| 2608 | + collectionOptions.getTimeSeriesOptions().map(operations.forType(targetType)::mapTimeSeriesOptions) |
| 2609 | + .ifPresent(it -> { |
2608 | 2610 |
|
2609 |
| - Document timeseries = new Document("timeField", it.getTimeField()); |
2610 |
| - if(StringUtils.hasText(it.getMetaField())) { |
2611 |
| - timeseries.append("metaField", it.getMetaField()); |
2612 |
| - } |
2613 |
| - if(!Granularities.DEFAULT.equals(it.getGranularity())) { |
2614 |
| - timeseries.append("granularity", it.getGranularity().name().toLowerCase()); |
2615 |
| - } |
2616 |
| - doc.put("timeseries", timeseries); |
2617 |
| - }); |
| 2611 | + Document timeseries = new Document("timeField", it.getTimeField()); |
| 2612 | + if (StringUtils.hasText(it.getMetaField())) { |
| 2613 | + timeseries.append("metaField", it.getMetaField()); |
| 2614 | + } |
| 2615 | + if (!Granularity.DEFAULT.equals(it.getGranularity())) { |
| 2616 | + timeseries.append("granularity", it.getGranularity().name().toLowerCase()); |
| 2617 | + } |
| 2618 | + doc.put("timeseries", timeseries); |
| 2619 | + }); |
2618 | 2620 | }
|
2619 | 2621 |
|
2620 | 2622 | return doc;
|
@@ -2849,9 +2851,9 @@ private void executeQueryInternal(CollectionCallback<FindIterable<Document>> col
|
2849 | 2851 | .initiateFind(getAndPrepareCollection(doGetDatabase(), collectionName), collectionCallback::doInCollection)
|
2850 | 2852 | .iterator()) {
|
2851 | 2853 |
|
2852 |
| - while (cursor.hasNext()) { |
2853 |
| - callbackHandler.processDocument(cursor.next()); |
2854 |
| - } |
| 2854 | + while (cursor.hasNext()) { |
| 2855 | + callbackHandler.processDocument(cursor.next()); |
| 2856 | + } |
2855 | 2857 | } catch (RuntimeException e) {
|
2856 | 2858 | throw potentiallyConvertRuntimeException(e, exceptionTranslator);
|
2857 | 2859 | }
|
@@ -3175,17 +3177,17 @@ private class ReadDocumentCallback<T> implements DocumentCallback<T> {
|
3175 | 3177 |
|
3176 | 3178 | public T doWith(Document document) {
|
3177 | 3179 |
|
3178 |
| - maybeEmitEvent(new AfterLoadEvent<>(document, type, collectionName)); |
3179 |
| - T entity = reader.read(type, document); |
| 3180 | + maybeEmitEvent(new AfterLoadEvent<>(document, type, collectionName)); |
| 3181 | + T entity = reader.read(type, document); |
3180 | 3182 |
|
3181 |
| - if (entity == null) { |
3182 |
| - throw new MappingException(String.format("EntityReader %s returned null", reader)); |
3183 |
| - } |
| 3183 | + if (entity == null) { |
| 3184 | + throw new MappingException(String.format("EntityReader %s returned null", reader)); |
| 3185 | + } |
3184 | 3186 |
|
3185 |
| - maybeEmitEvent(new AfterConvertEvent<>(document, entity, collectionName)); |
3186 |
| - entity = maybeCallAfterConvert(entity, document, collectionName); |
| 3187 | + maybeEmitEvent(new AfterConvertEvent<>(document, entity, collectionName)); |
| 3188 | + entity = maybeCallAfterConvert(entity, document, collectionName); |
3187 | 3189 |
|
3188 |
| - return entity; |
| 3190 | + return entity; |
3189 | 3191 | }
|
3190 | 3192 | }
|
3191 | 3193 |
|
@@ -3237,8 +3239,8 @@ public T doWith(Document document) {
|
3237 | 3239 |
|
3238 | 3240 | Object result = targetType.isInterface() ? projectionFactory.createProjection(targetType, entity) : entity;
|
3239 | 3241 |
|
3240 |
| - maybeEmitEvent(new AfterConvertEvent<>(document, result, collectionName)); |
3241 |
| - return (T) maybeCallAfterConvert(result, document, collectionName); |
| 3242 | + maybeEmitEvent(new AfterConvertEvent<>(document, result, collectionName)); |
| 3243 | + return (T) maybeCallAfterConvert(result, document, collectionName); |
3242 | 3244 | }
|
3243 | 3245 | }
|
3244 | 3246 |
|
|
0 commit comments