com.matthewmitchell.peercoin_android_wallet.ui.WalletBalanceLoader.java Source code

Java tutorial

Introduction

Here is the source code for com.matthewmitchell.peercoin_android_wallet.ui.WalletBalanceLoader.java

Source

/*
 * Copyright 2013-2014 the original author or authors.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.matthewmitchell.peercoin_android_wallet.ui;

import java.util.concurrent.RejectedExecutionException;

import javax.annotation.Nonnull;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import android.content.AsyncTaskLoader;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.support.v4.content.LocalBroadcastManager;

import com.matthewmitchell.peercoinj.core.Coin;
import com.matthewmitchell.peercoinj.core.Wallet;
import com.matthewmitchell.peercoinj.core.Wallet.BalanceType;
import com.matthewmitchell.peercoinj.utils.Threading;

import com.matthewmitchell.peercoin_android_wallet.WalletApplication;
import com.matthewmitchell.peercoin_android_wallet.util.ThrottlingWalletChangeListener;

/**
 * @author Andreas Schildbach
 */
public final class WalletBalanceLoader extends AsyncTaskLoader<Coin> {
    private LocalBroadcastManager broadcastManager;
    private final Wallet wallet;

    private static final Logger log = LoggerFactory.getLogger(WalletBalanceLoader.class);

    public WalletBalanceLoader(final Context context, @Nonnull final Wallet wallet) {
        super(context);

        this.broadcastManager = LocalBroadcastManager.getInstance(context.getApplicationContext());
        this.wallet = wallet;
    }

    @Override
    protected void onStartLoading() {
        super.onStartLoading();

        wallet.addEventListener(walletChangeListener, Threading.SAME_THREAD);
        broadcastManager.registerReceiver(walletChangeReceiver,
                new IntentFilter(WalletApplication.ACTION_WALLET_CHANGED));

        safeForceLoad();
    }

    @Override
    protected void onStopLoading() {
        broadcastManager.unregisterReceiver(walletChangeReceiver);
        wallet.removeEventListener(walletChangeListener);
        walletChangeListener.removeCallbacks();

        super.onStopLoading();
    }

    @Override
    protected void onReset() {
        broadcastManager.unregisterReceiver(walletChangeReceiver);
        wallet.removeEventListener(walletChangeListener);
        walletChangeListener.removeCallbacks();

        super.onReset();
    }

    @Override
    public Coin loadInBackground() {
        return wallet.getBalance(BalanceType.ESTIMATED);
    }

    private final ThrottlingWalletChangeListener walletChangeListener = new ThrottlingWalletChangeListener() {
        @Override
        public void onThrottledWalletChanged() {
            safeForceLoad();
        }
    };

    private final BroadcastReceiver walletChangeReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(final Context context, final Intent intent) {
            safeForceLoad();
        }
    };

    private void safeForceLoad() {
        try {
            forceLoad();
        } catch (final RejectedExecutionException x) {
            log.info("rejected execution: " + WalletBalanceLoader.this.toString());
        }
    }
}