/* * Copyright (C) 2024 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 MEDIAPROVIDER_PDF_JNI_PDFCLIENT_UTILS_UTF_H_ #define MEDIAPROVIDER_PDF_JNI_PDFCLIENT_UTILS_UTF_H_ #include #include namespace pdfClient_utils { // Wrapper around a Pdfium function to make it easier to get a UTF-8-encoded // string. // Many Pdfium functions have the following form: // size_t FPDF_GetFooString(other_args ..., void* buffer, size_t buffer_len); // These functions return the number of bytes in the result, regardless of the // value of buffer_len. If buffer_len >= the number of bytes in the result, // buffer is also filled in with the result value. That value is // UTF16LE-encoded. // // GetUtf8Result accepts as its only argument a std::function that accepts a // void* buffer and size_t buffer_len (with any other arguments being pre-bound // using, e.g., BindFront, a lambda, or a wrapper), and returns a UTF-8-encoded // string. Allocating the buffer and dealing with UTF conversions are abstracted // away. template std::string GetUtf8Result(const std::function& f); // Converts a UTF-8-encoded string into a UTF16LE u16string. std::u16string Utf8ToUtf16Le(std::string_view utf8); } // namespace pdfClient_utils #endif // MEDIAPROVIDER_PDF_JNI_PDFCLIENT_UTILS_UTF_H_