Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
package androidx.datastore.preferences.protobuf;
import java.io.IOException;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
/* loaded from: classes.dex */
final class Protobuf {
private static final Protobuf INSTANCE = new Protobuf();
private final ConcurrentMap<Class<?>, Schema<?>> schemaCache = new ConcurrentHashMap();
private final SchemaFactory schemaFactory = new ManifestSchemaFactory();
public static Protobuf getInstance() {
return INSTANCE;
}
public <T> void writeTo(T t, Writer writer) throws IOException {
schemaFor((Protobuf) t).writeTo(t, writer);
}
public <T> void mergeFrom(T t, Reader reader) throws IOException {
mergeFrom(t, reader, ExtensionRegistryLite.getEmptyRegistry());
}
public <T> void mergeFrom(T t, Reader reader, ExtensionRegistryLite extensionRegistryLite) throws IOException {
schemaFor((Protobuf) t).mergeFrom(t, reader, extensionRegistryLite);
}
public <T> void makeImmutable(T t) {
schemaFor((Protobuf) t).makeImmutable(t);
}
public <T> boolean isInitialized(T t) {
return schemaFor((Protobuf) t).isInitialized(t);
}
public <T> Schema<T> schemaFor(Class<T> cls) {
Internal.checkNotNull(cls, "messageType");
Schema<T> schema = (Schema) this.schemaCache.get(cls);
if (schema != null) {
return schema;
}
Schema<T> createSchema = this.schemaFactory.createSchema(cls);
Schema<T> schema2 = (Schema<T>) registerSchema(cls, createSchema);
return schema2 != null ? schema2 : createSchema;
}
public <T> Schema<T> schemaFor(T t) {
return schemaFor((Class) t.getClass());
}
public Schema<?> registerSchema(Class<?> cls, Schema<?> schema) {
Internal.checkNotNull(cls, "messageType");
Internal.checkNotNull(schema, "schema");
return this.schemaCache.putIfAbsent(cls, schema);
}
public Schema<?> registerSchemaOverride(Class<?> cls, Schema<?> schema) {
Internal.checkNotNull(cls, "messageType");
Internal.checkNotNull(schema, "schema");
return this.schemaCache.put(cls, schema);
}
private Protobuf() {
}
public int getTotalSchemaSize() {
int i = 0;
for (Schema<?> schema : this.schemaCache.values()) {
if (schema instanceof MessageSchema) {
i += ((MessageSchema) schema).getSchemaSize();
}
}
return i;
}
}