/* * Copyright (c) 2021 Huawei Device Co., Ltd. * 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 ECMASCRIPT_MEM_C_STRING_H #define ECMASCRIPT_MEM_C_STRING_H #include #include #include #include "ecmascript/common.h" #include "ecmascript/mem/caddress_allocator.h" namespace panda::ecmascript { class EcmaString; class JSTaggedValue; using CString = std::basic_string, CAddressAllocator>; using CS16tring = std::basic_string, CAddressAllocator>; using CStringStream = std::basic_stringstream, CAddressAllocator>; struct CStringHash { using argument_type = panda::ecmascript::CString; using result_type = std::size_t; size_t operator()(const CString &str) const noexcept { return std::hash()(std::string_view(str.data(), str.size())); } }; constexpr int DEC_BASE = 10; // PRINT will skip '\0' in utf16 during conversion of utf8 enum StringConvertedUsage { PRINT, LOGICOPERATION }; long CStringToL(const CString &str); int64_t CStringToLL(const CString &str); uint64_t CStringToULL(const CString &str); float CStringToF(const CString &str); double CStringToD(const CString &str); CString ConvertToString(const std::string &str); std::string PUBLIC_API ConvertToStdString(const CString &str); // '\u0000' is skip according to holdZero // cesu8 means non-BMP1 codepoints should encode as 1 utf8 string CString PUBLIC_API ConvertToString(const ecmascript::EcmaString *s, StringConvertedUsage usage = StringConvertedUsage::PRINT, bool cesu8 = false); void ConvertAndAppendToString(CString &str, const ecmascript::EcmaString *s, StringConvertedUsage usage = StringConvertedUsage::PRINT, bool cesu8 = false); void ConvertQuotedAndAppendToString(CString &str, const ecmascript::EcmaString *s, StringConvertedUsage usage = StringConvertedUsage::PRINT, bool cesu8 = false); CString ConvertToString(ecmascript::JSTaggedValue key); template std::enable_if_t, CString> FloatToCString(T number) { CStringStream strStream; strStream << number; return strStream.str(); } template std::enable_if_t, CString> ToCString(T number) { static constexpr uint32_t BUFF_SIZE = std::numeric_limits::digits10 + 3; // 3: Reserved for sign bit and '\0'. int64_t n = static_cast(number); char buf[BUFF_SIZE]; uint32_t position = BUFF_SIZE - 1; buf[position] = '\0'; bool isNeg = true; if (n >= 0) { n = -n; isNeg = false; } do { buf[--position] = static_cast('0' - (n % DEC_BASE)); n /= DEC_BASE; } while (n); if (isNeg) { buf[--position] = '-'; } return CString(&buf[position]); } template void AppendToCString(CString &str, T number) { static_assert(std::is_integral_v); int64_t n = static_cast(number); uint32_t preSize = str.size(); bool isNeg = true; if (n >= 0) { n = -n; isNeg = false; } do { str.push_back(static_cast('0' - (n % DEC_BASE))); n /= DEC_BASE; } while (n); if (isNeg) { str.push_back('-'); } std::reverse(str.begin() + preSize, str.end()); } } // namespace panda::ecmascript namespace std { template <> struct hash { using argument_type = panda::ecmascript::CStringHash::argument_type; using result_type = panda::ecmascript::CStringHash::result_type; size_t operator()(const panda::ecmascript::CString &str) const noexcept { return panda::ecmascript::CStringHash()(str); } }; } // namespace std #endif // ECMASCRIPT_MEM_C_STRING_H