The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005 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 | */ |
| 16 | |
Abhishek Arya | e0dce90 | 2015-08-20 17:38:16 -0700 | [diff] [blame] | 17 | #define __STDC_LIMIT_MACROS |
| 18 | #include <stdint.h> |
| 19 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 20 | #include <utils/String8.h> |
| 21 | |
Elliott Hughes | 1f8bc86 | 2015-07-29 14:02:29 -0700 | [diff] [blame] | 22 | #include <utils/Compat.h> |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | #include <utils/Log.h> |
| 24 | #include <utils/String16.h> |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 25 | |
Steven Moreland | d21cfab | 2017-03-10 08:58:36 -0800 | [diff] [blame] | 26 | #include <ctype.h> |
| 27 | |
Sergio Giro | d2529f2 | 2015-09-23 16:22:59 +0100 | [diff] [blame] | 28 | #include "SharedBuffer.h" |
| 29 | |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 30 | /* |
| 31 | * Functions outside android is below the namespace android, since they use |
| 32 | * functions and constants in android namespace. |
| 33 | */ |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 34 | |
| 35 | // --------------------------------------------------------------------------- |
| 36 | |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 37 | namespace android { |
| 38 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 39 | // Separator used by resource paths. This is not platform dependent contrary |
| 40 | // to OS_PATH_SEPARATOR. |
| 41 | #define RES_PATH_SEPARATOR '/' |
| 42 | |
Steven Moreland | 241b93c | 2018-03-06 09:11:29 -0800 | [diff] [blame] | 43 | static inline char* getEmptyString() { |
| 44 | static SharedBuffer* gEmptyStringBuf = [] { |
| 45 | SharedBuffer* buf = SharedBuffer::alloc(1); |
| 46 | char* str = static_cast<char*>(buf->data()); |
| 47 | *str = 0; |
| 48 | return buf; |
| 49 | }(); |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 50 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 51 | gEmptyStringBuf->acquire(); |
Steven Moreland | 241b93c | 2018-03-06 09:11:29 -0800 | [diff] [blame] | 52 | return static_cast<char*>(gEmptyStringBuf->data()); |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | // --------------------------------------------------------------------------- |
| 56 | |
| 57 | static char* allocFromUTF8(const char* in, size_t len) |
| 58 | { |
| 59 | if (len > 0) { |
Sergio Giro | ebabef2 | 2015-08-18 14:44:54 +0100 | [diff] [blame] | 60 | if (len == SIZE_MAX) { |
| 61 | return NULL; |
| 62 | } |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 63 | SharedBuffer* buf = SharedBuffer::alloc(len+1); |
Steve Block | ae07445 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 64 | ALOG_ASSERT(buf, "Unable to allocate shared buffer"); |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 65 | if (buf) { |
| 66 | char* str = (char*)buf->data(); |
| 67 | memcpy(str, in, len); |
| 68 | str[len] = 0; |
| 69 | return str; |
| 70 | } |
| 71 | return NULL; |
| 72 | } |
| 73 | |
| 74 | return getEmptyString(); |
| 75 | } |
| 76 | |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 77 | static char* allocFromUTF16(const char16_t* in, size_t len) |
| 78 | { |
Kenny Root | 9a2d83e | 2009-12-04 09:38:48 -0800 | [diff] [blame] | 79 | if (len == 0) return getEmptyString(); |
| 80 | |
Sergio Giro | c4966a3 | 2016-06-28 18:02:29 +0100 | [diff] [blame] | 81 | // Allow for closing '\0' |
| 82 | const ssize_t resultStrLen = utf16_to_utf8_length(in, len) + 1; |
| 83 | if (resultStrLen < 1) { |
Kenny Root | ba0165b | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 84 | return getEmptyString(); |
| 85 | } |
Kenny Root | 9a2d83e | 2009-12-04 09:38:48 -0800 | [diff] [blame] | 86 | |
Sergio Giro | c4966a3 | 2016-06-28 18:02:29 +0100 | [diff] [blame] | 87 | SharedBuffer* buf = SharedBuffer::alloc(resultStrLen); |
Steve Block | ae07445 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 88 | ALOG_ASSERT(buf, "Unable to allocate shared buffer"); |
Kenny Root | ba0165b | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 89 | if (!buf) { |
| 90 | return getEmptyString(); |
Kenny Root | 9a2d83e | 2009-12-04 09:38:48 -0800 | [diff] [blame] | 91 | } |
| 92 | |
Sergio Giro | c4966a3 | 2016-06-28 18:02:29 +0100 | [diff] [blame] | 93 | char* resultStr = (char*)buf->data(); |
| 94 | utf16_to_utf8(in, len, resultStr, resultStrLen); |
| 95 | return resultStr; |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | static char* allocFromUTF32(const char32_t* in, size_t len) |
| 99 | { |
Kenny Root | ba0165b | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 100 | if (len == 0) { |
| 101 | return getEmptyString(); |
| 102 | } |
| 103 | |
Sergio Giro | c4966a3 | 2016-06-28 18:02:29 +0100 | [diff] [blame] | 104 | const ssize_t resultStrLen = utf32_to_utf8_length(in, len) + 1; |
| 105 | if (resultStrLen < 1) { |
Kenny Root | ba0165b | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 106 | return getEmptyString(); |
| 107 | } |
| 108 | |
Sergio Giro | c4966a3 | 2016-06-28 18:02:29 +0100 | [diff] [blame] | 109 | SharedBuffer* buf = SharedBuffer::alloc(resultStrLen); |
Steve Block | ae07445 | 2012-01-09 18:35:44 +0000 | [diff] [blame] | 110 | ALOG_ASSERT(buf, "Unable to allocate shared buffer"); |
Kenny Root | ba0165b | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 111 | if (!buf) { |
| 112 | return getEmptyString(); |
| 113 | } |
| 114 | |
Sergio Giro | c4966a3 | 2016-06-28 18:02:29 +0100 | [diff] [blame] | 115 | char* resultStr = (char*) buf->data(); |
| 116 | utf32_to_utf8(in, len, resultStr, resultStrLen); |
Kenny Root | ba0165b | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 117 | |
Sergio Giro | c4966a3 | 2016-06-28 18:02:29 +0100 | [diff] [blame] | 118 | return resultStr; |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 119 | } |
| 120 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 121 | // --------------------------------------------------------------------------- |
| 122 | |
| 123 | String8::String8() |
| 124 | : mString(getEmptyString()) |
| 125 | { |
| 126 | } |
| 127 | |
Mathias Agopian | 4485d0d | 2013-05-08 16:04:13 -0700 | [diff] [blame] | 128 | String8::String8(StaticLinkage) |
| 129 | : mString(0) |
| 130 | { |
| 131 | // this constructor is used when we can't rely on the static-initializers |
| 132 | // having run. In this case we always allocate an empty string. It's less |
| 133 | // efficient than using getEmptyString(), but we assume it's uncommon. |
| 134 | |
| 135 | char* data = static_cast<char*>( |
| 136 | SharedBuffer::alloc(sizeof(char))->data()); |
| 137 | data[0] = 0; |
| 138 | mString = data; |
| 139 | } |
| 140 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 141 | String8::String8(const String8& o) |
| 142 | : mString(o.mString) |
| 143 | { |
| 144 | SharedBuffer::bufferFromData(mString)->acquire(); |
| 145 | } |
| 146 | |
| 147 | String8::String8(const char* o) |
| 148 | : mString(allocFromUTF8(o, strlen(o))) |
| 149 | { |
| 150 | if (mString == NULL) { |
| 151 | mString = getEmptyString(); |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | String8::String8(const char* o, size_t len) |
| 156 | : mString(allocFromUTF8(o, len)) |
| 157 | { |
| 158 | if (mString == NULL) { |
| 159 | mString = getEmptyString(); |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | String8::String8(const String16& o) |
| 164 | : mString(allocFromUTF16(o.string(), o.size())) |
| 165 | { |
| 166 | } |
| 167 | |
| 168 | String8::String8(const char16_t* o) |
| 169 | : mString(allocFromUTF16(o, strlen16(o))) |
| 170 | { |
| 171 | } |
| 172 | |
| 173 | String8::String8(const char16_t* o, size_t len) |
| 174 | : mString(allocFromUTF16(o, len)) |
| 175 | { |
| 176 | } |
| 177 | |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 178 | String8::String8(const char32_t* o) |
| 179 | : mString(allocFromUTF32(o, strlen32(o))) |
| 180 | { |
| 181 | } |
| 182 | |
| 183 | String8::String8(const char32_t* o, size_t len) |
| 184 | : mString(allocFromUTF32(o, len)) |
| 185 | { |
| 186 | } |
| 187 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 188 | String8::~String8() |
| 189 | { |
| 190 | SharedBuffer::bufferFromData(mString)->release(); |
| 191 | } |
| 192 | |
Sergio Giro | d2529f2 | 2015-09-23 16:22:59 +0100 | [diff] [blame] | 193 | size_t String8::length() const |
| 194 | { |
| 195 | return SharedBuffer::sizeFromData(mString)-1; |
| 196 | } |
| 197 | |
Jeff Brown | 1d618d6 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 198 | String8 String8::format(const char* fmt, ...) |
| 199 | { |
| 200 | va_list args; |
| 201 | va_start(args, fmt); |
| 202 | |
| 203 | String8 result(formatV(fmt, args)); |
| 204 | |
| 205 | va_end(args); |
| 206 | return result; |
| 207 | } |
| 208 | |
| 209 | String8 String8::formatV(const char* fmt, va_list args) |
| 210 | { |
| 211 | String8 result; |
| 212 | result.appendFormatV(fmt, args); |
| 213 | return result; |
| 214 | } |
| 215 | |
Jeff Brown | 48da31b | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 216 | void String8::clear() { |
| 217 | SharedBuffer::bufferFromData(mString)->release(); |
| 218 | mString = getEmptyString(); |
| 219 | } |
| 220 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 221 | void String8::setTo(const String8& other) |
| 222 | { |
| 223 | SharedBuffer::bufferFromData(other.mString)->acquire(); |
| 224 | SharedBuffer::bufferFromData(mString)->release(); |
| 225 | mString = other.mString; |
| 226 | } |
| 227 | |
| 228 | status_t String8::setTo(const char* other) |
| 229 | { |
Andreas Huber | 10e5da5 | 2010-06-10 11:14:26 -0700 | [diff] [blame] | 230 | const char *newString = allocFromUTF8(other, strlen(other)); |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 231 | SharedBuffer::bufferFromData(mString)->release(); |
Andreas Huber | 10e5da5 | 2010-06-10 11:14:26 -0700 | [diff] [blame] | 232 | mString = newString; |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 233 | if (mString) return NO_ERROR; |
| 234 | |
| 235 | mString = getEmptyString(); |
| 236 | return NO_MEMORY; |
| 237 | } |
| 238 | |
| 239 | status_t String8::setTo(const char* other, size_t len) |
| 240 | { |
Andreas Huber | 10e5da5 | 2010-06-10 11:14:26 -0700 | [diff] [blame] | 241 | const char *newString = allocFromUTF8(other, len); |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 242 | SharedBuffer::bufferFromData(mString)->release(); |
Andreas Huber | 10e5da5 | 2010-06-10 11:14:26 -0700 | [diff] [blame] | 243 | mString = newString; |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 244 | if (mString) return NO_ERROR; |
| 245 | |
| 246 | mString = getEmptyString(); |
| 247 | return NO_MEMORY; |
| 248 | } |
| 249 | |
| 250 | status_t String8::setTo(const char16_t* other, size_t len) |
| 251 | { |
Andreas Huber | 10e5da5 | 2010-06-10 11:14:26 -0700 | [diff] [blame] | 252 | const char *newString = allocFromUTF16(other, len); |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 253 | SharedBuffer::bufferFromData(mString)->release(); |
Andreas Huber | 10e5da5 | 2010-06-10 11:14:26 -0700 | [diff] [blame] | 254 | mString = newString; |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 255 | if (mString) return NO_ERROR; |
| 256 | |
| 257 | mString = getEmptyString(); |
| 258 | return NO_MEMORY; |
| 259 | } |
| 260 | |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 261 | status_t String8::setTo(const char32_t* other, size_t len) |
| 262 | { |
Andreas Huber | 10e5da5 | 2010-06-10 11:14:26 -0700 | [diff] [blame] | 263 | const char *newString = allocFromUTF32(other, len); |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 264 | SharedBuffer::bufferFromData(mString)->release(); |
Andreas Huber | 10e5da5 | 2010-06-10 11:14:26 -0700 | [diff] [blame] | 265 | mString = newString; |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 266 | if (mString) return NO_ERROR; |
| 267 | |
| 268 | mString = getEmptyString(); |
| 269 | return NO_MEMORY; |
| 270 | } |
| 271 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 272 | status_t String8::append(const String8& other) |
| 273 | { |
| 274 | const size_t otherLen = other.bytes(); |
| 275 | if (bytes() == 0) { |
| 276 | setTo(other); |
| 277 | return NO_ERROR; |
| 278 | } else if (otherLen == 0) { |
| 279 | return NO_ERROR; |
| 280 | } |
| 281 | |
| 282 | return real_append(other.string(), otherLen); |
| 283 | } |
| 284 | |
| 285 | status_t String8::append(const char* other) |
| 286 | { |
| 287 | return append(other, strlen(other)); |
| 288 | } |
| 289 | |
| 290 | status_t String8::append(const char* other, size_t otherLen) |
| 291 | { |
| 292 | if (bytes() == 0) { |
| 293 | return setTo(other, otherLen); |
| 294 | } else if (otherLen == 0) { |
| 295 | return NO_ERROR; |
| 296 | } |
| 297 | |
| 298 | return real_append(other, otherLen); |
| 299 | } |
| 300 | |
Jeff Brown | 35a154e | 2010-07-15 23:54:05 -0700 | [diff] [blame] | 301 | status_t String8::appendFormat(const char* fmt, ...) |
| 302 | { |
Jeff Brown | 647925d | 2010-11-10 16:03:06 -0800 | [diff] [blame] | 303 | va_list args; |
| 304 | va_start(args, fmt); |
Jeff Brown | 35a154e | 2010-07-15 23:54:05 -0700 | [diff] [blame] | 305 | |
Jeff Brown | 647925d | 2010-11-10 16:03:06 -0800 | [diff] [blame] | 306 | status_t result = appendFormatV(fmt, args); |
| 307 | |
| 308 | va_end(args); |
| 309 | return result; |
| 310 | } |
| 311 | |
| 312 | status_t String8::appendFormatV(const char* fmt, va_list args) |
| 313 | { |
Fengwei Yin | fff9d11 | 2014-02-27 01:17:09 +0800 | [diff] [blame] | 314 | int n, result = NO_ERROR; |
| 315 | va_list tmp_args; |
| 316 | |
| 317 | /* args is undefined after vsnprintf. |
| 318 | * So we need a copy here to avoid the |
| 319 | * second vsnprintf access undefined args. |
| 320 | */ |
| 321 | va_copy(tmp_args, args); |
| 322 | n = vsnprintf(NULL, 0, fmt, tmp_args); |
| 323 | va_end(tmp_args); |
| 324 | |
Jeff Brown | 35a154e | 2010-07-15 23:54:05 -0700 | [diff] [blame] | 325 | if (n != 0) { |
| 326 | size_t oldLength = length(); |
| 327 | char* buf = lockBuffer(oldLength + n); |
| 328 | if (buf) { |
Jeff Brown | 647925d | 2010-11-10 16:03:06 -0800 | [diff] [blame] | 329 | vsnprintf(buf + oldLength, n + 1, fmt, args); |
Jeff Brown | 35a154e | 2010-07-15 23:54:05 -0700 | [diff] [blame] | 330 | } else { |
| 331 | result = NO_MEMORY; |
| 332 | } |
| 333 | } |
Jeff Brown | 35a154e | 2010-07-15 23:54:05 -0700 | [diff] [blame] | 334 | return result; |
| 335 | } |
| 336 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 337 | status_t String8::real_append(const char* other, size_t otherLen) |
| 338 | { |
| 339 | const size_t myLen = bytes(); |
Samuel Tan | 95fd527 | 2016-02-18 16:56:21 -0800 | [diff] [blame] | 340 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 341 | SharedBuffer* buf = SharedBuffer::bufferFromData(mString) |
| 342 | ->editResize(myLen+otherLen+1); |
| 343 | if (buf) { |
| 344 | char* str = (char*)buf->data(); |
| 345 | mString = str; |
| 346 | str += myLen; |
| 347 | memcpy(str, other, otherLen); |
| 348 | str[otherLen] = '\0'; |
| 349 | return NO_ERROR; |
| 350 | } |
| 351 | return NO_MEMORY; |
| 352 | } |
| 353 | |
| 354 | char* String8::lockBuffer(size_t size) |
| 355 | { |
| 356 | SharedBuffer* buf = SharedBuffer::bufferFromData(mString) |
| 357 | ->editResize(size+1); |
| 358 | if (buf) { |
| 359 | char* str = (char*)buf->data(); |
| 360 | mString = str; |
| 361 | return str; |
| 362 | } |
| 363 | return NULL; |
| 364 | } |
| 365 | |
| 366 | void String8::unlockBuffer() |
| 367 | { |
| 368 | unlockBuffer(strlen(mString)); |
| 369 | } |
| 370 | |
| 371 | status_t String8::unlockBuffer(size_t size) |
| 372 | { |
| 373 | if (size != this->size()) { |
| 374 | SharedBuffer* buf = SharedBuffer::bufferFromData(mString) |
| 375 | ->editResize(size+1); |
Jeff Brown | 35a154e | 2010-07-15 23:54:05 -0700 | [diff] [blame] | 376 | if (! buf) { |
| 377 | return NO_MEMORY; |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 378 | } |
Jeff Brown | 35a154e | 2010-07-15 23:54:05 -0700 | [diff] [blame] | 379 | |
| 380 | char* str = (char*)buf->data(); |
| 381 | str[size] = 0; |
| 382 | mString = str; |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 383 | } |
Jeff Brown | 35a154e | 2010-07-15 23:54:05 -0700 | [diff] [blame] | 384 | |
| 385 | return NO_ERROR; |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | ssize_t String8::find(const char* other, size_t start) const |
| 389 | { |
| 390 | size_t len = size(); |
| 391 | if (start >= len) { |
| 392 | return -1; |
| 393 | } |
| 394 | const char* s = mString+start; |
| 395 | const char* p = strstr(s, other); |
| 396 | return p ? p-mString : -1; |
| 397 | } |
| 398 | |
Jeff Brown | 5ee915a | 2014-06-06 19:30:15 -0700 | [diff] [blame] | 399 | bool String8::removeAll(const char* other) { |
| 400 | ssize_t index = find(other); |
| 401 | if (index < 0) return false; |
| 402 | |
| 403 | char* buf = lockBuffer(size()); |
| 404 | if (!buf) return false; // out of memory |
| 405 | |
| 406 | size_t skip = strlen(other); |
| 407 | size_t len = size(); |
| 408 | size_t tail = index; |
| 409 | while (size_t(index) < len) { |
| 410 | ssize_t next = find(other, index + skip); |
| 411 | if (next < 0) { |
| 412 | next = len; |
| 413 | } |
| 414 | |
Andreas Gampe | dd060f0 | 2014-11-13 15:50:17 -0800 | [diff] [blame] | 415 | memmove(buf + tail, buf + index + skip, next - index - skip); |
Jeff Brown | 5ee915a | 2014-06-06 19:30:15 -0700 | [diff] [blame] | 416 | tail += next - index - skip; |
| 417 | index = next; |
| 418 | } |
| 419 | unlockBuffer(tail); |
| 420 | return true; |
| 421 | } |
| 422 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 423 | void String8::toLower() |
| 424 | { |
| 425 | toLower(0, size()); |
| 426 | } |
| 427 | |
| 428 | void String8::toLower(size_t start, size_t length) |
| 429 | { |
| 430 | const size_t len = size(); |
| 431 | if (start >= len) { |
| 432 | return; |
| 433 | } |
| 434 | if (start+length > len) { |
| 435 | length = len-start; |
| 436 | } |
| 437 | char* buf = lockBuffer(len); |
| 438 | buf += start; |
| 439 | while (length > 0) { |
| 440 | *buf = tolower(*buf); |
| 441 | buf++; |
| 442 | length--; |
| 443 | } |
| 444 | unlockBuffer(len); |
| 445 | } |
| 446 | |
| 447 | void String8::toUpper() |
| 448 | { |
| 449 | toUpper(0, size()); |
| 450 | } |
| 451 | |
| 452 | void String8::toUpper(size_t start, size_t length) |
| 453 | { |
| 454 | const size_t len = size(); |
| 455 | if (start >= len) { |
| 456 | return; |
| 457 | } |
| 458 | if (start+length > len) { |
| 459 | length = len-start; |
| 460 | } |
| 461 | char* buf = lockBuffer(len); |
| 462 | buf += start; |
| 463 | while (length > 0) { |
| 464 | *buf = toupper(*buf); |
| 465 | buf++; |
| 466 | length--; |
| 467 | } |
| 468 | unlockBuffer(len); |
| 469 | } |
| 470 | |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 471 | size_t String8::getUtf32Length() const |
| 472 | { |
Kenny Root | ba0165b | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 473 | return utf8_to_utf32_length(mString, length()); |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | int32_t String8::getUtf32At(size_t index, size_t *next_index) const |
| 477 | { |
Kenny Root | ba0165b | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 478 | return utf32_from_utf8_at(mString, length(), index, next_index); |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 479 | } |
| 480 | |
Kenny Root | ba0165b | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 481 | void String8::getUtf32(char32_t* dst) const |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 482 | { |
Kenny Root | ba0165b | 2010-11-09 14:37:23 -0800 | [diff] [blame] | 483 | utf8_to_utf32(mString, length(), dst); |
Daisuke Miyakawa | 44dad3e | 2009-06-30 20:40:42 +0900 | [diff] [blame] | 484 | } |
| 485 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 486 | // --------------------------------------------------------------------------- |
| 487 | // Path functions |
| 488 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 489 | void String8::setPathName(const char* name) |
| 490 | { |
| 491 | setPathName(name, strlen(name)); |
| 492 | } |
| 493 | |
| 494 | void String8::setPathName(const char* name, size_t len) |
| 495 | { |
| 496 | char* buf = lockBuffer(len); |
| 497 | |
| 498 | memcpy(buf, name, len); |
| 499 | |
| 500 | // remove trailing path separator, if present |
| 501 | if (len > 0 && buf[len-1] == OS_PATH_SEPARATOR) |
| 502 | len--; |
| 503 | |
| 504 | buf[len] = '\0'; |
| 505 | |
| 506 | unlockBuffer(len); |
| 507 | } |
| 508 | |
| 509 | String8 String8::getPathLeaf(void) const |
| 510 | { |
| 511 | const char* cp; |
| 512 | const char*const buf = mString; |
| 513 | |
| 514 | cp = strrchr(buf, OS_PATH_SEPARATOR); |
| 515 | if (cp == NULL) |
| 516 | return String8(*this); |
| 517 | else |
| 518 | return String8(cp+1); |
| 519 | } |
| 520 | |
| 521 | String8 String8::getPathDir(void) const |
| 522 | { |
| 523 | const char* cp; |
| 524 | const char*const str = mString; |
| 525 | |
| 526 | cp = strrchr(str, OS_PATH_SEPARATOR); |
| 527 | if (cp == NULL) |
| 528 | return String8(""); |
| 529 | else |
| 530 | return String8(str, cp - str); |
| 531 | } |
| 532 | |
| 533 | String8 String8::walkPath(String8* outRemains) const |
| 534 | { |
| 535 | const char* cp; |
| 536 | const char*const str = mString; |
| 537 | const char* buf = str; |
| 538 | |
| 539 | cp = strchr(buf, OS_PATH_SEPARATOR); |
| 540 | if (cp == buf) { |
| 541 | // don't include a leading '/'. |
| 542 | buf = buf+1; |
| 543 | cp = strchr(buf, OS_PATH_SEPARATOR); |
| 544 | } |
| 545 | |
| 546 | if (cp == NULL) { |
| 547 | String8 res = buf != str ? String8(buf) : *this; |
| 548 | if (outRemains) *outRemains = String8(""); |
| 549 | return res; |
| 550 | } |
| 551 | |
| 552 | String8 res(buf, cp-buf); |
| 553 | if (outRemains) *outRemains = String8(cp+1); |
| 554 | return res; |
| 555 | } |
| 556 | |
| 557 | /* |
| 558 | * Helper function for finding the start of an extension in a pathname. |
| 559 | * |
| 560 | * Returns a pointer inside mString, or NULL if no extension was found. |
| 561 | */ |
| 562 | char* String8::find_extension(void) const |
| 563 | { |
| 564 | const char* lastSlash; |
| 565 | const char* lastDot; |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 566 | const char* const str = mString; |
| 567 | |
| 568 | // only look at the filename |
| 569 | lastSlash = strrchr(str, OS_PATH_SEPARATOR); |
| 570 | if (lastSlash == NULL) |
| 571 | lastSlash = str; |
| 572 | else |
| 573 | lastSlash++; |
| 574 | |
| 575 | // find the last dot |
| 576 | lastDot = strrchr(lastSlash, '.'); |
| 577 | if (lastDot == NULL) |
| 578 | return NULL; |
| 579 | |
| 580 | // looks good, ship it |
| 581 | return const_cast<char*>(lastDot); |
| 582 | } |
| 583 | |
| 584 | String8 String8::getPathExtension(void) const |
| 585 | { |
| 586 | char* ext; |
| 587 | |
| 588 | ext = find_extension(); |
| 589 | if (ext != NULL) |
| 590 | return String8(ext); |
| 591 | else |
| 592 | return String8(""); |
| 593 | } |
| 594 | |
| 595 | String8 String8::getBasePath(void) const |
| 596 | { |
| 597 | char* ext; |
| 598 | const char* const str = mString; |
| 599 | |
| 600 | ext = find_extension(); |
| 601 | if (ext == NULL) |
| 602 | return String8(*this); |
| 603 | else |
| 604 | return String8(str, ext - str); |
| 605 | } |
| 606 | |
| 607 | String8& String8::appendPath(const char* name) |
| 608 | { |
| 609 | // TODO: The test below will fail for Win32 paths. Fix later or ignore. |
| 610 | if (name[0] != OS_PATH_SEPARATOR) { |
| 611 | if (*name == '\0') { |
| 612 | // nothing to do |
| 613 | return *this; |
| 614 | } |
| 615 | |
| 616 | size_t len = length(); |
| 617 | if (len == 0) { |
| 618 | // no existing filename, just use the new one |
| 619 | setPathName(name); |
| 620 | return *this; |
| 621 | } |
| 622 | |
| 623 | // make room for oldPath + '/' + newPath |
| 624 | int newlen = strlen(name); |
| 625 | |
| 626 | char* buf = lockBuffer(len+1+newlen); |
| 627 | |
| 628 | // insert a '/' if needed |
| 629 | if (buf[len-1] != OS_PATH_SEPARATOR) |
| 630 | buf[len++] = OS_PATH_SEPARATOR; |
| 631 | |
| 632 | memcpy(buf+len, name, newlen+1); |
| 633 | len += newlen; |
| 634 | |
| 635 | unlockBuffer(len); |
| 636 | |
| 637 | return *this; |
| 638 | } else { |
| 639 | setPathName(name); |
| 640 | return *this; |
| 641 | } |
| 642 | } |
| 643 | |
| 644 | String8& String8::convertToResPath() |
| 645 | { |
| 646 | #if OS_PATH_SEPARATOR != RES_PATH_SEPARATOR |
| 647 | size_t len = length(); |
| 648 | if (len > 0) { |
| 649 | char * buf = lockBuffer(len); |
| 650 | for (char * end = buf + len; buf < end; ++buf) { |
| 651 | if (*buf == OS_PATH_SEPARATOR) |
| 652 | *buf = RES_PATH_SEPARATOR; |
| 653 | } |
| 654 | unlockBuffer(len); |
| 655 | } |
| 656 | #endif |
| 657 | return *this; |
| 658 | } |
| 659 | |
The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 660 | }; // namespace android |