1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
/* //device/libs/android_runtime/android_util_StringBlock.cpp
**
** Copyright 2006, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
#define LOG_TAG "StringBlock"
#include "jni.h"
#include "JNIHelp.h"
#include <utils/misc.h>
#include <core_jni_helpers.h>
#include <utils/Log.h>
#include <androidfw/ResourceTypes.h>
#include <stdio.h>
namespace android {
// ----------------------------------------------------------------------------
static jlong android_content_StringBlock_nativeCreate(JNIEnv* env, jobject clazz,
jbyteArray bArray,
jint off, jint len)
{
if (bArray == NULL) {
jniThrowNullPointerException(env, NULL);
return 0;
}
jsize bLen = env->GetArrayLength(bArray);
if (off < 0 || off >= bLen || len < 0 || len > bLen || (off+len) > bLen) {
jniThrowException(env, "java/lang/IndexOutOfBoundsException", NULL);
return 0;
}
jbyte* b = env->GetByteArrayElements(bArray, NULL);
ResStringPool* osb = new ResStringPool(b+off, len, true);
env->ReleaseByteArrayElements(bArray, b, 0);
if (osb == NULL || osb->getError() != NO_ERROR) {
jniThrowException(env, "java/lang/IllegalArgumentException", NULL);
delete osb;
return 0;
}
return reinterpret_cast<jlong>(osb);
}
static jint android_content_StringBlock_nativeGetSize(JNIEnv* env, jobject clazz,
jlong token)
{
ResStringPool* osb = reinterpret_cast<ResStringPool*>(token);
if (osb == NULL) {
jniThrowNullPointerException(env, NULL);
return 0;
}
return osb->size();
}
static jstring android_content_StringBlock_nativeGetString(JNIEnv* env, jobject clazz,
jlong token, jint idx)
{
ResStringPool* osb = reinterpret_cast<ResStringPool*>(token);
if (osb == NULL) {
jniThrowNullPointerException(env, NULL);
return 0;
}
size_t len;
const char* str8 = osb->string8At(idx, &len);
if (str8 != NULL) {
return env->NewStringUTF(str8);
}
const char16_t* str = osb->stringAt(idx, &len);
if (str == NULL) {
jniThrowException(env, "java/lang/IndexOutOfBoundsException", NULL);
return 0;
}
return env->NewString((const jchar*)str, len);
}
static jintArray android_content_StringBlock_nativeGetStyle(JNIEnv* env, jobject clazz,
jlong token, jint idx)
{
ResStringPool* osb = reinterpret_cast<ResStringPool*>(token);
if (osb == NULL) {
jniThrowNullPointerException(env, NULL);
return NULL;
}
const ResStringPool_span* spans = osb->styleAt(idx);
if (spans == NULL) {
return NULL;
}
const ResStringPool_span* pos = spans;
int num = 0;
while (pos->name.index != ResStringPool_span::END) {
num++;
pos++;
}
if (num == 0) {
return NULL;
}
jintArray array = env->NewIntArray((num*sizeof(ResStringPool_span))/sizeof(jint));
if (array == NULL) { // NewIntArray already threw OutOfMemoryError.
return NULL;
}
num = 0;
static const int numInts = sizeof(ResStringPool_span)/sizeof(jint);
while (spans->name.index != ResStringPool_span::END) {
env->SetIntArrayRegion(array,
num*numInts, numInts,
(jint*)spans);
spans++;
num++;
}
return array;
}
static void android_content_StringBlock_nativeDestroy(JNIEnv* env, jobject clazz,
jlong token)
{
ResStringPool* osb = reinterpret_cast<ResStringPool*>(token);
if (osb == NULL) {
jniThrowNullPointerException(env, NULL);
return;
}
delete osb;
}
// ----------------------------------------------------------------------------
/*
* JNI registration.
*/
static const JNINativeMethod gStringBlockMethods[] = {
/* name, signature, funcPtr */
{ "nativeCreate", "([BII)J",
(void*) android_content_StringBlock_nativeCreate },
{ "nativeGetSize", "(J)I",
(void*) android_content_StringBlock_nativeGetSize },
{ "nativeGetString", "(JI)Ljava/lang/String;",
(void*) android_content_StringBlock_nativeGetString },
{ "nativeGetStyle", "(JI)[I",
(void*) android_content_StringBlock_nativeGetStyle },
{ "nativeDestroy", "(J)V",
(void*) android_content_StringBlock_nativeDestroy },
};
int register_android_content_StringBlock(JNIEnv* env)
{
return RegisterMethodsOrDie(env,
"android/content/res/StringBlock", gStringBlockMethods, NELEM(gStringBlockMethods));
}
}; // namespace android
|