/* * Twidere - Twitter client for Android * * Copyright (C) 2012-2014 Mariotaku Lee * * 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 . */ package org.mariotaku.twidere.receiver; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.location.Location; import android.net.ConnectivityManager; import android.util.Log; import org.mariotaku.twidere.BuildConfig; import org.mariotaku.twidere.Constants; import org.mariotaku.twidere.util.AsyncTaskUtils; import org.mariotaku.twidere.util.Utils; import org.mariotaku.twidere.util.net.NetworkUsageUtils; import edu.tsinghua.spice.Task.SpiceAsyUploadTask; import edu.tsinghua.spice.Utilies.NetworkStateUtil; import edu.tsinghua.spice.Utilies.SpiceProfilingUtil; import static org.mariotaku.twidere.util.Utils.startRefreshServiceIfNeeded; public class ConnectivityStateReceiver extends BroadcastReceiver implements Constants { private static final String RECEIVER_LOGTAG = LOGTAG + "." + "Connectivity"; @Override public void onReceive(final Context context, final Intent intent) { if (BuildConfig.DEBUG) { Log.d(RECEIVER_LOGTAG, String.format("Received Broadcast %s", intent)); } if (!ConnectivityManager.CONNECTIVITY_ACTION.equals(intent.getAction())) return; startRefreshServiceIfNeeded(context); final SharedPreferences prefs = context.getSharedPreferences(SHARED_PREFERENCES_NAME, Context.MODE_PRIVATE); if (prefs.getBoolean(KEY_USAGE_STATISTICS, false) && prefs.getBoolean(KEY_SETTINGS_WIZARD_COMPLETED, false)) { //spice SpiceProfilingUtil.profile(context, SpiceProfilingUtil.FILE_NAME_ONWIFI, NetworkStateUtil.getConnectedType(context)); final Location location = Utils.getCachedLocation(context); if (location != null) { SpiceProfilingUtil.profile(context, SpiceProfilingUtil.FILE_NAME_LOCATION, location.getTime() + "," + location.getLatitude() + "," + location.getLongitude() + "," + location.getProvider()); } } final int networkType = Utils.getActiveNetworkType(context.getApplicationContext()); NetworkUsageUtils.setNetworkType(networkType); final boolean isWifi = networkType == ConnectivityManager.TYPE_WIFI; final boolean isCharging = SpiceProfilingUtil.isCharging(context.getApplicationContext()); if (isWifi && isCharging) { final long currentTime = System.currentTimeMillis(); final long lastSuccessfulTime = SpiceAsyUploadTask.getLastUploadTime(context); if ((currentTime - lastSuccessfulTime) > SpiceAsyUploadTask.UPLOAD_INTERVAL_MILLIS) { AsyncTaskUtils.executeTask(new SpiceAsyUploadTask(context)); } } } }