Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 16 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_UTF_H_ |
| 18 | #define ART_RUNTIME_UTF_H_ |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 19 | |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 20 | #include "base/macros.h" |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 21 | #include "base/mutex.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 22 | |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 23 | #include <stddef.h> |
| 24 | #include <stdint.h> |
| 25 | |
Elliott Hughes | b465ab0 | 2011-08-24 11:21:21 -0700 | [diff] [blame] | 26 | /* |
| 27 | * All UTF-8 in art is actually modified UTF-8. Mostly, this distinction |
| 28 | * doesn't matter. |
| 29 | * |
| 30 | * See http://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8 for the details. |
| 31 | */ |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 32 | namespace art { |
Ian Rogers | a672490 | 2013-09-23 09:23:37 -0700 | [diff] [blame] | 33 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 34 | namespace mirror { |
Ian Rogers | a672490 | 2013-09-23 09:23:37 -0700 | [diff] [blame] | 35 | template<class T> class PrimitiveArray; |
| 36 | typedef PrimitiveArray<uint16_t> CharArray; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 37 | } // namespace mirror |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 38 | |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 39 | /* |
| 40 | * Returns the number of UTF-16 characters in the given modified UTF-8 string. |
| 41 | */ |
| 42 | size_t CountModifiedUtf8Chars(const char* utf8); |
Bruce Hoult | 1646d7a | 2015-10-28 15:06:12 +0300 | [diff] [blame] | 43 | size_t CountModifiedUtf8Chars(const char* utf8, size_t byte_count); |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 44 | |
| 45 | /* |
| 46 | * Returns the number of modified UTF-8 bytes needed to represent the given |
| 47 | * UTF-16 string. |
| 48 | */ |
| 49 | size_t CountUtf8Bytes(const uint16_t* chars, size_t char_count); |
| 50 | |
| 51 | /* |
Elliott Hughes | b465ab0 | 2011-08-24 11:21:21 -0700 | [diff] [blame] | 52 | * Convert from Modified UTF-8 to UTF-16. |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 53 | */ |
Elliott Hughes | b465ab0 | 2011-08-24 11:21:21 -0700 | [diff] [blame] | 54 | void ConvertModifiedUtf8ToUtf16(uint16_t* utf16_out, const char* utf8_in); |
Bruce Hoult | 1646d7a | 2015-10-28 15:06:12 +0300 | [diff] [blame] | 55 | void ConvertModifiedUtf8ToUtf16(uint16_t* utf16_out, size_t out_chars, |
| 56 | const char* utf8_in, size_t in_bytes); |
Elliott Hughes | b465ab0 | 2011-08-24 11:21:21 -0700 | [diff] [blame] | 57 | |
| 58 | /* |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 59 | * Compare two modified UTF-8 strings as UTF-16 code point values in a non-locale sensitive manner |
| 60 | */ |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 61 | ALWAYS_INLINE int CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(const char* utf8_1, |
| 62 | const char* utf8_2); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 63 | |
| 64 | /* |
Vladimir Marko | a48aef4 | 2014-12-03 17:53:53 +0000 | [diff] [blame] | 65 | * Compare a null-terminated modified UTF-8 string with a UTF-16 string (not null-terminated) |
| 66 | * as code point values in a non-locale sensitive manner. |
Ian Rogers | 637c65b | 2013-05-31 11:46:00 -0700 | [diff] [blame] | 67 | */ |
Vladimir Marko | a48aef4 | 2014-12-03 17:53:53 +0000 | [diff] [blame] | 68 | int CompareModifiedUtf8ToUtf16AsCodePointValues(const char* utf8, const uint16_t* utf16, |
| 69 | size_t utf16_length); |
Ian Rogers | 637c65b | 2013-05-31 11:46:00 -0700 | [diff] [blame] | 70 | |
| 71 | /* |
Elliott Hughes | b465ab0 | 2011-08-24 11:21:21 -0700 | [diff] [blame] | 72 | * Convert from UTF-16 to Modified UTF-8. Note that the output is _not_ |
| 73 | * NUL-terminated. You probably need to call CountUtf8Bytes before calling |
| 74 | * this anyway, so if you want a NUL-terminated string, you know where to |
| 75 | * put the NUL byte. |
| 76 | */ |
Bruce Hoult | 1646d7a | 2015-10-28 15:06:12 +0300 | [diff] [blame] | 77 | void ConvertUtf16ToModifiedUtf8(char* utf8_out, size_t byte_count, |
| 78 | const uint16_t* utf16_in, size_t char_count); |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 79 | |
| 80 | /* |
| 81 | * The java.lang.String hashCode() algorithm. |
| 82 | */ |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 83 | int32_t ComputeUtf16Hash(mirror::CharArray* chars, int32_t offset, size_t char_count) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 84 | SHARED_REQUIRES(Locks::mutator_lock_); |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 85 | int32_t ComputeUtf16Hash(const uint16_t* chars, size_t char_count); |
| 86 | |
Mathieu Chartier | e7c9a8c | 2014-11-06 16:35:45 -0800 | [diff] [blame] | 87 | // Compute a hash code of a modified UTF-8 string. Not the standard java hash since it returns a |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 88 | // uint32_t and hashes individual chars instead of codepoint words. |
| 89 | uint32_t ComputeModifiedUtf8Hash(const char* chars); |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 90 | |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 91 | /* |
Narayan Kamath | a5afcfc | 2015-01-29 20:06:46 +0000 | [diff] [blame] | 92 | * Retrieve the next UTF-16 character or surrogate pair from a UTF-8 string. |
| 93 | * single byte, 2-byte and 3-byte UTF-8 sequences result in a single UTF-16 |
Narayan Kamath | 8508e37 | 2015-05-06 14:55:43 +0100 | [diff] [blame] | 94 | * character (possibly one half of a surrogate) whereas 4-byte UTF-8 sequences |
| 95 | * result in a surrogate pair. Use GetLeadingUtf16Char and GetTrailingUtf16Char |
| 96 | * to process the return value of this function. |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 97 | * |
| 98 | * Advances "*utf8_data_in" to the start of the next character. |
| 99 | * |
| 100 | * WARNING: If a string is corrupted by dropping a '\0' in the middle |
Narayan Kamath | a5afcfc | 2015-01-29 20:06:46 +0000 | [diff] [blame] | 101 | * of a multi byte sequence, you can end up overrunning the buffer with |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 102 | * reads (and possibly with the writes if the length was computed and |
| 103 | * cached before the damage). For performance reasons, this function |
| 104 | * assumes that the string being parsed is known to be valid (e.g., by |
| 105 | * already being verified). Most strings we process here are coming |
| 106 | * out of dex files or other internal translations, so the only real |
| 107 | * risk comes from the JNI NewStringUTF call. |
| 108 | */ |
Narayan Kamath | a5afcfc | 2015-01-29 20:06:46 +0000 | [diff] [blame] | 109 | uint32_t GetUtf16FromUtf8(const char** utf8_data_in); |
| 110 | |
| 111 | /** |
| 112 | * Gets the leading UTF-16 character from a surrogate pair, or the sole |
| 113 | * UTF-16 character from the return value of GetUtf16FromUtf8. |
| 114 | */ |
| 115 | ALWAYS_INLINE uint16_t GetLeadingUtf16Char(uint32_t maybe_pair); |
| 116 | |
| 117 | /** |
| 118 | * Gets the trailing UTF-16 character from a surrogate pair, or 0 otherwise |
| 119 | * from the return value of GetUtf16FromUtf8. |
| 120 | */ |
| 121 | ALWAYS_INLINE uint16_t GetTrailingUtf16Char(uint32_t maybe_pair); |
Elliott Hughes | 814e403 | 2011-08-23 12:07:56 -0700 | [diff] [blame] | 122 | |
| 123 | } // namespace art |
| 124 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 125 | #endif // ART_RUNTIME_UTF_H_ |