/** ******************************************************************************* * Copyright (C) 1996-2005, International Business Machines Corporation and * * others. All Rights Reserved. * ******************************************************************************* * ******************************************************************************* */ #define LOG_TAG "NativeCollation" #include "ErrorCode.h" #include "JNIHelp.h" #include "JniConstants.h" #include "ScopedJavaUnicodeString.h" #include "ScopedUtfChars.h" #include "UniquePtr.h" #include "ucol_imp.h" #include "unicode/ucol.h" #include "unicode/ucoleitr.h" static UCollator* toCollator(jint address) { return reinterpret_cast(static_cast(address)); } static UCollationElements* toCollationElements(jint address) { return reinterpret_cast(static_cast(address)); } static void NativeCollation_closeCollator(JNIEnv*, jclass, jint address) { ucol_close(toCollator(address)); } static void NativeCollation_closeElements(JNIEnv*, jclass, jint address) { ucol_closeElements(toCollationElements(address)); } static jint NativeCollation_compare(JNIEnv* env, jclass, jint address, jstring lhs0, jstring rhs0) { ScopedJavaUnicodeString lhs(env, lhs0); ScopedJavaUnicodeString rhs(env, rhs0); return ucol_strcoll(toCollator(address), lhs.unicodeString().getBuffer(), lhs.unicodeString().length(), rhs.unicodeString().getBuffer(), rhs.unicodeString().length()); } static jint NativeCollation_getAttribute(JNIEnv* env, jclass, jint address, jint type) { UErrorCode status = U_ZERO_ERROR; jint result = ucol_getAttribute(toCollator(address), (UColAttribute) type, &status); icu4jni_error(env, status); return result; } static jint NativeCollation_getCollationElementIterator(JNIEnv* env, jclass, jint address, jstring source0) { ScopedJavaUnicodeString source(env, source0); UErrorCode status = U_ZERO_ERROR; UCollationElements* result = ucol_openElements(toCollator(address), source.unicodeString().getBuffer(), source.unicodeString().length(), &status); icu4jni_error(env, status); return static_cast(reinterpret_cast(result)); } static jint NativeCollation_getMaxExpansion(JNIEnv*, jclass, jint address, jint order) { return ucol_getMaxExpansion(toCollationElements(address), order); } static jint NativeCollation_getOffset(JNIEnv*, jclass, jint address) { return ucol_getOffset(toCollationElements(address)); } static jstring NativeCollation_getRules(JNIEnv* env, jclass, jint address) { int32_t length = 0; const UChar* rules = ucol_getRules(toCollator(address), &length); return env->NewString(rules, length); } static jbyteArray NativeCollation_getSortKey(JNIEnv* env, jclass, jint address, jstring source0) { ScopedJavaUnicodeString source(env, source0); const UCollator* collator = toCollator(address); uint8_t byteArray[UCOL_MAX_BUFFER * 2]; UniquePtr largerByteArray; uint8_t* usedByteArray = byteArray; const UChar* chars = source.unicodeString().getBuffer(); size_t charCount = source.unicodeString().length(); size_t byteArraySize = ucol_getSortKey(collator, chars, charCount, usedByteArray, sizeof(byteArray) - 1); if (byteArraySize > sizeof(byteArray) - 1) { // didn't fit, try again with a larger buffer. largerByteArray.reset(new uint8_t[byteArraySize + 1]); usedByteArray = largerByteArray.get(); byteArraySize = ucol_getSortKey(collator, chars, charCount, usedByteArray, byteArraySize); } if (byteArraySize == 0) { return NULL; } jbyteArray result = env->NewByteArray(byteArraySize); env->SetByteArrayRegion(result, 0, byteArraySize, reinterpret_cast(usedByteArray)); return result; } static jint NativeCollation_next(JNIEnv* env, jclass, jint address) { UErrorCode status = U_ZERO_ERROR; jint result = ucol_next(toCollationElements(address), &status); icu4jni_error(env, status); return result; } static jint NativeCollation_openCollator(JNIEnv* env, jclass, jstring localeName) { ScopedUtfChars localeChars(env, localeName); if (localeChars.c_str() == NULL) { return 0; } UErrorCode status = U_ZERO_ERROR; UCollator* c = ucol_open(localeChars.c_str(), &status); icu4jni_error(env, status); return static_cast(reinterpret_cast(c)); } static jint NativeCollation_openCollatorFromRules(JNIEnv* env, jclass, jstring rules0, jint mode, jint strength) { ScopedJavaUnicodeString rules(env, rules0); UErrorCode status = U_ZERO_ERROR; UCollator* c = ucol_openRules(rules.unicodeString().getBuffer(), rules.unicodeString().length(), UColAttributeValue(mode), UCollationStrength(strength), NULL, &status); icu4jni_error(env, status); return static_cast(reinterpret_cast(c)); } static jint NativeCollation_previous(JNIEnv* env, jclass, jint address) { UErrorCode status = U_ZERO_ERROR; jint result = ucol_previous(toCollationElements(address), &status); icu4jni_error(env, status); return result; } static void NativeCollation_reset(JNIEnv*, jclass, jint address) { ucol_reset(toCollationElements(address)); } static jint NativeCollation_safeClone(JNIEnv* env, jclass, jint address) { UErrorCode status = U_ZERO_ERROR; jint bufferSize = U_COL_SAFECLONE_BUFFERSIZE; UCollator* c = ucol_safeClone(toCollator(address), NULL, &bufferSize, &status); icu4jni_error(env, status); return static_cast(reinterpret_cast(c)); } static void NativeCollation_setAttribute(JNIEnv* env, jclass, jint address, jint type, jint value) { UErrorCode status = U_ZERO_ERROR; ucol_setAttribute(toCollator(address), (UColAttribute)type, (UColAttributeValue)value, &status); icu4jni_error(env, status); } static void NativeCollation_setOffset(JNIEnv* env, jclass, jint address, jint offset) { UErrorCode status = U_ZERO_ERROR; ucol_setOffset(toCollationElements(address), offset, &status); icu4jni_error(env, status); } static void NativeCollation_setText(JNIEnv* env, jclass, jint address, jstring source0) { ScopedJavaUnicodeString source(env, source0); UErrorCode status = U_ZERO_ERROR; ucol_setText(toCollationElements(address), source.unicodeString().getBuffer(), source.unicodeString().length(), &status); icu4jni_error(env, status); } static JNINativeMethod gMethods[] = { NATIVE_METHOD(NativeCollation, closeCollator, "(I)V"), NATIVE_METHOD(NativeCollation, closeElements, "(I)V"), NATIVE_METHOD(NativeCollation, compare, "(ILjava/lang/String;Ljava/lang/String;)I"), NATIVE_METHOD(NativeCollation, getAttribute, "(II)I"), NATIVE_METHOD(NativeCollation, getCollationElementIterator, "(ILjava/lang/String;)I"), NATIVE_METHOD(NativeCollation, getMaxExpansion, "(II)I"), NATIVE_METHOD(NativeCollation, getOffset, "(I)I"), NATIVE_METHOD(NativeCollation, getRules, "(I)Ljava/lang/String;"), NATIVE_METHOD(NativeCollation, getSortKey, "(ILjava/lang/String;)[B"), NATIVE_METHOD(NativeCollation, next, "(I)I"), NATIVE_METHOD(NativeCollation, openCollator, "(Ljava/lang/String;)I"), NATIVE_METHOD(NativeCollation, openCollatorFromRules, "(Ljava/lang/String;II)I"), NATIVE_METHOD(NativeCollation, previous, "(I)I"), NATIVE_METHOD(NativeCollation, reset, "(I)V"), NATIVE_METHOD(NativeCollation, safeClone, "(I)I"), NATIVE_METHOD(NativeCollation, setAttribute, "(III)V"), NATIVE_METHOD(NativeCollation, setOffset, "(II)V"), NATIVE_METHOD(NativeCollation, setText, "(ILjava/lang/String;)V"), }; int register_libcore_icu_NativeCollation(JNIEnv* env) { return jniRegisterNativeMethods(env, "libcore/icu/NativeCollation", gMethods, NELEM(gMethods)); }