/* * Copyright (C) 2010-2016 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef StringConcatenate_h #define StringConcatenate_h #include #ifndef AtomicString_h #include #endif #ifndef StringView_h #include #endif // This macro is helpful for testing how many intermediate Strings are created while evaluating an // expression containing operator+. #ifndef WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING #define WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING() ((void)0) #endif namespace WTF { template class StringTypeAdapter; template<> class StringTypeAdapter { public: StringTypeAdapter(char character) : m_character(character) { } unsigned length() { return 1; } bool is8Bit() { return true; } void writeTo(LChar* destination) const { *destination = m_character; } void writeTo(UChar* destination) const { *destination = m_character; } String toString() const { return String(&m_character, 1); } private: char m_character; }; template<> class StringTypeAdapter { public: StringTypeAdapter(UChar character) : m_character(character) { } unsigned length() const { return 1; } bool is8Bit() const { return m_character <= 0xff; } void writeTo(LChar* destination) const { ASSERT(is8Bit()); *destination = static_cast(m_character); } void writeTo(UChar* destination) const { *destination = m_character; } String toString() const { return String(&m_character, 1); } private: UChar m_character; }; template<> class StringTypeAdapter { public: StringTypeAdapter(const LChar* characters) : m_characters(characters) , m_length(strlen(reinterpret_cast(characters))) { } unsigned length() const { return m_length; } bool is8Bit() const { return true; } void writeTo(LChar* destination) const { StringView(m_characters, m_length).getCharactersWithUpconvert(destination); } void writeTo(UChar* destination) const { StringView(m_characters, m_length).getCharactersWithUpconvert(destination); } String toString() const { return String(m_characters, m_length); } private: const LChar* m_characters; unsigned m_length; }; template<> class StringTypeAdapter { public: StringTypeAdapter(const UChar* characters) : m_characters(characters) { unsigned length = 0; while (m_characters[length]) ++length; if (length > std::numeric_limits::max()) // FIXME this is silly https://bugs.webkit.org/show_bug.cgi?id=165790 CRASH(); m_length = length; } unsigned length() const { return m_length; } bool is8Bit() const { return false; } NO_RETURN_DUE_TO_CRASH void writeTo(LChar*) const { CRASH(); // FIXME make this a compile-time failure https://bugs.webkit.org/show_bug.cgi?id=165791 } void writeTo(UChar* destination) const { memcpy(destination, m_characters, m_length * sizeof(UChar)); } String toString() const { return String(m_characters, m_length); } private: const UChar* m_characters; unsigned m_length; }; template<> class StringTypeAdapter : public StringTypeAdapter { public: StringTypeAdapter(const char* characters) : StringTypeAdapter(reinterpret_cast(characters)) { } }; template<> class StringTypeAdapter : public StringTypeAdapter { public: StringTypeAdapter(const char* characters) : StringTypeAdapter(characters) { } }; template<> class StringTypeAdapter : public StringTypeAdapter { public: StringTypeAdapter(ASCIILiteral characters) : StringTypeAdapter(characters) { } }; template<> class StringTypeAdapter> { public: StringTypeAdapter(const Vector& vector) : m_vector(vector) { } size_t length() const { return m_vector.size(); } bool is8Bit() const { return true; } void writeTo(LChar* destination) const { StringView(reinterpret_cast(m_vector.data()), m_vector.size()).getCharactersWithUpconvert(destination); } void writeTo(UChar* destination) const { StringView(reinterpret_cast(m_vector.data()), m_vector.size()).getCharactersWithUpconvert(destination); } String toString() const { return String(m_vector.data(), m_vector.size()); } private: const Vector& m_vector; }; template<> class StringTypeAdapter { public: StringTypeAdapter(const String& string) : m_string(string) { } unsigned length() const { return m_string.length(); } bool is8Bit() const { return m_string.isNull() || m_string.is8Bit(); } void writeTo(LChar* destination) const { StringView(m_string).getCharactersWithUpconvert(destination); WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING(); } void writeTo(UChar* destination) const { StringView(m_string).getCharactersWithUpconvert(destination); WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING(); } String toString() const { return m_string; } private: const String& m_string; }; template<> class StringTypeAdapter : public StringTypeAdapter { public: StringTypeAdapter(const AtomicString& string) : StringTypeAdapter(string.string()) { } }; inline void sumWithOverflow(bool& overflow, unsigned& total, unsigned addend) { unsigned oldTotal = total; total = oldTotal + addend; if (total < oldTotal) overflow = true; } template inline void sumWithOverflow(bool& overflow, unsigned& total, unsigned addend, Unsigned ...addends) { unsigned oldTotal = total; total = oldTotal + addend; if (total < oldTotal) overflow = true; sumWithOverflow(overflow, total, addends...); } template inline bool are8Bit(Adapter adapter) { return adapter.is8Bit(); } template inline bool are8Bit(Adapter adapter, Adapters ...adapters) { return adapter.is8Bit() && are8Bit(adapters...); } template inline void makeStringAccumulator(ResultType* result, Adapter adapter) { adapter.writeTo(result); } template inline void makeStringAccumulator(ResultType* result, Adapter adapter, Adapters ...adapters) { adapter.writeTo(result); makeStringAccumulator(result + adapter.length(), adapters...); } template String tryMakeStringFromAdapters(StringTypeAdapter adapter, StringTypeAdapters ...adapters) { bool overflow = false; unsigned length = adapter.length(); sumWithOverflow(overflow, length, adapters.length()...); if (overflow) return String(); if (are8Bit(adapter, adapters...)) { LChar* buffer; RefPtr resultImpl = StringImpl::tryCreateUninitialized(length, buffer); if (!resultImpl) return String(); makeStringAccumulator(buffer, adapter, adapters...); return WTFMove(resultImpl); } UChar* buffer; RefPtr resultImpl = StringImpl::tryCreateUninitialized(length, buffer); if (!resultImpl) return String(); makeStringAccumulator(buffer, adapter, adapters...); return WTFMove(resultImpl); } template String tryMakeString(StringTypes ...strings) { return tryMakeStringFromAdapters(StringTypeAdapter(strings)...); } // Convenience only. template String makeString(StringType string) { return String(string); } template String makeString(StringTypes... strings) { String result = tryMakeString(strings...); if (!result) CRASH(); return result; } } // namespace WTF using WTF::makeString; using WTF::tryMakeString; #include #endif