All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.ext.mongo.impl.Utils Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
/*
 * Copyright 2019 The Vert.x Community.
 *
 * 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 io.vertx.ext.mongo.impl;

import com.mongodb.bulk.BulkWriteResult;
import com.mongodb.client.result.DeleteResult;
import com.mongodb.client.result.UpdateResult;
import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.mongo.MongoClientBulkWriteResult;
import io.vertx.ext.mongo.MongoClientDeleteResult;
import io.vertx.ext.mongo.MongoClientUpdateResult;
import io.vertx.ext.mongo.impl.codec.json.JsonObjectCodec;
import org.bson.BsonDocument;
import org.bson.BsonDocumentReader;
import org.bson.BsonValue;
import org.bson.codecs.DecoderContext;

import java.util.List;
import java.util.Objects;
import java.util.stream.Collectors;

class Utils {
  static final String ID_FIELD = "_id";

  static MongoClientDeleteResult toMongoClientDeleteResult(DeleteResult deleteResult) {
    return deleteResult.wasAcknowledged() ? new MongoClientDeleteResult(deleteResult.getDeletedCount()) : null;
  }

  static MongoClientUpdateResult toMongoClientUpdateResult(UpdateResult updateResult) {
    return updateResult.wasAcknowledged() ? new MongoClientUpdateResult(updateResult.getMatchedCount(), convertWriteResultId(updateResult.getUpsertedId()), updateResult.getModifiedCount()) : null;
  }

  static MongoClientBulkWriteResult toMongoClientBulkWriteResult(BulkWriteResult bulkWriteResult) {
    if (!bulkWriteResult.wasAcknowledged()) {
      return null;
    }

    List upsertResult = bulkWriteResult.getUpserts().stream().map(upsert ->
      convertBulkWriteResultId(upsert.getId(), upsert.getIndex())).collect(Collectors.toList());

    List insertResult = bulkWriteResult.getInserts().stream().map(insert ->
      convertBulkWriteResultId(insert.getId(), insert.getIndex())).collect(Collectors.toList());

    return new MongoClientBulkWriteResult(
      bulkWriteResult.getInsertedCount(),
      bulkWriteResult.getMatchedCount(),
      bulkWriteResult.getDeletedCount(),
      bulkWriteResult.getModifiedCount(),
      upsertResult,
      insertResult
    );
  }

  private static JsonObject convertBulkWriteResultId(BsonValue writeResultId, int resultIdIndex) {
    JsonObject upsertValue = convertWriteResultId(writeResultId);
    upsertValue.put(MongoClientBulkWriteResult.INDEX, resultIdIndex);
    return upsertValue;
  }

  private static JsonObject convertWriteResultId(BsonValue writeResultId) {
    JsonObject jsonUpsertId;
    if (writeResultId != null) {
      JsonObjectCodec jsonObjectCodec = new JsonObjectCodec(new JsonObject());

      BsonDocument upsertIdDocument = new BsonDocument();
      upsertIdDocument.append(ID_FIELD, writeResultId);

      BsonDocumentReader bsonDocumentReader = new BsonDocumentReader(upsertIdDocument);
      jsonUpsertId = jsonObjectCodec.decode(bsonDocumentReader, DecoderContext.builder().build());
    } else {
      jsonUpsertId = null;
    }
    return jsonUpsertId;
  }

  /**
   * Set the {@code handler} on the given {@code future}, if the {@code handler} is not null.
   */
  static  void setHandler(Future future, Handler> handler) {
    Objects.requireNonNull(future, "future must not be null");
    if (handler != null) {
      future.onComplete(handler);
    }
  }

  private Utils() {
    // Utility class
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy