98 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package androidx.savedstate;
 | |
| 
 | |
| import android.os.Bundle;
 | |
| import androidx.core.app.NotificationCompat;
 | |
| import androidx.lifecycle.Lifecycle;
 | |
| import androidx.lifecycle.LifecycleEventObserver;
 | |
| import androidx.lifecycle.LifecycleOwner;
 | |
| import androidx.savedstate.SavedStateRegistry;
 | |
| import java.lang.reflect.Constructor;
 | |
| import java.util.ArrayList;
 | |
| import java.util.Iterator;
 | |
| import java.util.LinkedHashSet;
 | |
| import java.util.Set;
 | |
| import kotlin.Metadata;
 | |
| import kotlin.jvm.internal.Intrinsics;
 | |
| 
 | |
| /* compiled from: Recreator.kt */
 | |
| @Metadata(d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0003\b\u0000\u0018\u0000 \u000e2\u00020\u0001:\u0002\u000e\u000fB\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003¢\u0006\u0002\u0010\u0004J\u0018\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\nH\u0016J\u0010\u0010\u000b\u001a\u00020\u00062\u0006\u0010\f\u001a\u00020\rH\u0002R\u000e\u0010\u0002\u001a\u00020\u0003X\u0082\u0004¢\u0006\u0002\n\u0000¨\u0006\u0010"}, d2 = {"Landroidx/savedstate/Recreator;", "Landroidx/lifecycle/LifecycleEventObserver;", "owner", "Landroidx/savedstate/SavedStateRegistryOwner;", "(Landroidx/savedstate/SavedStateRegistryOwner;)V", "onStateChanged", "", "source", "Landroidx/lifecycle/LifecycleOwner;", NotificationCompat.CATEGORY_EVENT, "Landroidx/lifecycle/Lifecycle$Event;", "reflectiveNew", "className", "", "Companion", "SavedStateProvider", "savedstate_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
 | |
| /* loaded from: classes.dex */
 | |
| public final class Recreator implements LifecycleEventObserver {
 | |
|     public static final String CLASSES_KEY = "classes_to_restore";
 | |
|     public static final String COMPONENT_KEY = "androidx.savedstate.Restarter";
 | |
|     private final SavedStateRegistryOwner owner;
 | |
| 
 | |
|     public Recreator(SavedStateRegistryOwner owner) {
 | |
|         Intrinsics.checkNotNullParameter(owner, "owner");
 | |
|         this.owner = owner;
 | |
|     }
 | |
| 
 | |
|     @Override // androidx.lifecycle.LifecycleEventObserver
 | |
|     public void onStateChanged(LifecycleOwner source, Lifecycle.Event event) {
 | |
|         Intrinsics.checkNotNullParameter(source, "source");
 | |
|         Intrinsics.checkNotNullParameter(event, "event");
 | |
|         if (event != Lifecycle.Event.ON_CREATE) {
 | |
|             throw new AssertionError("Next event must be ON_CREATE");
 | |
|         }
 | |
|         source.getLifecycle().removeObserver(this);
 | |
|         Bundle consumeRestoredStateForKey = this.owner.getSavedStateRegistry().consumeRestoredStateForKey(COMPONENT_KEY);
 | |
|         if (consumeRestoredStateForKey == null) {
 | |
|             return;
 | |
|         }
 | |
|         ArrayList<String> stringArrayList = consumeRestoredStateForKey.getStringArrayList(CLASSES_KEY);
 | |
|         if (stringArrayList == null) {
 | |
|             throw new IllegalStateException("Bundle with restored state for the component \"androidx.savedstate.Restarter\" must contain list of strings by the key \"classes_to_restore\"");
 | |
|         }
 | |
|         Iterator<String> it = stringArrayList.iterator();
 | |
|         while (it.hasNext()) {
 | |
|             reflectiveNew(it.next());
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     private final void reflectiveNew(String className) {
 | |
|         try {
 | |
|             Class<? extends U> asSubclass = Class.forName(className, false, Recreator.class.getClassLoader()).asSubclass(SavedStateRegistry.AutoRecreated.class);
 | |
|             Intrinsics.checkNotNullExpressionValue(asSubclass, "{\n                Class.…class.java)\n            }");
 | |
|             try {
 | |
|                 Constructor declaredConstructor = asSubclass.getDeclaredConstructor(new Class[0]);
 | |
|                 declaredConstructor.setAccessible(true);
 | |
|                 try {
 | |
|                     Object newInstance = declaredConstructor.newInstance(new Object[0]);
 | |
|                     Intrinsics.checkNotNullExpressionValue(newInstance, "{\n                constr…wInstance()\n            }");
 | |
|                     ((SavedStateRegistry.AutoRecreated) newInstance).onRecreated(this.owner);
 | |
|                 } catch (Exception e) {
 | |
|                     throw new RuntimeException("Failed to instantiate " + className, e);
 | |
|                 }
 | |
|             } catch (NoSuchMethodException e2) {
 | |
|                 throw new IllegalStateException("Class " + asSubclass.getSimpleName() + " must have default constructor in order to be automatically recreated", e2);
 | |
|             }
 | |
|         } catch (ClassNotFoundException e3) {
 | |
|             throw new RuntimeException("Class " + className + " wasn't found", e3);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /* compiled from: Recreator.kt */
 | |
|     @Metadata(d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010#\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0000\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003¢\u0006\u0002\u0010\u0004J\u000e\u0010\b\u001a\u00020\t2\u0006\u0010\n\u001a\u00020\u0007J\b\u0010\u000b\u001a\u00020\fH\u0016R\u0014\u0010\u0005\u001a\b\u0012\u0004\u0012\u00020\u00070\u0006X\u0082\u0004¢\u0006\u0002\n\u0000¨\u0006\r"}, d2 = {"Landroidx/savedstate/Recreator$SavedStateProvider;", "Landroidx/savedstate/SavedStateRegistry$SavedStateProvider;", "registry", "Landroidx/savedstate/SavedStateRegistry;", "(Landroidx/savedstate/SavedStateRegistry;)V", "classes", "", "", "add", "", "className", "saveState", "Landroid/os/Bundle;", "savedstate_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
 | |
|     public static final class SavedStateProvider implements SavedStateRegistry.SavedStateProvider {
 | |
|         private final Set<String> classes;
 | |
| 
 | |
|         public SavedStateProvider(SavedStateRegistry registry) {
 | |
|             Intrinsics.checkNotNullParameter(registry, "registry");
 | |
|             this.classes = new LinkedHashSet();
 | |
|             registry.registerSavedStateProvider(Recreator.COMPONENT_KEY, this);
 | |
|         }
 | |
| 
 | |
|         @Override // androidx.savedstate.SavedStateRegistry.SavedStateProvider
 | |
|         public Bundle saveState() {
 | |
|             Bundle bundle = new Bundle();
 | |
|             bundle.putStringArrayList(Recreator.CLASSES_KEY, new ArrayList<>(this.classes));
 | |
|             return bundle;
 | |
|         }
 | |
| 
 | |
|         public final void add(String className) {
 | |
|             Intrinsics.checkNotNullParameter(className, "className");
 | |
|             this.classes.add(className);
 | |
|         }
 | |
|     }
 | |
| }
 |