what-the-bank/sources/io/flutter/embedding/engine/systemchannels/DeferredComponentChannel.java

113 lines
4.9 KiB
Java

package io.flutter.embedding.engine.systemchannels;
import io.flutter.FlutterInjector;
import io.flutter.Log;
import io.flutter.embedding.engine.dart.DartExecutor;
import io.flutter.embedding.engine.deferredcomponents.DeferredComponentManager;
import io.flutter.plugin.common.MethodCall;
import io.flutter.plugin.common.MethodChannel;
import io.flutter.plugin.common.StandardMethodCodec;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
/* loaded from: classes.dex */
public class DeferredComponentChannel {
private static final String TAG = "DeferredComponentChannel";
private final MethodChannel channel;
private Map<String, List<MethodChannel.Result>> componentNameToResults;
private DeferredComponentManager deferredComponentManager;
final MethodChannel.MethodCallHandler parsingMethodHandler;
public void setDeferredComponentManager(DeferredComponentManager deferredComponentManager) {
this.deferredComponentManager = deferredComponentManager;
}
public DeferredComponentChannel(DartExecutor dartExecutor) {
MethodChannel.MethodCallHandler methodCallHandler = new MethodChannel.MethodCallHandler(this) { // from class: io.flutter.embedding.engine.systemchannels.DeferredComponentChannel.1
final DeferredComponentChannel this$0;
{
this.this$0 = this;
}
@Override // io.flutter.plugin.common.MethodChannel.MethodCallHandler
public void onMethodCall(MethodCall methodCall, MethodChannel.Result result) {
char c;
if (this.this$0.deferredComponentManager == null) {
return;
}
String str = methodCall.method;
Map map = (Map) methodCall.arguments();
Log.v(DeferredComponentChannel.TAG, "Received '" + str + "' message.");
int intValue = ((Integer) map.get("loadingUnitId")).intValue();
String str2 = (String) map.get("componentName");
str.hashCode();
int hashCode = str.hashCode();
if (hashCode == -1004447972) {
if (str.equals("uninstallDeferredComponent")) {
c = 0;
}
c = 65535;
} else if (hashCode != 399701758) {
if (hashCode == 520962947 && str.equals("installDeferredComponent")) {
c = 2;
}
c = 65535;
} else {
if (str.equals("getDeferredComponentInstallState")) {
c = 1;
}
c = 65535;
}
if (c == 0) {
this.this$0.deferredComponentManager.uninstallDeferredComponent(intValue, str2);
result.success(null);
} else {
if (c == 1) {
result.success(this.this$0.deferredComponentManager.getDeferredComponentInstallState(intValue, str2));
return;
}
if (c == 2) {
this.this$0.deferredComponentManager.installDeferredComponent(intValue, str2);
if (!this.this$0.componentNameToResults.containsKey(str2)) {
this.this$0.componentNameToResults.put(str2, new ArrayList());
}
((List) this.this$0.componentNameToResults.get(str2)).add(result);
return;
}
result.notImplemented();
}
}
};
this.parsingMethodHandler = methodCallHandler;
MethodChannel methodChannel = new MethodChannel(dartExecutor, "flutter/deferredcomponent", StandardMethodCodec.INSTANCE);
this.channel = methodChannel;
methodChannel.setMethodCallHandler(methodCallHandler);
this.deferredComponentManager = FlutterInjector.instance().deferredComponentManager();
this.componentNameToResults = new HashMap();
}
public void completeInstallSuccess(String str) {
if (this.componentNameToResults.containsKey(str)) {
Iterator<MethodChannel.Result> it = this.componentNameToResults.get(str).iterator();
while (it.hasNext()) {
it.next().success(null);
}
this.componentNameToResults.get(str).clear();
}
}
public void completeInstallError(String str, String str2) {
if (this.componentNameToResults.containsKey(str)) {
Iterator<MethodChannel.Result> it = this.componentNameToResults.get(str).iterator();
while (it.hasNext()) {
it.next().error("DeferredComponent Install failure", str2, null);
}
this.componentNameToResults.get(str).clear();
}
}
}