package kotlin.jvm.internal; import C.w; import java.util.Arrays; import kotlin.KotlinNullPointerException; import kotlin.SinceKotlin; import kotlin.UninitializedPropertyAccessException; /* loaded from: classes3.dex */ public class Intrinsics { @SinceKotlin(version = "1.4") /* loaded from: classes3.dex */ public static class Kotlin { private Kotlin() { } } private Intrinsics() { } public static boolean areEqual(Object obj, Object obj2) { if (obj == null) { return obj2 == null; } return obj.equals(obj2); } public static void checkExpressionValueIsNotNull(Object obj, String str) { if (obj == null) { throw ((IllegalStateException) sanitizeStackTrace(new IllegalStateException(w.n(str, " must not be null")))); } } public static void checkFieldIsNotNull(Object obj, String str, String str2) { if (obj != null) { return; } throw ((IllegalStateException) sanitizeStackTrace(new IllegalStateException("Field specified as non-null is null: " + str + "." + str2))); } public static void checkHasClass(String str) throws ClassNotFoundException { String replace = str.replace('/', '.'); try { Class.forName(replace); } catch (ClassNotFoundException e4) { throw ((ClassNotFoundException) sanitizeStackTrace(new ClassNotFoundException(w.o("Class ", replace, " is not found. Please update the Kotlin runtime to the latest version"), e4))); } } public static void checkNotNull(Object obj) { if (obj == null) { throwJavaNpe(); } } public static void checkNotNullExpressionValue(Object obj, String str) { if (obj == null) { throw ((NullPointerException) sanitizeStackTrace(new NullPointerException(w.n(str, " must not be null")))); } } public static void checkNotNullParameter(Object obj, String str) { if (obj == null) { throwParameterIsNullNPE(str); } } public static void checkParameterIsNotNull(Object obj, String str) { if (obj == null) { throwParameterIsNullIAE(str); } } public static void checkReturnedValueIsNotNull(Object obj, String str, String str2) { if (obj != null) { return; } throw ((IllegalStateException) sanitizeStackTrace(new IllegalStateException("Method specified as non-null returned null: " + str + "." + str2))); } public static int compare(int i, int i4) { if (i < i4) { return -1; } return i == i4 ? 0 : 1; } private static String createParameterIsNullExceptionMessage(String str) { StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace(); String name = Intrinsics.class.getName(); int i = 0; while (!stackTrace[i].getClassName().equals(name)) { i++; } while (stackTrace[i].getClassName().equals(name)) { i++; } StackTraceElement stackTraceElement = stackTrace[i]; return "Parameter specified as non-null is null: method " + stackTraceElement.getClassName() + "." + stackTraceElement.getMethodName() + ", parameter " + str; } public static void needClassReification() { throwUndefinedForReified(); } public static void reifiedOperationMarker(int i, String str) { throwUndefinedForReified(); } private static T sanitizeStackTrace(T t2) { return (T) sanitizeStackTrace(t2, Intrinsics.class.getName()); } public static String stringPlus(String str, Object obj) { return str + obj; } public static void throwAssert() { throw ((AssertionError) sanitizeStackTrace(new AssertionError())); } public static void throwIllegalArgument() { throw ((IllegalArgumentException) sanitizeStackTrace(new IllegalArgumentException())); } public static void throwIllegalState() { throw ((IllegalStateException) sanitizeStackTrace(new IllegalStateException())); } @SinceKotlin(version = "1.4") public static void throwJavaNpe() { throw ((NullPointerException) sanitizeStackTrace(new NullPointerException())); } public static void throwNpe() { throw ((KotlinNullPointerException) sanitizeStackTrace(new KotlinNullPointerException())); } private static void throwParameterIsNullIAE(String str) { throw ((IllegalArgumentException) sanitizeStackTrace(new IllegalArgumentException(createParameterIsNullExceptionMessage(str)))); } private static void throwParameterIsNullNPE(String str) { throw ((NullPointerException) sanitizeStackTrace(new NullPointerException(createParameterIsNullExceptionMessage(str)))); } public static void throwUndefinedForReified() { throwUndefinedForReified("This function has a reified type parameter and thus can only be inlined at compilation time, not called directly."); } public static void throwUninitializedProperty(String str) { throw ((UninitializedPropertyAccessException) sanitizeStackTrace(new UninitializedPropertyAccessException(str))); } public static void throwUninitializedPropertyAccessException(String str) { throwUninitializedProperty("lateinit property " + str + " has not been initialized"); } @SinceKotlin(version = "1.1") public static boolean areEqual(Double d4, Double d5) { return d4 == null ? d5 == null : d5 != null && d4.doubleValue() == d5.doubleValue(); } public static void checkFieldIsNotNull(Object obj, String str) { if (obj == null) { throw ((IllegalStateException) sanitizeStackTrace(new IllegalStateException(str))); } } public static void checkNotNull(Object obj, String str) { if (obj == null) { throwJavaNpe(str); } } public static void checkReturnedValueIsNotNull(Object obj, String str) { if (obj == null) { throw ((IllegalStateException) sanitizeStackTrace(new IllegalStateException(str))); } } public static int compare(long j4, long j5) { if (j4 < j5) { return -1; } return j4 == j5 ? 0 : 1; } public static void needClassReification(String str) { throwUndefinedForReified(str); } public static void reifiedOperationMarker(int i, String str, String str2) { throwUndefinedForReified(str2); } public static T sanitizeStackTrace(T t2, String str) { StackTraceElement[] stackTrace = t2.getStackTrace(); int length = stackTrace.length; int i = -1; for (int i4 = 0; i4 < length; i4++) { if (str.equals(stackTrace[i4].getClassName())) { i = i4; } } t2.setStackTrace((StackTraceElement[]) Arrays.copyOfRange(stackTrace, i + 1, length)); return t2; } public static void throwAssert(String str) { throw ((AssertionError) sanitizeStackTrace(new AssertionError(str))); } public static void throwIllegalArgument(String str) { throw ((IllegalArgumentException) sanitizeStackTrace(new IllegalArgumentException(str))); } public static void throwIllegalState(String str) { throw ((IllegalStateException) sanitizeStackTrace(new IllegalStateException(str))); } @SinceKotlin(version = "1.4") public static void throwJavaNpe(String str) { throw ((NullPointerException) sanitizeStackTrace(new NullPointerException(str))); } public static void throwNpe(String str) { throw ((KotlinNullPointerException) sanitizeStackTrace(new KotlinNullPointerException(str))); } public static void throwUndefinedForReified(String str) { throw new UnsupportedOperationException(str); } @SinceKotlin(version = "1.1") public static boolean areEqual(Double d4, double d5) { return d4 != null && d4.doubleValue() == d5; } @SinceKotlin(version = "1.1") public static boolean areEqual(double d4, Double d5) { return d5 != null && d4 == d5.doubleValue(); } @SinceKotlin(version = "1.1") public static boolean areEqual(Float f2, Float f4) { return f2 == null ? f4 == null : f4 != null && f2.floatValue() == f4.floatValue(); } @SinceKotlin(version = "1.1") public static boolean areEqual(Float f2, float f4) { return f2 != null && f2.floatValue() == f4; } @SinceKotlin(version = "1.1") public static boolean areEqual(float f2, Float f4) { return f4 != null && f2 == f4.floatValue(); } public static void checkHasClass(String str, String str2) throws ClassNotFoundException { String replace = str.replace('/', '.'); try { Class.forName(replace); } catch (ClassNotFoundException e4) { throw ((ClassNotFoundException) sanitizeStackTrace(new ClassNotFoundException("Class " + replace + " is not found: this code requires the Kotlin runtime of version at least " + str2, e4))); } } }