| OLD | NEW |
| 1 /* | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 * Copyright (C) 2004, 2006, 2007, 2011 Apple Inc. All rights reserved. | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 * Copyright (C) 2006 Alexey Proskuryakov <ap@nypop.com> | 3 // found in the LICENSE file. |
| 4 * | |
| 5 * Redistribution and use in source and binary forms, with or without | |
| 6 * modification, are permitted provided that the following conditions | |
| 7 * are met: | |
| 8 * 1. Redistributions of source code must retain the above copyright | |
| 9 * notice, this list of conditions and the following disclaimer. | |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | |
| 11 * notice, this list of conditions and the following disclaimer in the | |
| 12 * documentation and/or other materials provided with the distribution. | |
| 13 * | |
| 14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | |
| 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
| 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | |
| 18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
| 19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
| 20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | |
| 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | |
| 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
| 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 25 */ | |
| 26 | 4 |
| 27 #ifndef TextCodecICU_h | 5 #include "platform/wtf/text/TextCodecICU.h" |
| 28 #define TextCodecICU_h | |
| 29 | 6 |
| 30 #include "base/gtest_prod_util.h" | 7 // The contents of this header was moved to platform/wtf as part of |
| 31 #include "wtf/text/TextCodec.h" | 8 // WTF migration project. See the following post for details: |
| 32 #include "wtf/text/TextEncoding.h" | 9 // https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gY
CAAJ |
| 33 #include <memory> | |
| 34 #include <unicode/utypes.h> | |
| 35 | |
| 36 typedef struct UConverter UConverter; | |
| 37 | |
| 38 namespace WTF { | |
| 39 | |
| 40 class TextCodecInput; | |
| 41 | |
| 42 class TextCodecICU final : public TextCodec { | |
| 43 public: | |
| 44 static void registerEncodingNames(EncodingNameRegistrar); | |
| 45 static void registerCodecs(TextCodecRegistrar); | |
| 46 | |
| 47 ~TextCodecICU() override; | |
| 48 | |
| 49 private: | |
| 50 TextCodecICU(const TextEncoding&); | |
| 51 WTF_EXPORT static std::unique_ptr<TextCodec> create(const TextEncoding&, | |
| 52 const void*); | |
| 53 | |
| 54 String decode(const char*, | |
| 55 size_t length, | |
| 56 FlushBehavior, | |
| 57 bool stopOnError, | |
| 58 bool& sawError) override; | |
| 59 CString encode(const UChar*, size_t length, UnencodableHandling) override; | |
| 60 CString encode(const LChar*, size_t length, UnencodableHandling) override; | |
| 61 | |
| 62 template <typename CharType> | |
| 63 CString encodeCommon(const CharType*, size_t length, UnencodableHandling); | |
| 64 CString encodeInternal(const TextCodecInput&, UnencodableHandling); | |
| 65 | |
| 66 void createICUConverter() const; | |
| 67 void releaseICUConverter() const; | |
| 68 #if defined(USING_SYSTEM_ICU) | |
| 69 bool needsGBKFallbacks() const { return m_needsGBKFallbacks; } | |
| 70 void setNeedsGBKFallbacks(bool needsFallbacks) { | |
| 71 m_needsGBKFallbacks = needsFallbacks; | |
| 72 } | |
| 73 #endif | |
| 74 | |
| 75 int decodeToBuffer(UChar* buffer, | |
| 76 UChar* bufferLimit, | |
| 77 const char*& source, | |
| 78 const char* sourceLimit, | |
| 79 int32_t* offsets, | |
| 80 bool flush, | |
| 81 UErrorCode&); | |
| 82 | |
| 83 TextEncoding m_encoding; | |
| 84 mutable UConverter* m_converterICU; | |
| 85 #if defined(USING_SYSTEM_ICU) | |
| 86 mutable bool m_needsGBKFallbacks; | |
| 87 #endif | |
| 88 | |
| 89 FRIEND_TEST_ALL_PREFIXES(TextCodecICUTest, IgnorableCodePoint); | |
| 90 FRIEND_TEST_ALL_PREFIXES(TextCodecICUTest, UTF32AndQuestionMarks); | |
| 91 FRIEND_TEST_ALL_PREFIXES(TextCodecICUTest, UTF32Aliases); | |
| 92 }; | |
| 93 | |
| 94 struct ICUConverterWrapper { | |
| 95 WTF_MAKE_NONCOPYABLE(ICUConverterWrapper); | |
| 96 USING_FAST_MALLOC(ICUConverterWrapper); | |
| 97 | |
| 98 public: | |
| 99 ICUConverterWrapper() : converter(0) {} | |
| 100 ~ICUConverterWrapper(); | |
| 101 | |
| 102 UConverter* converter; | |
| 103 }; | |
| 104 | |
| 105 } // namespace WTF | |
| 106 | |
| 107 #endif // TextCodecICU_h | |
| OLD | NEW |