discord-jadx/app/src/main/java/com/discord/utilities/rest/SendUtils$uniqueifyNames$1....

102 lines
4.2 KiB
Java

package com.discord.utilities.rest;
import com.lytefast.flexinput.model.Attachment;
import d0.f0.k;
import d0.l;
import d0.w.g.c;
import d0.w.h.a.b;
import d0.w.h.a.e;
import d0.w.h.a.j;
import d0.z.d.m;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.jvm.functions.Function2;
/* compiled from: SendUtils.kt */
@e(c = "com.discord.utilities.rest.SendUtils$uniqueifyNames$1", f = "SendUtils.kt", l = {145, 147}, m = "invokeSuspend")
public final class SendUtils$uniqueifyNames$1 extends j implements Function2<k<? super Attachment<? extends Object>>, Continuation<? super Unit>, Object> {
public final /* synthetic */ List $attachmentParts;
private /* synthetic */ Object L$0;
public Object L$1;
public Object L$2;
public int label;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public SendUtils$uniqueifyNames$1(List list, Continuation continuation) {
super(2, continuation);
this.$attachmentParts = list;
}
@Override // d0.w.h.a.a
public final Continuation<Unit> create(Object obj, Continuation<?> continuation) {
m.checkNotNullParameter(continuation, "completion");
SendUtils$uniqueifyNames$1 sendUtils$uniqueifyNames$1 = new SendUtils$uniqueifyNames$1(this.$attachmentParts, continuation);
sendUtils$uniqueifyNames$1.L$0 = obj;
return sendUtils$uniqueifyNames$1;
}
/* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object, java.lang.Object] */
@Override // kotlin.jvm.functions.Function2
public final Object invoke(k<? super Attachment<? extends Object>> kVar, Continuation<? super Unit> continuation) {
return ((SendUtils$uniqueifyNames$1) create(kVar, continuation)).invokeSuspend(Unit.a);
}
@Override // d0.w.h.a.a
public final Object invokeSuspend(Object obj) {
SendUtils$uniqueifyNames$1 sendUtils$uniqueifyNames$1;
k kVar;
Map map;
Iterator it;
Object coroutine_suspended = c.getCOROUTINE_SUSPENDED();
int i = this.label;
if (i == 0) {
l.throwOnFailure(obj);
LinkedHashMap linkedHashMap = new LinkedHashMap();
Iterator it2 = this.$attachmentParts.iterator();
kVar = (k) this.L$0;
sendUtils$uniqueifyNames$1 = this;
map = linkedHashMap;
it = it2;
} else if (i == 1 || i == 2) {
it = (Iterator) this.L$2;
map = (Map) this.L$1;
kVar = (k) this.L$0;
l.throwOnFailure(obj);
sendUtils$uniqueifyNames$1 = this;
} else {
throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
}
while (it.hasNext()) {
Attachment attachment = (Attachment) it.next();
Object obj2 = map.get(attachment.getDisplayName());
if (obj2 == null) {
obj2 = b.boxInt(0);
}
int intValue = ((Number) obj2).intValue();
map.put(attachment.getDisplayName(), b.boxInt(intValue + 1));
if (intValue == 0) {
sendUtils$uniqueifyNames$1.L$0 = kVar;
sendUtils$uniqueifyNames$1.L$1 = map;
sendUtils$uniqueifyNames$1.L$2 = it;
sendUtils$uniqueifyNames$1.label = 1;
if (kVar.yield(attachment, sendUtils$uniqueifyNames$1) == coroutine_suspended) {
return coroutine_suspended;
}
} else {
Attachment renamedWithDuplicateCount = SendUtils.INSTANCE.renamedWithDuplicateCount(attachment, intValue);
sendUtils$uniqueifyNames$1.L$0 = kVar;
sendUtils$uniqueifyNames$1.L$1 = map;
sendUtils$uniqueifyNames$1.L$2 = it;
sendUtils$uniqueifyNames$1.label = 2;
if (kVar.yield(renamedWithDuplicateCount, sendUtils$uniqueifyNames$1) == coroutine_suspended) {
return coroutine_suspended;
}
}
}
return Unit.a;
}
}