| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006 Apple Computer, Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Alexey Proskuryakov <ap@nypop.com> | 3 * Copyright (C) 2006 Alexey Proskuryakov <ap@nypop.com> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef TextCodec_h | 27 #ifndef TextCodec_h |
| 28 #define TextCodec_h | 28 #define TextCodec_h |
| 29 | 29 |
| 30 #include "wtf/Forward.h" | 30 #include "wtf/Forward.h" |
| 31 #include "wtf/Noncopyable.h" | 31 #include "wtf/Noncopyable.h" |
| 32 #include "wtf/PassOwnPtr.h" |
| 32 #include "wtf/text/Unicode.h" | 33 #include "wtf/text/Unicode.h" |
| 33 #include "wtf/text/WTFString.h" | 34 #include "wtf/text/WTFString.h" |
| 34 #include <memory> | |
| 35 | 35 |
| 36 namespace WTF { | 36 namespace WTF { |
| 37 | 37 |
| 38 class TextEncoding; | 38 class TextEncoding; |
| 39 | 39 |
| 40 // Specifies what will happen when a character is encountered that is | 40 // Specifies what will happen when a character is encountered that is |
| 41 // not encodable in the character set. | 41 // not encodable in the character set. |
| 42 enum UnencodableHandling { | 42 enum UnencodableHandling { |
| 43 // Substitutes the replacement character "?". | 43 // Substitutes the replacement character "?". |
| 44 QuestionMarksForUnencodables, | 44 QuestionMarksForUnencodables, |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 virtual CString encode(const LChar*, size_t length, UnencodableHandling) = 0
; | 91 virtual CString encode(const LChar*, size_t length, UnencodableHandling) = 0
; |
| 92 | 92 |
| 93 // Fills a null-terminated string representation of the given | 93 // Fills a null-terminated string representation of the given |
| 94 // unencodable character into the given replacement buffer. | 94 // unencodable character into the given replacement buffer. |
| 95 // The length of the string (not including the null) will be returned. | 95 // The length of the string (not including the null) will be returned. |
| 96 static int getUnencodableReplacement(unsigned codePoint, UnencodableHandling
, UnencodableReplacementArray); | 96 static int getUnencodableReplacement(unsigned codePoint, UnencodableHandling
, UnencodableReplacementArray); |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 typedef void (*EncodingNameRegistrar)(const char* alias, const char* name); | 99 typedef void (*EncodingNameRegistrar)(const char* alias, const char* name); |
| 100 | 100 |
| 101 typedef std::unique_ptr<TextCodec> (*NewTextCodecFunction)(const TextEncoding&,
const void* additionalData); | 101 typedef PassOwnPtr<TextCodec> (*NewTextCodecFunction)(const TextEncoding&, const
void* additionalData); |
| 102 typedef void (*TextCodecRegistrar)(const char* name, NewTextCodecFunction, const
void* additionalData); | 102 typedef void (*TextCodecRegistrar)(const char* name, NewTextCodecFunction, const
void* additionalData); |
| 103 | 103 |
| 104 } // namespace WTF | 104 } // namespace WTF |
| 105 | 105 |
| 106 using WTF::TextCodec; | 106 using WTF::TextCodec; |
| 107 | 107 |
| 108 #endif // TextCodec_h | 108 #endif // TextCodec_h |
| OLD | NEW |