com.propaneapps.tomorrow.loader.ObjectRetainLoader.java Source code

Java tutorial

Introduction

Here is the source code for com.propaneapps.tomorrow.loader.ObjectRetainLoader.java

Source

/*
 * Copyright (C) 2016 Micha ?uszczuk.
 *
 * 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 com.propaneapps.tomorrow.loader;

import android.content.Context;
import android.support.annotation.NonNull;
import android.support.v4.content.Loader;

import com.propaneapps.tomorrow.common.FactoryWithType;

/**
 * Loader class responsible for retaining specific object between orientation changes
 *
 * @param <T> Type of object to retain
 */
public class ObjectRetainLoader<T> extends Loader<T> {

    private FactoryWithType<T> presenterFactory;

    private T objectToRetain;

    public ObjectRetainLoader(@NonNull Context context, @NonNull FactoryWithType<T> presenterFactory) {
        super(context);
        this.presenterFactory = presenterFactory;
    }

    /**
     * onStartLoading will be called automatically after loader will be asked for data
     * If object is currently loaded it will be returned with deliverResult() method otherwise
     * forceLoad() method will be called to create it for the first time
     */
    @Override
    protected void onStartLoading() {
        super.onStartLoading();

        if (objectToRetain != null) {
            deliverResult(objectToRetain);
        } else {
            forceLoad();
        }
    }

    public T getObject() {
        return objectToRetain;
    }

    /**
     * Method will be called only if object to retain is not yet created, or loader was recreated
     * i.e. because of app process recreation
     */
    @Override
    public void forceLoad() {
        createObjectFromFactory();
        clearDataAfterCreation();

        deliverResult(objectToRetain);
    }

    protected void createObjectFromFactory() {
        objectToRetain = presenterFactory.create();
    }

    protected void clearDataAfterCreation() {
        presenterFactory = null;
    }
}