diff options
author | Kristian Monsen <kristianm@google.com> | 2010-08-19 20:22:53 +0100 |
---|---|---|
committer | Kristian Monsen <kristianm@google.com> | 2010-08-20 18:15:45 +0100 |
commit | dba35c09e3456af1a58a33e60ae04c32d106f6b3 (patch) | |
tree | 293ad646e9f1ea02544f01f1e84758256edd6bcc /core/java | |
parent | 20b73ce9d14607fecc22cfeaa648737175c14d6a (diff) | |
download | frameworks_base-dba35c09e3456af1a58a33e60ae04c32d106f6b3.zip frameworks_base-dba35c09e3456af1a58a33e60ae04c32d106f6b3.tar.gz frameworks_base-dba35c09e3456af1a58a33e60ae04c32d106f6b3.tar.bz2 |
Java calls to get Android specific files.
This is needed for https://android-git.corp.google.com/g/#change,62114.
inputStreamForAndroidResource returns an InputStream for a given url
readFromStream is a static method that just reads from a given stream, and catches any exceptions
Change-Id: I4f744bfe851c6d13e16c8eb7f89981cf306d175c
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/webkit/BrowserFrame.java | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/core/java/android/webkit/BrowserFrame.java b/core/java/android/webkit/BrowserFrame.java index b021ded..e972c24 100644 --- a/core/java/android/webkit/BrowserFrame.java +++ b/core/java/android/webkit/BrowserFrame.java @@ -38,6 +38,8 @@ import android.view.WindowManager; import junit.framework.Assert; +import java.io.FileNotFoundException; +import java.io.IOException; import java.io.InputStream; import java.lang.ref.WeakReference; import java.net.URLEncoder; @@ -658,6 +660,96 @@ class BrowserFrame extends Handler { } /** + * Called by JNI. + * Read from an InputStream into a supplied byte[] + * This method catches any exceptions so they don't crash the JVM. + * @param inputStream InputStream to read from. + * @param output Bytearray that gets the output. + * @return the number of bytes read, or -i if then end of stream has been reached + */ + private static int readFromStream(InputStream inputStream, byte[] output) { + try { + return inputStream.read(output); + } catch(java.io.IOException e) { + // If we get an exception, return end of stream + return -1; + } + } + + /** + * Get the InputStream for an Android resource + * There are three different kinds of android resources: + * - file:///android_res + * - file:///android_asset + * - content:// + * @param url The url to load. + * @return An InputStream to the android resource + */ + private InputStream inputStreamForAndroidResource(String url, int type) { + final int RESOURCE = 1; + final int ASSET = 2; + final int CONTENT = 3; + + if (type == RESOURCE) { + // file:///android_res + if (url == null || url.length() == 0) { + Log.e(LOGTAG, "url has length 0 " + url); + return null; + } + int slash = url.indexOf('/'); + int dot = url.indexOf('.', slash); + if (slash == -1 || dot == -1) { + Log.e(LOGTAG, "Incorrect res path: " + url); + return null; + } + String subClassName = url.substring(0, slash); + String fieldName = url.substring(slash + 1, dot); + String errorMsg = null; + try { + final Class<?> d = mContext.getApplicationContext() + .getClassLoader().loadClass( + mContext.getPackageName() + ".R$" + + subClassName); + final java.lang.reflect.Field field = d.getField(fieldName); + final int id = field.getInt(null); + TypedValue value = new TypedValue(); + mContext.getResources().getValue(id, value, true); + if (value.type == TypedValue.TYPE_STRING) { + return mContext.getAssets().openNonAsset( + value.assetCookie, value.string.toString(), + AssetManager.ACCESS_STREAMING); + } else { + // Old stack only supports TYPE_STRING for res files + Log.e(LOGTAG, "not of type string: " + url); + return null; + } + } catch (Exception e) { + Log.e(LOGTAG, "Exception: " + url); + return null; + } + + } else if (type == ASSET) { + // file:///android_asset + try { + AssetManager assets = mContext.getAssets(); + return assets.open(url, AssetManager.ACCESS_STREAMING); + } catch (IOException e) { + return null; + } + } else if (type == CONTENT) { + try { + Uri uri = Uri.parse(url); + return mContext.getContentResolver().openInputStream(uri); + } catch (Exception e) { + Log.e(LOGTAG, "Exception: " + url); + return null; + } + } else { + return null; + } + } + + /** * Start loading a resource. * @param loaderHandle The native ResourceLoader that is the target of the * data. |