Merge "Remove CONNECTIVITY_CHANGE_DELAY and friends." into lmp-mr1-dev
This commit is contained in:
@@ -100,7 +100,7 @@ public class ConnectivityManager {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Identical to {@link #CONNECTIVITY_ACTION} broadcast, but sent without any
|
* Identical to {@link #CONNECTIVITY_ACTION} broadcast, but sent without any
|
||||||
* applicable {@link Settings.Global#CONNECTIVITY_CHANGE_DELAY}.
|
* historic {@link Settings.Global#CONNECTIVITY_CHANGE_DELAY}.
|
||||||
*
|
*
|
||||||
* @hide
|
* @hide
|
||||||
*/
|
*/
|
||||||
@@ -427,18 +427,6 @@ public class ConnectivityManager {
|
|||||||
@Deprecated
|
@Deprecated
|
||||||
public static final int DEFAULT_NETWORK_PREFERENCE = TYPE_WIFI;
|
public static final int DEFAULT_NETWORK_PREFERENCE = TYPE_WIFI;
|
||||||
|
|
||||||
/**
|
|
||||||
* Default value for {@link Settings.Global#CONNECTIVITY_CHANGE_DELAY} in
|
|
||||||
* milliseconds. This was introduced because IPv6 routes seem to take a
|
|
||||||
* moment to settle - trying network activity before the routes are adjusted
|
|
||||||
* can lead to packets using the wrong interface or having the wrong IP address.
|
|
||||||
* This delay is a bit crude, but in the future hopefully we will have kernel
|
|
||||||
* notifications letting us know when it's safe to use the new network.
|
|
||||||
*
|
|
||||||
* @hide
|
|
||||||
*/
|
|
||||||
public static final int CONNECTIVITY_CHANGE_DELAY_DEFAULT = 3000;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @hide
|
* @hide
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -797,17 +797,6 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
|||||||
throw new IllegalStateException("No free netIds");
|
throw new IllegalStateException("No free netIds");
|
||||||
}
|
}
|
||||||
|
|
||||||
private int getConnectivityChangeDelay() {
|
|
||||||
final ContentResolver cr = mContext.getContentResolver();
|
|
||||||
|
|
||||||
/** Check system properties for the default value then use secure settings value, if any. */
|
|
||||||
int defaultDelay = SystemProperties.getInt(
|
|
||||||
"conn." + Settings.Global.CONNECTIVITY_CHANGE_DELAY,
|
|
||||||
ConnectivityManager.CONNECTIVITY_CHANGE_DELAY_DEFAULT);
|
|
||||||
return Settings.Global.getInt(cr, Settings.Global.CONNECTIVITY_CHANGE_DELAY,
|
|
||||||
defaultDelay);
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean teardown(NetworkStateTracker netTracker) {
|
private boolean teardown(NetworkStateTracker netTracker) {
|
||||||
if (netTracker.teardown()) {
|
if (netTracker.teardown()) {
|
||||||
netTracker.setTeardownRequested(true);
|
netTracker.setTeardownRequested(true);
|
||||||
@@ -1479,11 +1468,6 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
|||||||
sendGeneralBroadcast(info, CONNECTIVITY_ACTION);
|
sendGeneralBroadcast(info, CONNECTIVITY_ACTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void sendConnectedBroadcastDelayed(NetworkInfo info, int delayMs) {
|
|
||||||
sendGeneralBroadcast(info, CONNECTIVITY_ACTION_IMMEDIATE);
|
|
||||||
sendGeneralBroadcastDelayed(info, CONNECTIVITY_ACTION, delayMs);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void sendInetConditionBroadcast(NetworkInfo info) {
|
private void sendInetConditionBroadcast(NetworkInfo info) {
|
||||||
sendGeneralBroadcast(info, ConnectivityManager.INET_CONDITION_ACTION);
|
sendGeneralBroadcast(info, ConnectivityManager.INET_CONDITION_ACTION);
|
||||||
}
|
}
|
||||||
@@ -1515,10 +1499,6 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
|||||||
sendStickyBroadcast(makeGeneralIntent(info, bcastType));
|
sendStickyBroadcast(makeGeneralIntent(info, bcastType));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void sendGeneralBroadcastDelayed(NetworkInfo info, String bcastType, int delayMs) {
|
|
||||||
sendStickyBroadcastDelayed(makeGeneralIntent(info, bcastType), delayMs);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void sendDataActivityBroadcast(int deviceType, boolean active, long tsNanos) {
|
private void sendDataActivityBroadcast(int deviceType, boolean active, long tsNanos) {
|
||||||
Intent intent = new Intent(ConnectivityManager.ACTION_DATA_ACTIVITY_CHANGE);
|
Intent intent = new Intent(ConnectivityManager.ACTION_DATA_ACTIVITY_CHANGE);
|
||||||
intent.putExtra(ConnectivityManager.EXTRA_DEVICE_TYPE, deviceType);
|
intent.putExtra(ConnectivityManager.EXTRA_DEVICE_TYPE, deviceType);
|
||||||
@@ -1552,19 +1532,6 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void sendStickyBroadcastDelayed(Intent intent, int delayMs) {
|
|
||||||
if (delayMs <= 0) {
|
|
||||||
sendStickyBroadcast(intent);
|
|
||||||
} else {
|
|
||||||
if (VDBG) {
|
|
||||||
log("sendStickyBroadcastDelayed: delayMs=" + delayMs + ", action="
|
|
||||||
+ intent.getAction());
|
|
||||||
}
|
|
||||||
mHandler.sendMessageDelayed(mHandler.obtainMessage(
|
|
||||||
EVENT_SEND_STICKY_BROADCAST_INTENT, intent), delayMs);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void systemReady() {
|
void systemReady() {
|
||||||
// start network sampling ..
|
// start network sampling ..
|
||||||
Intent intent = new Intent(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED);
|
Intent intent = new Intent(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED);
|
||||||
@@ -4307,7 +4274,7 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
|||||||
info.setType(type);
|
info.setType(type);
|
||||||
if (connected) {
|
if (connected) {
|
||||||
info.setDetailedState(DetailedState.CONNECTED, null, info.getExtraInfo());
|
info.setDetailedState(DetailedState.CONNECTED, null, info.getExtraInfo());
|
||||||
sendConnectedBroadcastDelayed(info, getConnectivityChangeDelay());
|
sendConnectedBroadcast(info);
|
||||||
} else {
|
} else {
|
||||||
info.setDetailedState(DetailedState.DISCONNECTED, null, info.getExtraInfo());
|
info.setDetailedState(DetailedState.DISCONNECTED, null, info.getExtraInfo());
|
||||||
Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
|
Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
|
||||||
@@ -4338,10 +4305,9 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
|||||||
final Intent immediateIntent = new Intent(intent);
|
final Intent immediateIntent = new Intent(intent);
|
||||||
immediateIntent.setAction(CONNECTIVITY_ACTION_IMMEDIATE);
|
immediateIntent.setAction(CONNECTIVITY_ACTION_IMMEDIATE);
|
||||||
sendStickyBroadcast(immediateIntent);
|
sendStickyBroadcast(immediateIntent);
|
||||||
sendStickyBroadcastDelayed(intent, getConnectivityChangeDelay());
|
sendStickyBroadcast(intent);
|
||||||
if (newDefaultAgent != null) {
|
if (newDefaultAgent != null) {
|
||||||
sendConnectedBroadcastDelayed(newDefaultAgent.networkInfo,
|
sendConnectedBroadcast(newDefaultAgent.networkInfo);
|
||||||
getConnectivityChangeDelay());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user