mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b1b97b8b45
Summary: Turns out that `SoftAssertions.java` has always been a lie - it actually always throws exceptions. Migrate it to using `ReactSoftException`. This file hasn't been touched at all since it was originally open-sourced, besides codemods! Changelog: [Internal] Reviewed By: mdvacca Differential Revision: D18336020 fbshipit-source-id: cba3db25a9f9d61325dd3f7843e92e984ae56281
53 lines
2.0 KiB
Java
53 lines
2.0 KiB
Java
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
package com.facebook.react.bridge;
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
/**
|
|
* Utility class to make assertions that should not hard-crash the app but instead be handled by the
|
|
* Catalyst app {@link NativeModuleCallExceptionHandler}. See the javadoc on that class for more
|
|
* information about our opinion on when these assertions should be used as opposed to assertions
|
|
* that might throw AssertionError Throwables that will cause the app to hard crash.
|
|
*/
|
|
public class SoftAssertions {
|
|
|
|
/**
|
|
* Throw {@link AssertionException} with a given message. Use this method surrounded with {@code
|
|
* if} block with assert condition in case you plan to do string concatenation to produce the
|
|
* message. This logs an assertion with ReactSoftException, which decides whether or not to
|
|
* actually throw.
|
|
*/
|
|
public static void assertUnreachable(String message) {
|
|
ReactSoftException.logSoftException("SoftAssertions", new AssertionException(message));
|
|
}
|
|
|
|
/**
|
|
* Asserts the given condition, throwing an {@link AssertionException} if the condition doesn't
|
|
* hold. This logs an assertion with ReactSoftException, which decides whether or not to actually
|
|
* throw.
|
|
*/
|
|
public static void assertCondition(boolean condition, String message) {
|
|
if (!condition) {
|
|
ReactSoftException.logSoftException("SoftAssertions", new AssertionException(message));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Asserts that the given Object isn't null, throwing an {@link AssertionException} if it was.
|
|
* This logs an assertion with ReactSoftException, which decides whether or not to actually throw.
|
|
*/
|
|
public static <T> T assertNotNull(@Nullable T instance) {
|
|
if (instance == null) {
|
|
ReactSoftException.logSoftException(
|
|
"SoftAssertions", new AssertionException("Expected object to not be null!"));
|
|
}
|
|
return instance;
|
|
}
|
|
}
|