diff options
| author | 2023-08-23 21:58:44 +0000 | |
|---|---|---|
| committer | 2023-08-23 21:58:44 +0000 | |
| commit | 5e49797a2d0e18803bdd67a6243eae604cb3f905 (patch) | |
| tree | 050be930b277cd976206be93fee4dc65092d0033 /tools/aapt/Utils.cpp | |
| parent | 10c9d947a9f5ac30b407860bbb3d765d46329d30 (diff) | |
| parent | ca6f08759407ddc99b1b3e7e6e24bc9090fe6572 (diff) | |
Merge "Move convertToResPath from libutils to aapt." into main am: 0637b02cd6 am: ca6f087594
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2721353
Change-Id: I6274c35cfdf56187ec1ec8f2d00274619841d2a7
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'tools/aapt/Utils.cpp')
| -rw-r--r-- | tools/aapt/Utils.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tools/aapt/Utils.cpp b/tools/aapt/Utils.cpp new file mode 100644 index 000000000000..36b018e7dd2c --- /dev/null +++ b/tools/aapt/Utils.cpp @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2005 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. + */ + +#include "Utils.h" + +#include <utils/Compat.h> + +// Separator used by resource paths. This is not platform dependent contrary +// to OS_PATH_SEPARATOR. +#define RES_PATH_SEPARATOR '/' + +using android::String8; + +void convertToResPath([[maybe_unused]] String8& s) { +#if OS_PATH_SEPARATOR != RES_PATH_SEPARATOR + size_t len = s.length(); + if (len > 0) { + char* buf = s.lockBuffer(len); + for (char* end = buf + len; buf < end; ++buf) { + if (*buf == OS_PATH_SEPARATOR) *buf = RES_PATH_SEPARATOR; + } + s.unlockBuffer(len); + } +#endif +} |