41 lines
1.2 KiB
Java
41 lines
1.2 KiB
Java
package org.simpleframework.xml.transform;
|
|
|
|
import org.simpleframework.xml.util.Cache;
|
|
import org.simpleframework.xml.util.ConcurrentCache;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class RegistryMatcher implements Matcher {
|
|
private final Cache<Transform> transforms = new ConcurrentCache();
|
|
private final Cache<Class> types = new ConcurrentCache();
|
|
|
|
public void bind(Class cls, Class cls2) {
|
|
this.types.cache(cls, cls2);
|
|
}
|
|
|
|
public void bind(Class cls, Transform transform) {
|
|
this.transforms.cache(cls, transform);
|
|
}
|
|
|
|
@Override // org.simpleframework.xml.transform.Matcher
|
|
public Transform match(Class cls) throws Exception {
|
|
Transform fetch = this.transforms.fetch(cls);
|
|
return fetch == null ? create(cls) : fetch;
|
|
}
|
|
|
|
private Transform create(Class cls) throws Exception {
|
|
Class fetch = this.types.fetch(cls);
|
|
if (fetch != null) {
|
|
return create(cls, fetch);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private Transform create(Class cls, Class cls2) throws Exception {
|
|
Transform transform = (Transform) cls2.newInstance();
|
|
if (transform != null) {
|
|
this.transforms.cache(cls, transform);
|
|
}
|
|
return transform;
|
|
}
|
|
}
|