Rabbit-R1/switch port/java/sources/okhttp3/internal/http2/Settings.java
2024-05-21 17:08:36 -04:00

91 lines
4.1 KiB
Java

package okhttp3.internal.http2;
import kotlin.Metadata;
import kotlin.collections.ArraysKt;
import kotlin.jvm.internal.Intrinsics;
/* compiled from: Settings.kt */
@Metadata(bv = {1, 0, 3}, d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0006\n\u0002\u0010\u0015\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0010\u000b\n\u0002\b\u000b\u0018\u0000 \u001b2\u00020\u0001:\u0001\u001bB\u0005¢\u0006\u0002\u0010\u0002J\u0006\u0010\f\u001a\u00020\rJ\u0011\u0010\u000e\u001a\u00020\u00042\u0006\u0010\u000f\u001a\u00020\u0004H\u0086\u0002J\u000e\u0010\u0010\u001a\u00020\u00112\u0006\u0010\u0012\u001a\u00020\u0011J\u0006\u0010\u0013\u001a\u00020\u0004J\u000e\u0010\u0014\u001a\u00020\u00042\u0006\u0010\u0012\u001a\u00020\u0004J\u000e\u0010\u0015\u001a\u00020\u00042\u0006\u0010\u0012\u001a\u00020\u0004J\u000e\u0010\u0016\u001a\u00020\u00112\u0006\u0010\u000f\u001a\u00020\u0004J\u000e\u0010\u0017\u001a\u00020\r2\u0006\u0010\u0018\u001a\u00020\u0000J\u0019\u0010\t\u001a\u00020\u00002\u0006\u0010\u000f\u001a\u00020\u00042\u0006\u0010\u0019\u001a\u00020\u0004H\u0086\u0002J\u0006\u0010\u001a\u001a\u00020\u0004R\u0011\u0010\u0003\u001a\u00020\u00048F¢\u0006\u0006\u001a\u0004\b\u0005\u0010\u0006R\u0011\u0010\u0007\u001a\u00020\u00048F¢\u0006\u0006\u001a\u0004\b\b\u0010\u0006R\u000e\u0010\t\u001a\u00020\u0004X\u0082\u000e¢\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u000bX\u0082\u0004¢\u0006\u0002\n\u0000¨\u0006\u001c"}, d2 = {"Lokhttp3/internal/http2/Settings;", "", "()V", "headerTableSize", "", "getHeaderTableSize", "()I", "initialWindowSize", "getInitialWindowSize", "set", "values", "", "clear", "", "get", "id", "getEnablePush", "", "defaultValue", "getMaxConcurrentStreams", "getMaxFrameSize", "getMaxHeaderListSize", "isSet", "merge", "other", "value", "size", "Companion", "okhttp"}, k = 1, mv = {1, 4, 0})
/* loaded from: classes3.dex */
public final class Settings {
public static final int COUNT = 10;
public static final int DEFAULT_INITIAL_WINDOW_SIZE = 65535;
public static final int ENABLE_PUSH = 2;
public static final int HEADER_TABLE_SIZE = 1;
public static final int INITIAL_WINDOW_SIZE = 7;
public static final int MAX_CONCURRENT_STREAMS = 4;
public static final int MAX_FRAME_SIZE = 5;
public static final int MAX_HEADER_LIST_SIZE = 6;
private int set;
private final int[] values = new int[10];
public final boolean isSet(int id) {
return (this.set & (1 << id)) != 0;
}
public final int getHeaderTableSize() {
if ((this.set & 2) != 0) {
return this.values[1];
}
return -1;
}
public final int getInitialWindowSize() {
if ((this.set & 128) != 0) {
return this.values[7];
}
return 65535;
}
public final void clear() {
this.set = 0;
ArraysKt.fill$default(this.values, 0, 0, 0, 6, (Object) null);
}
public final Settings set(int id, int value) {
if (id >= 0) {
int[] iArr = this.values;
if (id < iArr.length) {
this.set = (1 << id) | this.set;
iArr[id] = value;
}
}
return this;
}
public final int get(int id) {
return this.values[id];
}
public final int size() {
return Integer.bitCount(this.set);
}
public final boolean getEnablePush(boolean defaultValue) {
return (this.set & 4) != 0 ? this.values[2] == 1 : defaultValue;
}
public final int getMaxConcurrentStreams() {
if ((this.set & 16) != 0) {
return this.values[4];
}
return Integer.MAX_VALUE;
}
public final int getMaxFrameSize(int defaultValue) {
return (this.set & 32) != 0 ? this.values[5] : defaultValue;
}
public final int getMaxHeaderListSize(int defaultValue) {
return (this.set & 64) != 0 ? this.values[6] : defaultValue;
}
public final void merge(Settings other) {
Intrinsics.checkNotNullParameter(other, "other");
for (int i = 0; i < 10; i++) {
if (other.isSet(i)) {
set(i, other.get(i));
}
}
}
}