]> nv-tegra.nvidia Code Review - android/platform/frameworks/opt/telephony.git/commitdiff
am ef3149f4: Fix build.
authorWink Saville <wink@google.com>
Mon, 7 Oct 2013 00:03:52 +0000 (17:03 -0700)
committerAndroid Git Automerger <android-git-automerger@android.com>
Mon, 7 Oct 2013 00:03:52 +0000 (17:03 -0700)
* commit 'ef3149f4e736344e55f0fc8ceb419edf66119969':
  Fix build.

src/java/com/android/internal/telephony/dataconnection/DcTracker.java

index 89708e7aaaff4a9d82c1a39ba808d2c58679785a..7b028af929d7453d95eb4d486b81ae007e9851a7 100644 (file)
@@ -18,6 +18,7 @@ package com.android.internal.telephony.dataconnection;
 
 import android.app.AlarmManager;
 import android.app.PendingIntent;
+import android.content.ActivityNotFoundException;
 import android.content.ContentResolver;
 import android.content.ContentValues;
 import android.content.Context;
@@ -38,6 +39,7 @@ import android.os.Message;
 import android.os.Messenger;
 import android.os.SystemClock;
 import android.os.SystemProperties;
+import android.os.UserHandle;
 import android.provider.Settings;
 import android.provider.Telephony;
 import android.telephony.CellLocation;
@@ -53,6 +55,7 @@ import com.android.internal.telephony.Phone;
 import com.android.internal.telephony.PhoneBase;
 import com.android.internal.telephony.DctConstants;
 import com.android.internal.telephony.EventLogTags;
+import com.android.internal.telephony.TelephonyIntents;
 import com.android.internal.telephony.gsm.GSMPhone;
 import com.android.internal.telephony.PhoneConstants;
 import com.android.internal.telephony.RILConstants;
@@ -227,7 +230,7 @@ public final class DcTracker extends DcTrackerBase {
     }
 
     private ApnContext addApnContext(String type, NetworkConfig networkConfig) {
-        ApnContext apnContext = new ApnContext(type, LOG_TAG);
+        ApnContext apnContext = new ApnContext(mPhone.getContext(), type, LOG_TAG);
         apnContext.setDependencyMet(networkConfig.dependencyMet);
         mApnContexts.put(type, apnContext);
         return apnContext;
@@ -356,6 +359,16 @@ public final class DcTracker extends DcTrackerBase {
         return DctConstants.State.FAILED;
     }
 
+    // Return if apn type is a provisioning apn.
+    @Override
+    protected boolean isProvisioningApn(String apnType) {
+        ApnContext apnContext = mApnContexts.get(apnType);
+        if (apnContext != null) {
+            return apnContext.isProvisioningApn();
+        }
+        return false;
+    }
+
     // Return state of overall
     @Override
     public DctConstants.State getOverallState() {
@@ -603,7 +616,7 @@ public final class DcTracker extends DcTrackerBase {
 
         if (apnContext == null ){
             if (DBG) log("trySetupData new apn context for type:" + type);
-            apnContext = new ApnContext(type, LOG_TAG);
+            apnContext = new ApnContext(mPhone.getContext(), type, LOG_TAG);
             mApnContexts.put(type, apnContext);
         }
         apnContext.setReason(reason);
@@ -1137,18 +1150,6 @@ public final class DcTracker extends DcTrackerBase {
         if (DBG) log("onDataStateChanged(ar): X");
     }
 
-    private void notifyDefaultData(ApnContext apnContext) {
-        if (DBG) {
-            log("notifyDefaultData: type=" + apnContext.getApnType()
-                + ", reason:" + apnContext.getReason());
-        }
-        apnContext.setState(DctConstants.State.CONNECTED);
-        // setState(DctConstants.State.CONNECTED);
-        mPhone.notifyDataConnection(apnContext.getReason(), apnContext.getApnType());
-        startNetStatPoll();
-        startDataStallAlarm(DATA_STALL_NOT_SUSPECTED);
-    }
-
     // TODO: For multiple Active APNs not exactly sure how to do this.
     @Override
     protected void gotoIdleAndNotifyDataConnection(String reason) {
@@ -1484,6 +1485,35 @@ public final class DcTracker extends DcTrackerBase {
         notifyOffApnsOfAvailability(null);
     }
 
+    @Override
+    protected void completeConnection(ApnContext apnContext) {
+        boolean isProvApn = apnContext.isProvisioningApn();
+
+        if (DBG) log("completeConnection: successful, notify the world apnContext=" + apnContext);
+
+        if (mIsProvisioning && !TextUtils.isEmpty(mProvisioningUrl)) {
+            if (DBG) {
+                log("completeConnection: MOBILE_PROVISIONING_ACTION url="
+                        + mProvisioningUrl);
+            }
+            Intent newIntent =
+                    new Intent(Intent.ACTION_VIEW, Uri.parse(mProvisioningUrl));
+            newIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
+                    Intent.FLAG_ACTIVITY_NEW_TASK);
+            try {
+                mPhone.getContext().startActivity(newIntent);
+            } catch (ActivityNotFoundException e) {
+                loge("completeConnection: startActivityAsUser failed" + e);
+            }
+        }
+        mIsProvisioning = false;
+        mProvisioningUrl = null;
+
+        mPhone.notifyDataConnection(apnContext.getReason(), apnContext.getApnType());
+        startNetStatPoll();
+        startDataStallAlarm(DATA_STALL_NOT_SUSPECTED);
+    }
+
     /**
      * A SETUP (aka bringUp) has completed, possibly with an error. If
      * there is an error this method will call {@link #onDataSetupCompleteError}.
@@ -1557,7 +1587,52 @@ public final class DcTracker extends DcTrackerBase {
                 } else {
                     SystemProperties.set(PUPPET_MASTER_RADIO_STRESS_TEST, "false");
                 }
-                notifyDefaultData(apnContext);
+
+                // A connection is setup
+                apnContext.setState(DctConstants.State.CONNECTED);
+                boolean isProvApn = apnContext.isProvisioningApn();
+                if ((!isProvApn) || mIsProvisioning) {
+                    // Complete the connection normally notifying the world we're connected.
+                    // We do this if this isn't a special provisioning apn or if we've been
+                    // told its time to provision.
+                    completeConnection(apnContext);
+                } else {
+                    // This is a provisioning APN that we're reporting as connected. Later
+                    // when the user desires to upgrade this to a "default" connection,
+                    // mIsProvisioning == true, we'll go through the code path above.
+                    // mIsProvisioning becomes true when CMD_ENABLE_MOBILE_PROVISIONING
+                    // is sent to the DCT.
+                    if (DBG) {
+                        log("onDataSetupComplete: successful, BUT send connected to prov apn as"
+                                + " mIsProvisioning:" + mIsProvisioning + " == false"
+                                + " && (isProvisioningApn:" + isProvApn + " == true");
+                    }
+
+                    Intent intent = new Intent(
+                            TelephonyIntents.ACTION_DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN);
+                    intent.putExtra(PhoneConstants.DATA_APN_KEY, apnContext.getApnSetting().apn);
+                    intent.putExtra(PhoneConstants.DATA_APN_TYPE_KEY, apnContext.getApnType());
+
+                    String apnType = apnContext.getApnType();
+                    LinkProperties linkProperties = getLinkProperties(apnType);
+                    if (linkProperties != null) {
+                        intent.putExtra(PhoneConstants.DATA_LINK_PROPERTIES_KEY, linkProperties);
+                        String iface = linkProperties.getInterfaceName();
+                        if (iface != null) {
+                            intent.putExtra(PhoneConstants.DATA_IFACE_NAME_KEY, iface);
+                        }
+                    }
+                    LinkCapabilities linkCapabilities = getLinkCapabilities(apnType);
+                    if (linkCapabilities != null) {
+                        intent.putExtra(PhoneConstants.DATA_LINK_CAPABILITIES_KEY, linkCapabilities);
+                    }
+
+                    mPhone.getContext().sendBroadcastAsUser(intent, UserHandle.ALL);
+                }
+                if (DBG) {
+                    log("onDataSetupComplete: SETUP complete type=" + apnContext.getApnType()
+                        + ", reason:" + apnContext.getReason());
+                }
             }
         } else {
             cause = (DcFailCause) (ar.result);