package o; import java.io.Closeable; import java.io.IOException; import java.util.Arrays; import java.util.HashMap; import java.util.Iterator; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; /* loaded from: classes.dex */ public abstract class VKL { private final Map mBagOfTags; private volatile boolean mCleared; private final Set mCloseables; public void onCleared() { } public VKL() { this.mBagOfTags = new HashMap(); this.mCloseables = new LinkedHashSet(); this.mCleared = false; } public VKL(Closeable... closeableArr) { this.mBagOfTags = new HashMap(); LinkedHashSet linkedHashSet = new LinkedHashSet(); this.mCloseables = linkedHashSet; this.mCleared = false; linkedHashSet.addAll(Arrays.asList(closeableArr)); } public void addCloseable(Closeable closeable) { Set set = this.mCloseables; if (set != null) { synchronized (set) { this.mCloseables.add(closeable); } } } /* JADX INFO: Access modifiers changed from: package-private */ public final void clear() { this.mCleared = true; Map map = this.mBagOfTags; if (map != null) { synchronized (map) { Iterator it = this.mBagOfTags.values().iterator(); while (it.hasNext()) { closeWithRuntimeException(it.next()); } } } Set set = this.mCloseables; if (set != null) { synchronized (set) { Iterator it2 = this.mCloseables.iterator(); while (it2.hasNext()) { closeWithRuntimeException(it2.next()); } } } onCleared(); } /* JADX INFO: Access modifiers changed from: package-private */ /* JADX WARN: Multi-variable type inference failed */ public T setTagIfAbsent(String str, T t) { Object obj; synchronized (this.mBagOfTags) { obj = this.mBagOfTags.get(str); if (obj == 0) { this.mBagOfTags.put(str, t); } } if (obj != 0) { t = obj; } if (this.mCleared) { closeWithRuntimeException(t); } return t; } /* JADX INFO: Access modifiers changed from: package-private */ public T getTag(String str) { T t; Map map = this.mBagOfTags; if (map == null) { return null; } synchronized (map) { t = (T) this.mBagOfTags.get(str); } return t; } private static void closeWithRuntimeException(Object obj) { if (obj instanceof Closeable) { try { ((Closeable) obj).close(); } catch (IOException e) { throw new RuntimeException(e); } } } }