| /* |
| * Copyright (C) 2016 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. |
| */ |
| |
| #ifndef UTIL_H_ |
| #define UTIL_H_ |
| |
| #include <cstdlib> |
| #include <memory> |
| #include <sstream> |
| #include <vector> |
| |
| #include <android-base/macros.h> |
| #include <util/map_ptr.h> |
| |
| #include "androidfw/StringPiece.h" |
| |
| #ifdef __ANDROID__ |
| #define ANDROID_LOG(x) LOG(x) |
| #else |
| #define ANDROID_LOG(x) std::stringstream() |
| #endif |
| |
| namespace android { |
| namespace util { |
| |
| /** |
| * Makes a std::unique_ptr<> with the template parameter inferred by the |
| * compiler. |
| * This will be present in C++14 and can be removed then. |
| */ |
| template <typename T, class... Args> |
| std::unique_ptr<T> make_unique(Args&&... args) { |
| return std::unique_ptr<T>(new T{std::forward<Args>(args)...}); |
| } |
| |
| // Based on std::unique_ptr, but uses free() to release malloc'ed memory |
| // without incurring the size increase of holding on to a custom deleter. |
| template <typename T> |
| class unique_cptr { |
| public: |
| using pointer = typename std::add_pointer<T>::type; |
| |
| constexpr unique_cptr() : ptr_(nullptr) {} |
| constexpr explicit unique_cptr(std::nullptr_t) : ptr_(nullptr) {} |
| explicit unique_cptr(pointer ptr) : ptr_(ptr) {} |
| unique_cptr(unique_cptr&& o) noexcept : ptr_(o.ptr_) { o.ptr_ = nullptr; } |
| |
| ~unique_cptr() { std::free(reinterpret_cast<void*>(ptr_)); } |
| |
| inline unique_cptr& operator=(unique_cptr&& o) noexcept { |
| if (&o == this) { |
| return *this; |
| } |
| |
| std::free(reinterpret_cast<void*>(ptr_)); |
| ptr_ = o.ptr_; |
| o.ptr_ = nullptr; |
| return *this; |
| } |
| |
| inline unique_cptr& operator=(std::nullptr_t) { |
| std::free(reinterpret_cast<void*>(ptr_)); |
| ptr_ = nullptr; |
| return *this; |
| } |
| |
| pointer release() { |
| pointer result = ptr_; |
| ptr_ = nullptr; |
| return result; |
| } |
| |
| inline pointer get() const { return ptr_; } |
| |
| void reset(pointer ptr = pointer()) { |
| if (ptr == ptr_) { |
| return; |
| } |
| |
| pointer old_ptr = ptr_; |
| ptr_ = ptr; |
| std::free(reinterpret_cast<void*>(old_ptr)); |
| } |
| |
| inline void swap(unique_cptr& o) { std::swap(ptr_, o.ptr_); } |
| |
| inline explicit operator bool() const { return ptr_ != nullptr; } |
| |
| inline typename std::add_lvalue_reference<T>::type operator*() const { return *ptr_; } |
| |
| inline pointer operator->() const { return ptr_; } |
| |
| inline bool operator==(const unique_cptr& o) const { return ptr_ == o.ptr_; } |
| |
| inline bool operator!=(const unique_cptr& o) const { return ptr_ != o.ptr_; } |
| |
| inline bool operator==(std::nullptr_t) const { return ptr_ == nullptr; } |
| |
| inline bool operator!=(std::nullptr_t) const { return ptr_ != nullptr; } |
| |
| private: |
| DISALLOW_COPY_AND_ASSIGN(unique_cptr); |
| |
| pointer ptr_; |
| }; |
| |
| void ReadUtf16StringFromDevice(const uint16_t* src, size_t len, std::string* out); |
| |
| // Converts a UTF-8 string to a UTF-16 string. |
| std::u16string Utf8ToUtf16(const StringPiece& utf8); |
| |
| // Converts a UTF-16 string to a UTF-8 string. |
| std::string Utf16ToUtf8(const StringPiece16& utf16); |
| |
| std::vector<std::string> SplitAndLowercase(const android::StringPiece& str, char sep); |
| |
| template <typename T> |
| inline bool IsFourByteAligned(const incfs::map_ptr<T>& data) { |
| return ((size_t)data.unsafe_ptr() & 0x3U) == 0; |
| } |
| |
| inline bool IsFourByteAligned(const void* data) { |
| return ((size_t)data & 0x3U) == 0; |
| } |
| |
| } // namespace util |
| } // namespace android |
| |
| #endif /* UTIL_H_ */ |