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

com.mongodb.internal.ExceptionUtils Maven / Gradle / Ivy

Go to download

The Java operations layer for the MongoDB Java Driver. Third parties can ' + 'wrap this layer to provide custom higher-level APIs

There is a newer version: 5.3.0-beta0
Show newest version
/*
 * Copyright 2008-present MongoDB, Inc.
 *
 * 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 com.mongodb.internal;

import com.mongodb.MongoCommandException;
import org.bson.BsonArray;
import org.bson.BsonDocument;
import org.bson.BsonInt32;
import org.bson.BsonNumber;
import org.bson.BsonString;
import org.bson.BsonValue;

import java.util.Set;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;

import static com.mongodb.internal.VisibleForTesting.AccessModifier.PRIVATE;

/**
 * 

This class is not part of the public API and may be removed or changed at any time

*/ public final class ExceptionUtils { public static final class MongoCommandExceptionUtils { public static int extractErrorCode(final BsonDocument response) { return extractErrorCodeAsBson(response).intValue(); } public static String extractErrorCodeName(final BsonDocument response) { return extractErrorCodeNameAsBson(response).getValue(); } public static BsonArray extractErrorLabelsAsBson(final BsonDocument response) { return response.getArray("errorLabels", new BsonArray()); } private static BsonNumber extractErrorCodeAsBson(final BsonDocument response) { return response.getNumber("code", new BsonInt32(-1)); } private static BsonString extractErrorCodeNameAsBson(final BsonDocument response) { return response.getString("codeName", new BsonString("")); } /** * Constructs a {@link MongoCommandException} with the data from the {@code original} redacted for security purposes. */ public static MongoCommandException redacted(final MongoCommandException original) { BsonDocument originalResponse = original.getResponse(); BsonDocument redactedResponse = new BsonDocument(); for (SecurityInsensitiveResponseField field : SecurityInsensitiveResponseField.values()) { redactedResponse.append(field.fieldName(), field.fieldValue(originalResponse)); } MongoCommandException result = new MongoCommandException(redactedResponse, original.getServerAddress()); result.setStackTrace(original.getStackTrace()); return result; } @VisibleForTesting(otherwise = PRIVATE) public enum SecurityInsensitiveResponseField { CODE("code", MongoCommandExceptionUtils::extractErrorCodeAsBson), CODE_NAME("codeName", MongoCommandExceptionUtils::extractErrorCodeNameAsBson), ERROR_LABELS("errorLabels", MongoCommandExceptionUtils::extractErrorLabelsAsBson); private final String fieldName; private final Function fieldValueExtractor; SecurityInsensitiveResponseField(final String fieldName, final Function fieldValueExtractor) { this.fieldName = fieldName; this.fieldValueExtractor = fieldValueExtractor; } String fieldName() { return fieldName; } BsonValue fieldValue(final BsonDocument response) { return fieldValueExtractor.apply(response); } @VisibleForTesting(otherwise = PRIVATE) public static Set fieldNames() { return Stream.of(SecurityInsensitiveResponseField.values()) .map(SecurityInsensitiveResponseField::fieldName) .collect(Collectors.toSet()); } } private MongoCommandExceptionUtils() { } } private ExceptionUtils() { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy