mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
86 lines
3.1 KiB
Java
86 lines
3.1 KiB
Java
package io.sentry;
|
|
|
|
import io.sentry.SpanContext;
|
|
import io.sentry.util.Objects;
|
|
import io.sentry.vendor.gson.stream.JsonToken;
|
|
import java.io.IOException;
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.Map;
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class MonitorContexts extends ConcurrentHashMap<String, Object> implements JsonSerializable {
|
|
private static final long serialVersionUID = 3987329379811822556L;
|
|
|
|
public MonitorContexts() {
|
|
}
|
|
|
|
public MonitorContexts(MonitorContexts monitorContexts) {
|
|
for (Map.Entry<String, Object> entry : monitorContexts.entrySet()) {
|
|
if (entry != null) {
|
|
Object value = entry.getValue();
|
|
if ("trace".equals(entry.getKey()) && (value instanceof SpanContext)) {
|
|
setTrace(new SpanContext((SpanContext) value));
|
|
} else {
|
|
put(entry.getKey(), value);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private <T> T toContextType(String str, Class<T> cls) {
|
|
Object obj = get(str);
|
|
if (cls.isInstance(obj)) {
|
|
return cls.cast(obj);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public SpanContext getTrace() {
|
|
return (SpanContext) toContextType("trace", SpanContext.class);
|
|
}
|
|
|
|
public void setTrace(SpanContext spanContext) {
|
|
Objects.requireNonNull(spanContext, "traceContext is required");
|
|
put("trace", spanContext);
|
|
}
|
|
|
|
@Override // io.sentry.JsonSerializable
|
|
public void serialize(ObjectWriter objectWriter, ILogger iLogger) throws IOException {
|
|
objectWriter.beginObject();
|
|
ArrayList<String> list = Collections.list(keys());
|
|
Collections.sort(list);
|
|
for (String str : list) {
|
|
Object obj = get(str);
|
|
if (obj != null) {
|
|
objectWriter.name(str).value(iLogger, obj);
|
|
}
|
|
}
|
|
objectWriter.endObject();
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class Deserializer implements JsonDeserializer<MonitorContexts> {
|
|
/* JADX WARN: Can't rename method to resolve collision */
|
|
@Override // io.sentry.JsonDeserializer
|
|
public MonitorContexts deserialize(JsonObjectReader jsonObjectReader, ILogger iLogger) throws Exception {
|
|
MonitorContexts monitorContexts = new MonitorContexts();
|
|
jsonObjectReader.beginObject();
|
|
while (jsonObjectReader.peek() == JsonToken.NAME) {
|
|
String nextName = jsonObjectReader.nextName();
|
|
nextName.hashCode();
|
|
if (nextName.equals("trace")) {
|
|
monitorContexts.setTrace(new SpanContext.Deserializer().deserialize(jsonObjectReader, iLogger));
|
|
} else {
|
|
Object nextObjectOrNull = jsonObjectReader.nextObjectOrNull();
|
|
if (nextObjectOrNull != null) {
|
|
monitorContexts.put(nextName, nextObjectOrNull);
|
|
}
|
|
}
|
|
}
|
|
jsonObjectReader.endObject();
|
|
return monitorContexts;
|
|
}
|
|
}
|
|
}
|