diff options
| author | Andreas Gampe <agampe@google.com> | 2014-10-29 17:47:10 +0000 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2014-10-29 17:47:10 +0000 |
| commit | 955bee89abada8b6541f499c686376d4434242b1 (patch) | |
| tree | ad54b9608db1be2c23432ef81333e86db5c8c78b | |
| parent | 263829e0e794f48335db2f49078c53fe10292e98 (diff) | |
| parent | dfdc6acc4809f395b9db2136acc89b6de932a1a5 (diff) | |
| download | frameworks_base-955bee89abada8b6541f499c686376d4434242b1.zip frameworks_base-955bee89abada8b6541f499c686376d4434242b1.tar.gz frameworks_base-955bee89abada8b6541f499c686376d4434242b1.tar.bz2 | |
am dfdc6acc: resolved conflicts for merge of 3c8cf51f into stage-aosp-master
* commit 'dfdc6acc4809f395b9db2136acc89b6de932a1a5':
Stop using apache http to download Gps XTRA data.
| -rw-r--r-- | services/core/java/com/android/server/location/GpsLocationProvider.java | 2 | ||||
| -rw-r--r-- | services/core/java/com/android/server/location/GpsXtraDownloader.java | 86 |
2 files changed, 21 insertions, 67 deletions
diff --git a/services/core/java/com/android/server/location/GpsLocationProvider.java b/services/core/java/com/android/server/location/GpsLocationProvider.java index 0198e46..5a81b4c 100644 --- a/services/core/java/com/android/server/location/GpsLocationProvider.java +++ b/services/core/java/com/android/server/location/GpsLocationProvider.java @@ -880,7 +880,7 @@ public class GpsLocationProvider implements LocationProviderInterface { AsyncTask.THREAD_POOL_EXECUTOR.execute(new Runnable() { @Override public void run() { - GpsXtraDownloader xtraDownloader = new GpsXtraDownloader(mContext, mProperties); + GpsXtraDownloader xtraDownloader = new GpsXtraDownloader(mProperties); byte[] data = xtraDownloader.downloadXtraData(); if (data != null) { if (DEBUG) { diff --git a/services/core/java/com/android/server/location/GpsXtraDownloader.java b/services/core/java/com/android/server/location/GpsXtraDownloader.java index a5eef6a..c820a43 100644 --- a/services/core/java/com/android/server/location/GpsXtraDownloader.java +++ b/services/core/java/com/android/server/location/GpsXtraDownloader.java @@ -17,20 +17,14 @@ package com.android.server.location; import android.content.Context; -import android.net.Proxy; -import android.net.http.AndroidHttpClient; import android.text.TextUtils; import android.util.Log; -import org.apache.http.HttpEntity; -import org.apache.http.HttpHost; -import org.apache.http.HttpResponse; -import org.apache.http.StatusLine; -import org.apache.http.client.methods.HttpGet; -import org.apache.http.client.methods.HttpUriRequest; -import org.apache.http.conn.params.ConnRouteParams; +import java.net.HttpURLConnection; +import java.net.URL; +import libcore.io.IoUtils; +import libcore.io.Streams; -import java.io.DataInputStream; import java.io.IOException; import java.util.Properties; import java.util.Random; @@ -46,15 +40,12 @@ public class GpsXtraDownloader { private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG); private static final String DEFAULT_USER_AGENT = "Android"; - private final Context mContext; private final String[] mXtraServers; // to load balance our server requests private int mNextServerIndex; private final String mUserAgent; - GpsXtraDownloader(Context context, Properties properties) { - mContext = context; - + GpsXtraDownloader(Properties properties) { // read XTRA servers from the Properties object int count = 0; String server1 = properties.getProperty("XTRA_SERVER_1"); @@ -75,7 +66,6 @@ public class GpsXtraDownloader { if (count == 0) { Log.e(TAG, "No XTRA servers were specified in the GPS configuration"); mXtraServers = null; - return; } else { mXtraServers = new String[count]; count = 0; @@ -90,9 +80,6 @@ public class GpsXtraDownloader { } byte[] downloadXtraData() { - String proxyHost = Proxy.getHost(mContext); - int proxyPort = Proxy.getPort(mContext); - boolean useProxy = (proxyHost != null && proxyPort != -1); byte[] result = null; int startIndex = mNextServerIndex; @@ -102,7 +89,7 @@ public class GpsXtraDownloader { // load balance our requests among the available servers while (result == null) { - result = doDownload(mXtraServers[mNextServerIndex], useProxy, proxyHost, proxyPort); + result = doDownload(mXtraServers[mNextServerIndex]); // increment mNextServerIndex and wrap around if necessary mNextServerIndex++; @@ -116,65 +103,32 @@ public class GpsXtraDownloader { return result; } - protected byte[] doDownload(String url, boolean isProxySet, - String proxyHost, int proxyPort) { + protected byte[] doDownload(String url) { if (DEBUG) Log.d(TAG, "Downloading XTRA data from " + url); - AndroidHttpClient client = null; + HttpURLConnection connection = null; try { - if (DEBUG) Log.d(TAG, "XTRA user agent: " + mUserAgent); - client = AndroidHttpClient.newInstance(mUserAgent); - HttpUriRequest req = new HttpGet(url); - - if (isProxySet) { - HttpHost proxy = new HttpHost(proxyHost, proxyPort); - ConnRouteParams.setDefaultProxy(req.getParams(), proxy); - } - - req.addHeader( + connection = (HttpURLConnection) (new URL(url)).openConnection(); + connection.setRequestProperty( "Accept", "*/*, application/vnd.wap.mms-message, application/vnd.wap.sic"); - - req.addHeader( + connection.setRequestProperty( "x-wap-profile", "http://www.openmobilealliance.org/tech/profiles/UAPROF/ccppschema-20021212#"); - HttpResponse response = client.execute(req); - StatusLine status = response.getStatusLine(); - if (status.getStatusCode() != 200) { // HTTP 200 is success. - if (DEBUG) Log.d(TAG, "HTTP error: " + status.getReasonPhrase()); + connection.connect(); + int statusCode = connection.getResponseCode(); + if (statusCode != HttpURLConnection.HTTP_OK) { + if (DEBUG) Log.d(TAG, "HTTP error downloading gps XTRA: " + statusCode); return null; } - HttpEntity entity = response.getEntity(); - byte[] body = null; - if (entity != null) { - try { - if (entity.getContentLength() > 0) { - body = new byte[(int) entity.getContentLength()]; - DataInputStream dis = new DataInputStream(entity.getContent()); - try { - dis.readFully(body); - } finally { - try { - dis.close(); - } catch (IOException e) { - Log.e(TAG, "Unexpected IOException.", e); - } - } - } - } finally { - if (entity != null) { - entity.consumeContent(); - } - } - } - return body; - } catch (Exception e) { - if (DEBUG) Log.d(TAG, "error " + e); + return Streams.readFully(connection.getInputStream()); + } catch (IOException ioe) { + if (DEBUG) Log.d(TAG, "Error downloading gps XTRA: ", ioe); } finally { - if (client != null) { - client.close(); + if (connection != null) { + connection.disconnect(); } } return null; |
