jimu-decompiled/sources/com/squareup/picasso/LruCache.java
2025-05-13 19:24:51 +02:00

142 lines
5.9 KiB
Java

package com.squareup.picasso;
import android.content.Context;
import android.graphics.Bitmap;
import java.util.LinkedHashMap;
/* loaded from: classes.dex */
public class LruCache implements Cache {
final LinkedHashMap<String, Bitmap> a;
private final int b;
private int c;
private int d;
private int e;
private int f;
private int g;
public LruCache(Context context) {
this(Utils.a(context));
}
@Override // com.squareup.picasso.Cache
public void a(String str, Bitmap bitmap) {
if (str == null || bitmap == null) {
throw new NullPointerException("key == null || bitmap == null");
}
synchronized (this) {
this.d++;
this.c += Utils.a(bitmap);
Bitmap put = this.a.put(str, bitmap);
if (put != null) {
this.c -= Utils.a(put);
}
}
a(this.b);
}
@Override // com.squareup.picasso.Cache
public Bitmap get(String str) {
if (str == null) {
throw new NullPointerException("key == null");
}
synchronized (this) {
Bitmap bitmap = this.a.get(str);
if (bitmap != null) {
this.f++;
return bitmap;
}
this.g++;
return null;
}
}
@Override // com.squareup.picasso.Cache
public final synchronized int size() {
return this.c;
}
public LruCache(int i) {
if (i <= 0) {
throw new IllegalArgumentException("Max size must be positive.");
}
this.b = i;
this.a = new LinkedHashMap<>(0, 0.75f, true);
}
/* JADX WARN: Code restructure failed: missing block: B:11:0x0070, code lost:
throw new java.lang.IllegalStateException(getClass().getName() + ".sizeOf() is reporting inconsistent results!");
*/
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct code enable 'Show inconsistent code' option in preferences
*/
private void a(int r4) {
/*
r3 = this;
L0:
monitor-enter(r3)
int r0 = r3.c // Catch: java.lang.Throwable -> L71
if (r0 < 0) goto L52
java.util.LinkedHashMap<java.lang.String, android.graphics.Bitmap> r0 = r3.a // Catch: java.lang.Throwable -> L71
boolean r0 = r0.isEmpty() // Catch: java.lang.Throwable -> L71
if (r0 == 0) goto L11
int r0 = r3.c // Catch: java.lang.Throwable -> L71
if (r0 != 0) goto L52
L11:
int r0 = r3.c // Catch: java.lang.Throwable -> L71
if (r0 <= r4) goto L50
java.util.LinkedHashMap<java.lang.String, android.graphics.Bitmap> r0 = r3.a // Catch: java.lang.Throwable -> L71
boolean r0 = r0.isEmpty() // Catch: java.lang.Throwable -> L71
if (r0 == 0) goto L1e
goto L50
L1e:
java.util.LinkedHashMap<java.lang.String, android.graphics.Bitmap> r0 = r3.a // Catch: java.lang.Throwable -> L71
java.util.Set r0 = r0.entrySet() // Catch: java.lang.Throwable -> L71
java.util.Iterator r0 = r0.iterator() // Catch: java.lang.Throwable -> L71
java.lang.Object r0 = r0.next() // Catch: java.lang.Throwable -> L71
java.util.Map$Entry r0 = (java.util.Map.Entry) r0 // Catch: java.lang.Throwable -> L71
java.lang.Object r1 = r0.getKey() // Catch: java.lang.Throwable -> L71
java.lang.String r1 = (java.lang.String) r1 // Catch: java.lang.Throwable -> L71
java.lang.Object r0 = r0.getValue() // Catch: java.lang.Throwable -> L71
android.graphics.Bitmap r0 = (android.graphics.Bitmap) r0 // Catch: java.lang.Throwable -> L71
java.util.LinkedHashMap<java.lang.String, android.graphics.Bitmap> r2 = r3.a // Catch: java.lang.Throwable -> L71
r2.remove(r1) // Catch: java.lang.Throwable -> L71
int r1 = r3.c // Catch: java.lang.Throwable -> L71
int r0 = com.squareup.picasso.Utils.a(r0) // Catch: java.lang.Throwable -> L71
int r1 = r1 - r0
r3.c = r1 // Catch: java.lang.Throwable -> L71
int r0 = r3.e // Catch: java.lang.Throwable -> L71
int r0 = r0 + 1
r3.e = r0 // Catch: java.lang.Throwable -> L71
monitor-exit(r3) // Catch: java.lang.Throwable -> L71
goto L0
L50:
monitor-exit(r3) // Catch: java.lang.Throwable -> L71
return
L52:
java.lang.IllegalStateException r4 = new java.lang.IllegalStateException // Catch: java.lang.Throwable -> L71
java.lang.StringBuilder r0 = new java.lang.StringBuilder // Catch: java.lang.Throwable -> L71
r0.<init>() // Catch: java.lang.Throwable -> L71
java.lang.Class r1 = r3.getClass() // Catch: java.lang.Throwable -> L71
java.lang.String r1 = r1.getName() // Catch: java.lang.Throwable -> L71
r0.append(r1) // Catch: java.lang.Throwable -> L71
java.lang.String r1 = ".sizeOf() is reporting inconsistent results!"
r0.append(r1) // Catch: java.lang.Throwable -> L71
java.lang.String r0 = r0.toString() // Catch: java.lang.Throwable -> L71
r4.<init>(r0) // Catch: java.lang.Throwable -> L71
throw r4 // Catch: java.lang.Throwable -> L71
L71:
r4 = move-exception
monitor-exit(r3) // Catch: java.lang.Throwable -> L71
throw r4
*/
throw new UnsupportedOperationException("Method not decompiled: com.squareup.picasso.LruCache.a(int):void");
}
@Override // com.squareup.picasso.Cache
public final synchronized int a() {
return this.b;
}
}