blob: a5226d8a1af9df81f4f82903e813688dca9c9444 [file] [log] [blame]
/*
* Copyright 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.lifecycle;
import android.os.Bundle;
import androidx.annotation.NonNull;
abstract class SavedStateVMFactory implements ViewModelProvider.KeyedFactory {
static final String TAG_SAVED_STATE_HANDLE = "androidx.lifecycle.savedstate.vm.tag";
private final ViewModelWithStateFactory mWrappedFactory;
private final SavedStateRegistry mSavedStateStore;
private final Bundle mInitialArgs;
SavedStateVMFactory(SavedStateRegistry savedStateStore, Bundle initialArgs,
ViewModelWithStateFactory factory) {
mWrappedFactory = factory;
mSavedStateStore = savedStateStore;
mInitialArgs = initialArgs;
}
@NonNull
@Override
public <T extends ViewModel> T create(@NonNull String key, @NonNull Class<T> modelClass) {
Bundle savedState = mSavedStateStore.consumeRestoredStateForKey(key);
SavedStateHandle handle = new SavedStateHandle(mInitialArgs, savedState);
mSavedStateStore.registerSaveStateCallback(key, handle.savedStateComponent());
T viewmodel = mWrappedFactory.create(key, modelClass, handle);
viewmodel.setTagIfAbsent(TAG_SAVED_STATE_HANDLE, handle);
return viewmodel;
}
}